diff --git a/src/grammar.json b/src/grammar.json index 93b7d1a..31a2097 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1003,10 +1003,6 @@ } ] }, - "preproc_directive": { - "type": "PATTERN", - "value": "#[ \\t]*[a-zA-Z]\\w*" - }, "preproc_arg": { "type": "TOKEN", "content": { @@ -1018,6 +1014,10 @@ } } }, + "preproc_directive": { + "type": "PATTERN", + "value": "#[ \\t]*[a-zA-Z0-9]\\w*" + }, "_preproc_expression": { "type": "CHOICE", "members": [ @@ -1869,14 +1869,14 @@ }, { "type": "SYMBOL", - "name": "_function_declaration_specifiers" + "name": "_declaration_specifiers" }, { "type": "FIELD", "name": "declarator", "content": { "type": "SYMBOL", - "name": "_function_definition_declarator" + "name": "_declarator" } }, { @@ -1972,7 +1972,7 @@ "name": "type", "content": { "type": "SYMBOL", - "name": "_type_specifier" + "name": "_typedef_type_specifier" } }, { @@ -2047,67 +2047,35 @@ ] }, "_declaration_specifiers": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "_type_specifier" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" - } - } - ] - }, - "_function_declaration_specifiers": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_specifier" - }, - { - "type": "SYMBOL", - "name": "pointer_type" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_declaration_modifiers" + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "_type_specifier" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_declaration_modifiers" + } } - } - ] + ] + } }, "linkage_specification": { "type": "SEQ", @@ -2414,31 +2382,6 @@ } ] }, - "_function_definition_declarator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attributed_declarator" - }, - { - "type": "SYMBOL", - "name": "function_declarator" - }, - { - "type": "SYMBOL", - "name": "array_declarator" - }, - { - "type": "SYMBOL", - "name": "parenthesized_declarator" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, "_field_declarator": { "type": "CHOICE", "members": [ @@ -3376,6 +3319,44 @@ } ] }, + "_typedef_type_specifier": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "struct_specifier" + }, + { + "type": "SYMBOL", + "name": "union_specifier" + }, + { + "type": "SYMBOL", + "name": "enum_specifier" + }, + { + "type": "SYMBOL", + "name": "macro_type_specifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_typedef_sized_type_specifier" + }, + "named": true, + "value": "sized_type_specifier" + }, + { + "type": "SYMBOL", + "name": "primitive_type" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + } + ] + }, "_type_specifier": { "type": "CHOICE", "members": [ @@ -3409,6 +3390,30 @@ } ] }, + "_typedef_sized_type_specifier": { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "signed" + }, + { + "type": "STRING", + "value": "unsigned" + }, + { + "type": "STRING", + "value": "long" + }, + { + "type": "STRING", + "value": "short" + } + ] + } + }, "sized_type_specifier": { "type": "SEQ", "members": [ @@ -3579,26 +3584,6 @@ ] } }, - "pointer_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_specifier" - }, - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": "*" - } - } - ] - } - }, "enum_specifier": { "type": "SEQ", "members": [ @@ -3672,6 +3657,18 @@ } } ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -3734,130 +3731,162 @@ ] }, "struct_specifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ms_declspec_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "field_declaration_list" - }, - { - "type": "BLANK" - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "struct" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration_list" + }, + { + "type": "BLANK" + } + ] + } } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { + } + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "field_declaration_list" + "name": "attribute_specifier" + }, + { + "type": "BLANK" } - } - ] - } - ] + ] + } + ] + } }, "union_specifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "union" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "ms_declspec_modifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_identifier" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "field_declaration_list" - }, - { - "type": "BLANK" - } - ] + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "union" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "ms_declspec_modifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_type_identifier" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "field_declaration_list" + }, + { + "type": "BLANK" + } + ] + } } + ] + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "field_declaration_list" } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { + } + ] + }, + { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", - "name": "field_declaration_list" + "name": "attribute_specifier" + }, + { + "type": "BLANK" } - } - ] - } - ] + ] + } + ] + } }, "field_declaration_list": { "type": "SEQ", @@ -4000,6 +4029,18 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": ";" @@ -7716,6 +7757,10 @@ "_type_specifier", "macro_type_specifier" ], + [ + "_typedef_type_specifier", + "macro_type_specifier" + ], [ "sized_type_specifier" ], @@ -7728,19 +7773,6 @@ ], [ "enum_specifier" - ], - [ - "_declaration_specifiers", - "_function_declaration_specifiers" - ], - [ - "_declaration_specifiers", - "_function_declaration_specifiers", - "pointer_type" - ], - [ - "_function_declaration_specifiers", - "pointer_type" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index 86283c1..33392de 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1345,6 +1345,16 @@ } ] } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "attribute_specifier", + "named": true + } + ] } }, { @@ -1678,23 +1688,7 @@ "required": true, "types": [ { - "type": "array_declarator", - "named": true - }, - { - "type": "attributed_declarator", - "named": true - }, - { - "type": "function_declarator", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "parenthesized_declarator", + "type": "_declarator", "named": true } ] @@ -1706,10 +1700,6 @@ { "type": "_type_specifier", "named": true - }, - { - "type": "pointer_type", - "named": true } ] } @@ -2491,21 +2481,6 @@ } } }, - { - "type": "pointer_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_type_specifier", - "named": true - } - ] - } - }, { "type": "preproc_call", "named": true, @@ -3238,9 +3213,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_specifier", + "named": true + }, { "type": "ms_declspec_modifier", "named": true @@ -3445,7 +3424,31 @@ "required": true, "types": [ { - "type": "_type_specifier", + "type": "enum_specifier", + "named": true + }, + { + "type": "macro_type_specifier", + "named": true + }, + { + "type": "primitive_type", + "named": true + }, + { + "type": "sized_type_specifier", + "named": true + }, + { + "type": "struct_specifier", + "named": true + }, + { + "type": "type_identifier", + "named": true + }, + { + "type": "union_specifier", "named": true } ] @@ -3571,9 +3574,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_specifier", + "named": true + }, { "type": "ms_declspec_modifier", "named": true diff --git a/src/parser.c b/src/parser.c index 5feb42a..5adbc72 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1938 +#define STATE_COUNT 1999 #define LARGE_STATE_COUNT 530 -#define SYMBOL_COUNT 304 +#define SYMBOL_COUNT 302 #define ALIAS_COUNT 3 #define TOKEN_COUNT 140 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 36 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 114 +#define PRODUCTION_ID_COUNT 115 enum { sym_identifier = 1, @@ -33,8 +33,8 @@ enum { aux_sym_preproc_elif_token1 = 14, aux_sym_preproc_elifdef_token1 = 15, aux_sym_preproc_elifdef_token2 = 16, - sym_preproc_directive = 17, - sym_preproc_arg = 18, + sym_preproc_arg = 17, + sym_preproc_directive = 18, anon_sym_LPAREN2 = 19, anon_sym_defined = 20, anon_sym_BANG = 21, @@ -183,146 +183,144 @@ enum { sym_type_definition = 164, sym__declaration_modifiers = 165, sym__declaration_specifiers = 166, - sym__function_declaration_specifiers = 167, - sym_linkage_specification = 168, - sym_attribute_specifier = 169, - sym_attribute = 170, - sym_attribute_declaration = 171, - sym_ms_declspec_modifier = 172, - sym_ms_based_modifier = 173, - sym_ms_call_modifier = 174, - sym_ms_unaligned_ptr_modifier = 175, - sym_ms_pointer_modifier = 176, - sym_declaration_list = 177, - sym__declarator = 178, - sym__function_definition_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_linkage_specification = 167, + sym_attribute_specifier = 168, + sym_attribute = 169, + sym_attribute_declaration = 170, + sym_ms_declspec_modifier = 171, + sym_ms_based_modifier = 172, + sym_ms_call_modifier = 173, + sym_ms_unaligned_ptr_modifier = 174, + sym_ms_pointer_modifier = 175, + sym_declaration_list = 176, + sym__declarator = 177, + sym__field_declarator = 178, + sym__type_declarator = 179, + sym__abstract_declarator = 180, + sym_parenthesized_declarator = 181, + sym_parenthesized_field_declarator = 182, + sym_parenthesized_type_declarator = 183, + sym_abstract_parenthesized_declarator = 184, + sym_attributed_declarator = 185, + sym_attributed_field_declarator = 186, + sym_attributed_type_declarator = 187, + sym_pointer_declarator = 188, + sym_pointer_field_declarator = 189, + sym_pointer_type_declarator = 190, + sym_abstract_pointer_declarator = 191, + sym_function_declarator = 192, + sym_function_field_declarator = 193, + sym_function_type_declarator = 194, + sym_abstract_function_declarator = 195, + sym_array_declarator = 196, + sym_array_field_declarator = 197, + sym_array_type_declarator = 198, + sym_abstract_array_declarator = 199, + sym_init_declarator = 200, + sym_compound_statement = 201, + sym_storage_class_specifier = 202, + sym_type_qualifier = 203, + sym__typedef_type_specifier = 204, + sym__type_specifier = 205, + aux_sym__typedef_sized_type_specifier = 206, sym_sized_type_specifier = 207, - sym_pointer_type = 208, - sym_enum_specifier = 209, - sym_enumerator_list = 210, - sym_struct_specifier = 211, - sym_union_specifier = 212, - sym_field_declaration_list = 213, - sym__field_declaration_list_item = 214, - sym_field_declaration = 215, - sym_bitfield_clause = 216, - sym_enumerator = 217, - sym_variadic_parameter = 218, - sym_parameter_list = 219, - sym_parameter_declaration = 220, - sym_attributed_statement = 221, - sym_labeled_statement = 222, - sym__top_level_expression_statement = 223, - sym_expression_statement = 224, - sym_if_statement = 225, - sym_else_clause = 226, - sym_switch_statement = 227, - sym_case_statement = 228, - sym_while_statement = 229, - sym_do_statement = 230, - sym_for_statement = 231, - sym_return_statement = 232, - sym_break_statement = 233, - sym_continue_statement = 234, - sym_goto_statement = 235, - sym__expression = 236, - sym__expression_not_binary = 237, - sym_comma_expression = 238, - sym_conditional_expression = 239, - sym_assignment_expression = 240, - sym_pointer_expression = 241, - sym_unary_expression = 242, - sym_binary_expression = 243, - sym_update_expression = 244, - sym_cast_expression = 245, - sym_type_descriptor = 246, - sym_sizeof_expression = 247, - sym_offsetof_expression = 248, - sym_generic_expression = 249, - sym_subscript_expression = 250, - sym_call_expression = 251, - sym_gnu_asm_expression = 252, - sym_gnu_asm_qualifier = 253, - sym_gnu_asm_output_operand_list = 254, - sym_gnu_asm_output_operand = 255, - sym_gnu_asm_input_operand_list = 256, - sym_gnu_asm_input_operand = 257, - sym_gnu_asm_clobber_list = 258, - sym_gnu_asm_goto_list = 259, - sym_argument_list = 260, - sym_field_expression = 261, - sym_compound_literal_expression = 262, - sym_parenthesized_expression = 263, - sym_initializer_list = 264, - sym_initializer_pair = 265, - sym_subscript_designator = 266, - sym_field_designator = 267, - sym_char_literal = 268, - sym_concatenated_string = 269, - sym_string_literal = 270, - sym_null = 271, - sym__empty_declaration = 272, - sym_macro_type_specifier = 273, - aux_sym_translation_unit_repeat1 = 274, - aux_sym_preproc_params_repeat1 = 275, - aux_sym_preproc_if_repeat1 = 276, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 277, - aux_sym_preproc_argument_list_repeat1 = 278, - aux_sym_declaration_repeat1 = 279, - aux_sym_type_definition_repeat1 = 280, - aux_sym_type_definition_repeat2 = 281, - aux_sym__declaration_specifiers_repeat1 = 282, - aux_sym_attribute_declaration_repeat1 = 283, - aux_sym_attributed_declarator_repeat1 = 284, - aux_sym_pointer_declarator_repeat1 = 285, - aux_sym_function_declarator_repeat1 = 286, - aux_sym_sized_type_specifier_repeat1 = 287, - aux_sym_pointer_type_repeat1 = 288, - aux_sym_enumerator_list_repeat1 = 289, - aux_sym_field_declaration_repeat1 = 290, - aux_sym_parameter_list_repeat1 = 291, - aux_sym_case_statement_repeat1 = 292, - aux_sym_generic_expression_repeat1 = 293, - aux_sym_gnu_asm_expression_repeat1 = 294, - aux_sym_gnu_asm_output_operand_list_repeat1 = 295, - aux_sym_gnu_asm_input_operand_list_repeat1 = 296, - aux_sym_gnu_asm_clobber_list_repeat1 = 297, - aux_sym_gnu_asm_goto_list_repeat1 = 298, - aux_sym_argument_list_repeat1 = 299, - aux_sym_initializer_list_repeat1 = 300, - aux_sym_initializer_pair_repeat1 = 301, - aux_sym_concatenated_string_repeat1 = 302, - aux_sym_string_literal_repeat1 = 303, - alias_sym_field_identifier = 304, - alias_sym_statement_identifier = 305, - alias_sym_type_identifier = 306, + 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, }; static const char * const ts_symbol_names[] = { @@ -343,8 +341,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_preproc_elif_token1] = "#elif", [aux_sym_preproc_elifdef_token1] = "#elifdef", [aux_sym_preproc_elifdef_token2] = "#elifndef", - [sym_preproc_directive] = "preproc_directive", [sym_preproc_arg] = "preproc_arg", + [sym_preproc_directive] = "preproc_directive", [anon_sym_LPAREN2] = "(", [anon_sym_defined] = "defined", [anon_sym_BANG] = "!", @@ -493,7 +491,6 @@ static const char * const ts_symbol_names[] = { [sym_type_definition] = "type_definition", [sym__declaration_modifiers] = "_declaration_modifiers", [sym__declaration_specifiers] = "_declaration_specifiers", - [sym__function_declaration_specifiers] = "_function_declaration_specifiers", [sym_linkage_specification] = "linkage_specification", [sym_attribute_specifier] = "attribute_specifier", [sym_attribute] = "attribute", @@ -505,7 +502,6 @@ static const char * const ts_symbol_names[] = { [sym_ms_pointer_modifier] = "ms_pointer_modifier", [sym_declaration_list] = "declaration_list", [sym__declarator] = "_declarator", - [sym__function_definition_declarator] = "_function_definition_declarator", [sym__field_declarator] = "_field_declarator", [sym__type_declarator] = "_type_declarator", [sym__abstract_declarator] = "_abstract_declarator", @@ -532,9 +528,10 @@ static const char * const ts_symbol_names[] = { [sym_compound_statement] = "compound_statement", [sym_storage_class_specifier] = "storage_class_specifier", [sym_type_qualifier] = "type_qualifier", + [sym__typedef_type_specifier] = "_typedef_type_specifier", [sym__type_specifier] = "_type_specifier", + [aux_sym__typedef_sized_type_specifier] = "_typedef_sized_type_specifier", [sym_sized_type_specifier] = "sized_type_specifier", - [sym_pointer_type] = "pointer_type", [sym_enum_specifier] = "enum_specifier", [sym_enumerator_list] = "enumerator_list", [sym_struct_specifier] = "struct_specifier", @@ -614,7 +611,6 @@ static const char * const ts_symbol_names[] = { [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_pointer_type_repeat1] = "pointer_type_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym_field_declaration_repeat1] = "field_declaration_repeat1", [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", @@ -653,8 +649,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_preproc_elif_token1] = aux_sym_preproc_elif_token1, [aux_sym_preproc_elifdef_token1] = aux_sym_preproc_elifdef_token1, [aux_sym_preproc_elifdef_token2] = aux_sym_preproc_elifdef_token2, - [sym_preproc_directive] = sym_preproc_directive, [sym_preproc_arg] = sym_preproc_arg, + [sym_preproc_directive] = sym_preproc_directive, [anon_sym_LPAREN2] = anon_sym_LPAREN, [anon_sym_defined] = anon_sym_defined, [anon_sym_BANG] = anon_sym_BANG, @@ -803,7 +799,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_type_definition] = sym_type_definition, [sym__declaration_modifiers] = sym__declaration_modifiers, [sym__declaration_specifiers] = sym__declaration_specifiers, - [sym__function_declaration_specifiers] = sym__function_declaration_specifiers, [sym_linkage_specification] = sym_linkage_specification, [sym_attribute_specifier] = sym_attribute_specifier, [sym_attribute] = sym_attribute, @@ -815,7 +810,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_ms_pointer_modifier] = sym_ms_pointer_modifier, [sym_declaration_list] = sym_declaration_list, [sym__declarator] = sym__declarator, - [sym__function_definition_declarator] = sym__function_definition_declarator, [sym__field_declarator] = sym__field_declarator, [sym__type_declarator] = sym__type_declarator, [sym__abstract_declarator] = sym__abstract_declarator, @@ -842,9 +836,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_compound_statement] = sym_compound_statement, [sym_storage_class_specifier] = sym_storage_class_specifier, [sym_type_qualifier] = sym_type_qualifier, + [sym__typedef_type_specifier] = sym__typedef_type_specifier, [sym__type_specifier] = sym__type_specifier, + [aux_sym__typedef_sized_type_specifier] = aux_sym__typedef_sized_type_specifier, [sym_sized_type_specifier] = sym_sized_type_specifier, - [sym_pointer_type] = sym_pointer_type, [sym_enum_specifier] = sym_enum_specifier, [sym_enumerator_list] = sym_enumerator_list, [sym_struct_specifier] = sym_struct_specifier, @@ -924,7 +919,6 @@ static const TSSymbol ts_symbol_map[] = { [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_pointer_type_repeat1] = aux_sym_pointer_type_repeat1, [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, [aux_sym_field_declaration_repeat1] = aux_sym_field_declaration_repeat1, [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, @@ -1014,11 +1008,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_preproc_directive] = { + [sym_preproc_arg] = { .visible = true, .named = true, }, - [sym_preproc_arg] = { + [sym_preproc_directive] = { .visible = true, .named = true, }, @@ -1614,10 +1608,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym__function_declaration_specifiers] = { - .visible = false, - .named = true, - }, [sym_linkage_specification] = { .visible = true, .named = true, @@ -1663,10 +1653,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, - [sym__function_definition_declarator] = { - .visible = false, - .named = true, - }, [sym__field_declarator] = { .visible = false, .named = true, @@ -1774,16 +1760,20 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__typedef_type_specifier] = { + .visible = false, + .named = true, + }, [sym__type_specifier] = { .visible = false, .named = true, .supertype = true, }, - [sym_sized_type_specifier] = { - .visible = true, - .named = true, + [aux_sym__typedef_sized_type_specifier] = { + .visible = false, + .named = false, }, - [sym_pointer_type] = { + [sym_sized_type_specifier] = { .visible = true, .named = true, }, @@ -2104,10 +2094,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_pointer_type_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_enumerator_list_repeat1] = { .visible = false, .named = false, @@ -2265,113 +2251,113 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [2] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 2}, - [5] = {.index = 4, .length = 1}, - [6] = {.index = 5, .length = 1}, - [7] = {.index = 6, .length = 1}, - [8] = {.index = 7, .length = 1}, - [9] = {.index = 8, .length = 2}, - [10] = {.index = 10, .length = 2}, - [11] = {.index = 12, .length = 1}, + [6] = {.index = 4, .length = 1}, + [7] = {.index = 5, .length = 1}, + [8] = {.index = 6, .length = 1}, + [9] = {.index = 7, .length = 1}, + [10] = {.index = 8, .length = 2}, + [11] = {.index = 10, .length = 2}, [12] = {.index = 12, .length = 1}, - [13] = {.index = 13, .length = 1}, - [14] = {.index = 5, .length = 1}, - [15] = {.index = 14, .length = 2}, - [16] = {.index = 16, .length = 2}, - [17] = {.index = 18, .length = 1}, - [18] = {.index = 19, .length = 2}, - [19] = {.index = 21, .length = 2}, - [20] = {.index = 23, .length = 1}, - [21] = {.index = 24, .length = 1}, - [22] = {.index = 25, .length = 2}, - [23] = {.index = 27, .length = 2}, - [24] = {.index = 29, .length = 1}, - [25] = {.index = 30, .length = 3}, - [26] = {.index = 33, .length = 1}, - [27] = {.index = 34, .length = 1}, - [28] = {.index = 35, .length = 2}, - [29] = {.index = 37, .length = 2}, - [30] = {.index = 39, .length = 3}, - [31] = {.index = 42, .length = 3}, - [32] = {.index = 45, .length = 2}, - [33] = {.index = 47, .length = 2}, - [34] = {.index = 49, .length = 1}, - [35] = {.index = 50, .length = 2}, - [36] = {.index = 52, .length = 1}, - [37] = {.index = 53, .length = 2}, - [38] = {.index = 55, .length = 2}, - [39] = {.index = 57, .length = 2}, - [40] = {.index = 59, .length = 2}, - [41] = {.index = 61, .length = 2}, - [42] = {.index = 63, .length = 2}, - [44] = {.index = 65, .length = 2}, - [45] = {.index = 67, .length = 3}, - [46] = {.index = 70, .length = 1}, - [47] = {.index = 71, .length = 1}, - [48] = {.index = 72, .length = 2}, - [49] = {.index = 74, .length = 1}, - [50] = {.index = 75, .length = 1}, - [51] = {.index = 76, .length = 2}, - [52] = {.index = 78, .length = 3}, - [53] = {.index = 81, .length = 2}, - [54] = {.index = 83, .length = 3}, - [55] = {.index = 86, .length = 2}, - [56] = {.index = 88, .length = 2}, - [57] = {.index = 90, .length = 3}, - [58] = {.index = 93, .length = 2}, - [59] = {.index = 95, .length = 2}, - [60] = {.index = 97, .length = 1}, - [61] = {.index = 98, .length = 2}, - [62] = {.index = 100, .length = 3}, - [63] = {.index = 103, .length = 2}, - [64] = {.index = 105, .length = 2}, - [65] = {.index = 107, .length = 3}, - [66] = {.index = 110, .length = 2}, - [67] = {.index = 112, .length = 1}, - [68] = {.index = 113, .length = 2}, - [69] = {.index = 115, .length = 1}, - [70] = {.index = 116, .length = 1}, - [71] = {.index = 117, .length = 2}, - [72] = {.index = 119, .length = 3}, - [73] = {.index = 122, .length = 2}, - [74] = {.index = 124, .length = 1}, - [76] = {.index = 125, .length = 3}, - [77] = {.index = 128, .length = 3}, - [78] = {.index = 131, .length = 2}, - [79] = {.index = 133, .length = 1}, - [80] = {.index = 134, .length = 2}, - [81] = {.index = 136, .length = 2}, - [82] = {.index = 138, .length = 2}, - [83] = {.index = 140, .length = 3}, - [84] = {.index = 143, .length = 2}, - [85] = {.index = 145, .length = 1}, - [86] = {.index = 146, .length = 2}, - [87] = {.index = 148, .length = 2}, - [88] = {.index = 150, .length = 3}, - [89] = {.index = 153, .length = 3}, - [90] = {.index = 156, .length = 2}, - [91] = {.index = 158, .length = 2}, - [92] = {.index = 160, .length = 3}, - [93] = {.index = 163, .length = 3}, - [94] = {.index = 166, .length = 2}, - [95] = {.index = 168, .length = 2}, - [96] = {.index = 170, .length = 1}, - [97] = {.index = 171, .length = 4}, - [98] = {.index = 175, .length = 3}, - [99] = {.index = 178, .length = 3}, - [100] = {.index = 181, .length = 4}, - [101] = {.index = 185, .length = 3}, - [102] = {.index = 188, .length = 3}, - [103] = {.index = 191, .length = 2}, - [104] = {.index = 193, .length = 2}, - [105] = {.index = 29, .length = 1}, - [106] = {.index = 195, .length = 5}, - [107] = {.index = 200, .length = 4}, - [108] = {.index = 204, .length = 4}, - [109] = {.index = 208, .length = 2}, - [110] = {.index = 210, .length = 2}, - [111] = {.index = 212, .length = 5}, - [112] = {.index = 217, .length = 2}, - [113] = {.index = 219, .length = 3}, + [13] = {.index = 12, .length = 1}, + [14] = {.index = 13, .length = 1}, + [15] = {.index = 5, .length = 1}, + [16] = {.index = 14, .length = 2}, + [17] = {.index = 16, .length = 2}, + [18] = {.index = 18, .length = 1}, + [19] = {.index = 19, .length = 2}, + [20] = {.index = 21, .length = 2}, + [21] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 1}, + [23] = {.index = 25, .length = 2}, + [24] = {.index = 27, .length = 2}, + [25] = {.index = 29, .length = 1}, + [26] = {.index = 30, .length = 3}, + [27] = {.index = 33, .length = 1}, + [28] = {.index = 34, .length = 1}, + [29] = {.index = 35, .length = 2}, + [30] = {.index = 37, .length = 3}, + [31] = {.index = 40, .length = 2}, + [32] = {.index = 42, .length = 3}, + [33] = {.index = 45, .length = 2}, + [34] = {.index = 47, .length = 2}, + [35] = {.index = 49, .length = 1}, + [36] = {.index = 50, .length = 2}, + [37] = {.index = 52, .length = 1}, + [38] = {.index = 53, .length = 2}, + [39] = {.index = 55, .length = 2}, + [40] = {.index = 57, .length = 2}, + [41] = {.index = 59, .length = 2}, + [42] = {.index = 61, .length = 2}, + [43] = {.index = 63, .length = 2}, + [45] = {.index = 65, .length = 2}, + [46] = {.index = 67, .length = 3}, + [47] = {.index = 70, .length = 1}, + [48] = {.index = 71, .length = 1}, + [49] = {.index = 72, .length = 2}, + [50] = {.index = 74, .length = 1}, + [51] = {.index = 75, .length = 1}, + [52] = {.index = 76, .length = 2}, + [53] = {.index = 78, .length = 3}, + [54] = {.index = 81, .length = 2}, + [55] = {.index = 83, .length = 3}, + [56] = {.index = 86, .length = 2}, + [57] = {.index = 88, .length = 2}, + [58] = {.index = 90, .length = 3}, + [59] = {.index = 93, .length = 2}, + [60] = {.index = 95, .length = 2}, + [61] = {.index = 97, .length = 1}, + [62] = {.index = 98, .length = 2}, + [63] = {.index = 100, .length = 3}, + [64] = {.index = 103, .length = 2}, + [65] = {.index = 105, .length = 2}, + [66] = {.index = 107, .length = 3}, + [67] = {.index = 110, .length = 2}, + [68] = {.index = 112, .length = 1}, + [69] = {.index = 113, .length = 2}, + [70] = {.index = 115, .length = 1}, + [71] = {.index = 116, .length = 1}, + [72] = {.index = 117, .length = 2}, + [73] = {.index = 119, .length = 3}, + [74] = {.index = 122, .length = 2}, + [75] = {.index = 124, .length = 1}, + [77] = {.index = 125, .length = 3}, + [78] = {.index = 128, .length = 3}, + [79] = {.index = 131, .length = 2}, + [80] = {.index = 133, .length = 1}, + [81] = {.index = 134, .length = 2}, + [82] = {.index = 136, .length = 2}, + [83] = {.index = 138, .length = 2}, + [84] = {.index = 140, .length = 3}, + [85] = {.index = 143, .length = 2}, + [86] = {.index = 145, .length = 1}, + [87] = {.index = 146, .length = 2}, + [88] = {.index = 148, .length = 2}, + [89] = {.index = 150, .length = 3}, + [90] = {.index = 153, .length = 3}, + [91] = {.index = 156, .length = 2}, + [92] = {.index = 158, .length = 2}, + [93] = {.index = 160, .length = 3}, + [94] = {.index = 163, .length = 3}, + [95] = {.index = 166, .length = 2}, + [96] = {.index = 168, .length = 2}, + [97] = {.index = 170, .length = 1}, + [98] = {.index = 171, .length = 4}, + [99] = {.index = 175, .length = 3}, + [100] = {.index = 178, .length = 3}, + [101] = {.index = 181, .length = 4}, + [102] = {.index = 185, .length = 3}, + [103] = {.index = 188, .length = 3}, + [104] = {.index = 191, .length = 2}, + [105] = {.index = 193, .length = 2}, + [106] = {.index = 29, .length = 1}, + [107] = {.index = 195, .length = 5}, + [108] = {.index = 200, .length = 4}, + [109] = {.index = 204, .length = 4}, + [110] = {.index = 208, .length = 2}, + [111] = {.index = 210, .length = 2}, + [112] = {.index = 212, .length = 5}, + [113] = {.index = 217, .length = 2}, + [114] = {.index = 219, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2438,12 +2424,12 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 1}, {field_type, 0, .inherited = true}, [37] = - {field_declarator, 0}, - {field_parameters, 1}, - [39] = {field_body, 2}, {field_declarator, 1}, {field_type, 0, .inherited = true}, + [40] = + {field_declarator, 0}, + {field_parameters, 1}, [42] = {field_argument, 0}, {field_field, 2}, @@ -2711,48 +2697,54 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [1] = { [0] = alias_sym_type_identifier, }, - [6] = { - [1] = alias_sym_type_identifier, + [5] = { + [0] = sym_sized_type_specifier, }, - [12] = { + [7] = { [1] = alias_sym_type_identifier, }, - [19] = { + [13] = { [1] = alias_sym_type_identifier, }, [20] = { + [1] = alias_sym_type_identifier, + }, + [21] = { [2] = alias_sym_type_identifier, }, - [24] = { + [25] = { [1] = alias_sym_statement_identifier, }, - [26] = { + [27] = { [0] = alias_sym_statement_identifier, }, - [31] = { + [32] = { [2] = alias_sym_field_identifier, }, - [42] = { + [43] = { [1] = alias_sym_type_identifier, }, - [43] = { + [44] = { [0] = alias_sym_field_identifier, }, - [44] = { + [45] = { [2] = alias_sym_type_identifier, }, - [65] = { + [66] = { [1] = alias_sym_type_identifier, }, - [75] = { + [76] = { [1] = alias_sym_field_identifier, }, - [81] = { + [82] = { [4] = alias_sym_field_identifier, }, }; static const uint16_t ts_non_terminal_alias_map[] = { + aux_sym__typedef_sized_type_specifier, 2, + aux_sym__typedef_sized_type_specifier, + sym_sized_type_specifier, 0, }; @@ -2760,55 +2752,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 3, - [5] = 3, - [6] = 2, - [7] = 3, + [3] = 2, + [4] = 4, + [5] = 2, + [6] = 4, + [7] = 2, [8] = 2, - [9] = 2, - [10] = 3, - [11] = 2, + [9] = 4, + [10] = 4, + [11] = 4, [12] = 12, - [13] = 13, - [14] = 12, - [15] = 13, - [16] = 16, - [17] = 13, - [18] = 12, - [19] = 13, - [20] = 20, - [21] = 21, - [22] = 13, - [23] = 23, - [24] = 24, - [25] = 12, - [26] = 12, - [27] = 24, + [13] = 12, + [14] = 14, + [15] = 15, + [16] = 14, + [17] = 17, + [18] = 18, + [19] = 19, + [20] = 12, + [21] = 14, + [22] = 14, + [23] = 12, + [24] = 12, + [25] = 25, + [26] = 14, + [27] = 25, [28] = 28, - [29] = 29, - [30] = 28, - [31] = 31, - [32] = 31, - [33] = 29, - [34] = 34, - [35] = 24, - [36] = 36, - [37] = 34, - [38] = 29, - [39] = 39, - [40] = 31, - [41] = 24, - [42] = 31, - [43] = 28, - [44] = 31, - [45] = 34, + [29] = 28, + [30] = 30, + [31] = 25, + [32] = 32, + [33] = 33, + [34] = 28, + [35] = 32, + [36] = 32, + [37] = 33, + [38] = 30, + [39] = 30, + [40] = 32, + [41] = 41, + [42] = 30, + [43] = 32, + [44] = 28, + [45] = 30, [46] = 28, - [47] = 29, - [48] = 29, - [49] = 28, - [50] = 34, - [51] = 34, + [47] = 33, + [48] = 48, + [49] = 33, + [50] = 25, + [51] = 33, [52] = 52, [53] = 53, [54] = 54, @@ -2818,29 +2810,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [58] = 58, [59] = 58, [60] = 57, - [61] = 56, + [61] = 55, [62] = 54, - [63] = 55, - [64] = 55, - [65] = 56, + [63] = 56, + [64] = 58, + [65] = 54, [66] = 54, - [67] = 58, - [68] = 57, - [69] = 57, - [70] = 58, + [67] = 54, + [68] = 55, + [69] = 58, + [70] = 56, [71] = 56, - [72] = 56, - [73] = 58, + [72] = 57, + [73] = 55, [74] = 55, - [75] = 54, - [76] = 54, + [75] = 56, + [76] = 58, [77] = 57, - [78] = 55, - [79] = 54, - [80] = 56, + [78] = 57, + [79] = 58, + [80] = 57, [81] = 55, - [82] = 57, - [83] = 58, + [82] = 54, + [83] = 56, [84] = 84, [85] = 84, [86] = 84, @@ -2894,13 +2886,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [134] = 134, [135] = 135, [136] = 136, - [137] = 90, + [137] = 137, [138] = 138, [139] = 139, [140] = 140, [141] = 141, [142] = 142, - [143] = 143, + [143] = 91, [144] = 144, [145] = 145, [146] = 146, @@ -2911,381 +2903,381 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [151] = 151, [152] = 152, [153] = 153, - [154] = 93, - [155] = 119, - [156] = 125, - [157] = 123, - [158] = 111, - [159] = 95, - [160] = 97, - [161] = 92, - [162] = 112, - [163] = 112, - [164] = 124, - [165] = 120, - [166] = 126, - [167] = 122, - [168] = 127, - [169] = 110, - [170] = 128, - [171] = 108, - [172] = 106, - [173] = 105, - [174] = 102, - [175] = 99, - [176] = 129, - [177] = 130, - [178] = 131, - [179] = 121, - [180] = 101, - [181] = 113, - [182] = 104, - [183] = 109, - [184] = 95, - [185] = 94, - [186] = 118, - [187] = 117, - [188] = 116, - [189] = 115, - [190] = 114, - [191] = 96, - [192] = 98, - [193] = 100, - [194] = 107, - [195] = 103, - [196] = 143, - [197] = 140, - [198] = 147, - [199] = 148, - [200] = 90, - [201] = 149, - [202] = 151, - [203] = 142, - [204] = 144, - [205] = 145, - [206] = 146, - [207] = 132, - [208] = 90, - [209] = 150, + [154] = 130, + [155] = 92, + [156] = 103, + [157] = 121, + [158] = 131, + [159] = 122, + [160] = 122, + [161] = 129, + [162] = 99, + [163] = 128, + [164] = 93, + [165] = 100, + [166] = 105, + [167] = 101, + [168] = 124, + [169] = 102, + [170] = 104, + [171] = 123, + [172] = 94, + [173] = 95, + [174] = 125, + [175] = 96, + [176] = 97, + [177] = 105, + [178] = 126, + [179] = 98, + [180] = 120, + [181] = 106, + [182] = 119, + [183] = 107, + [184] = 108, + [185] = 109, + [186] = 110, + [187] = 118, + [188] = 111, + [189] = 112, + [190] = 113, + [191] = 117, + [192] = 114, + [193] = 115, + [194] = 116, + [195] = 127, + [196] = 144, + [197] = 91, + [198] = 136, + [199] = 141, + [200] = 147, + [201] = 140, + [202] = 135, + [203] = 138, + [204] = 91, + [205] = 139, + [206] = 91, + [207] = 90, + [208] = 142, + [209] = 145, [210] = 133, - [211] = 134, - [212] = 136, - [213] = 139, - [214] = 141, - [215] = 135, - [216] = 138, - [217] = 90, - [218] = 153, - [219] = 91, - [220] = 152, - [221] = 125, + [211] = 149, + [212] = 150, + [213] = 151, + [214] = 146, + [215] = 152, + [216] = 153, + [217] = 148, + [218] = 132, + [219] = 134, + [220] = 137, + [221] = 221, [222] = 222, - [223] = 223, - [224] = 222, - [225] = 225, - [226] = 226, - [227] = 227, - [228] = 228, - [229] = 229, - [230] = 230, + [223] = 112, + [224] = 111, + [225] = 92, + [226] = 110, + [227] = 109, + [228] = 108, + [229] = 107, + [230] = 106, [231] = 231, - [232] = 232, - [233] = 113, - [234] = 234, - [235] = 228, - [236] = 231, - [237] = 232, - [238] = 238, - [239] = 92, - [240] = 240, - [241] = 93, - [242] = 124, + [232] = 97, + [233] = 96, + [234] = 108, + [235] = 107, + [236] = 95, + [237] = 94, + [238] = 123, + [239] = 106, + [240] = 109, + [241] = 241, + [242] = 242, [243] = 126, - [244] = 127, - [245] = 230, - [246] = 227, - [247] = 128, - [248] = 222, - [249] = 129, - [250] = 130, - [251] = 223, - [252] = 131, - [253] = 121, - [254] = 119, - [255] = 234, - [256] = 111, - [257] = 114, - [258] = 258, - [259] = 110, - [260] = 225, - [261] = 229, - [262] = 231, - [263] = 118, - [264] = 232, - [265] = 108, - [266] = 106, - [267] = 234, - [268] = 117, - [269] = 116, - [270] = 115, - [271] = 114, - [272] = 115, - [273] = 226, - [274] = 228, - [275] = 107, - [276] = 103, - [277] = 100, - [278] = 98, - [279] = 105, - [280] = 96, - [281] = 116, - [282] = 226, - [283] = 283, - [284] = 117, - [285] = 94, - [286] = 109, - [287] = 120, - [288] = 283, - [289] = 289, - [290] = 102, - [291] = 291, - [292] = 104, - [293] = 238, - [294] = 101, - [295] = 291, - [296] = 99, - [297] = 118, - [298] = 119, - [299] = 121, - [300] = 131, + [244] = 110, + [245] = 130, + [246] = 246, + [247] = 131, + [248] = 248, + [249] = 249, + [250] = 92, + [251] = 111, + [252] = 112, + [253] = 99, + [254] = 100, + [255] = 101, + [256] = 102, + [257] = 104, + [258] = 102, + [259] = 104, + [260] = 249, + [261] = 105, + [262] = 126, + [263] = 221, + [264] = 101, + [265] = 100, + [266] = 114, + [267] = 113, + [268] = 115, + [269] = 114, + [270] = 127, + [271] = 271, + [272] = 125, + [273] = 124, + [274] = 93, + [275] = 116, + [276] = 122, + [277] = 121, + [278] = 99, + [279] = 117, + [280] = 118, + [281] = 115, + [282] = 119, + [283] = 120, + [284] = 284, + [285] = 285, + [286] = 286, + [287] = 116, + [288] = 117, + [289] = 98, + [290] = 290, + [291] = 98, + [292] = 97, + [293] = 103, + [294] = 96, + [295] = 118, + [296] = 103, + [297] = 129, + [298] = 128, + [299] = 119, + [300] = 300, [301] = 301, - [302] = 130, - [303] = 129, - [304] = 128, - [305] = 127, - [306] = 126, - [307] = 124, - [308] = 93, - [309] = 92, - [310] = 99, - [311] = 102, - [312] = 105, - [313] = 106, - [314] = 108, - [315] = 110, - [316] = 289, - [317] = 122, - [318] = 111, - [319] = 301, - [320] = 123, - [321] = 112, - [322] = 301, - [323] = 289, - [324] = 113, - [325] = 283, - [326] = 120, - [327] = 291, - [328] = 122, - [329] = 240, - [330] = 229, - [331] = 125, - [332] = 123, - [333] = 333, - [334] = 230, - [335] = 227, - [336] = 240, - [337] = 223, - [338] = 301, - [339] = 301, - [340] = 225, - [341] = 289, - [342] = 225, - [343] = 95, - [344] = 97, - [345] = 97, - [346] = 238, - [347] = 258, - [348] = 291, - [349] = 229, - [350] = 231, - [351] = 258, - [352] = 97, - [353] = 232, - [354] = 234, - [355] = 223, - [356] = 222, - [357] = 95, - [358] = 123, - [359] = 125, - [360] = 92, - [361] = 122, - [362] = 227, - [363] = 230, - [364] = 258, - [365] = 120, - [366] = 240, - [367] = 93, - [368] = 124, - [369] = 126, - [370] = 127, - [371] = 283, - [372] = 240, - [373] = 230, - [374] = 227, - [375] = 222, - [376] = 226, - [377] = 101, - [378] = 223, - [379] = 230, - [380] = 227, - [381] = 240, - [382] = 128, - [383] = 228, - [384] = 222, - [385] = 129, - [386] = 113, - [387] = 130, - [388] = 223, - [389] = 112, - [390] = 131, - [391] = 121, - [392] = 225, - [393] = 119, - [394] = 258, - [395] = 229, - [396] = 231, - [397] = 232, - [398] = 234, - [399] = 111, - [400] = 225, - [401] = 229, - [402] = 231, - [403] = 118, - [404] = 232, - [405] = 234, - [406] = 258, - [407] = 117, - [408] = 226, - [409] = 228, - [410] = 110, - [411] = 116, - [412] = 115, - [413] = 238, - [414] = 104, - [415] = 108, - [416] = 106, - [417] = 114, - [418] = 289, - [419] = 301, - [420] = 105, - [421] = 238, - [422] = 333, - [423] = 291, - [424] = 283, - [425] = 226, - [426] = 228, - [427] = 107, - [428] = 103, - [429] = 102, - [430] = 99, - [431] = 333, - [432] = 101, - [433] = 333, - [434] = 104, - [435] = 109, - [436] = 94, - [437] = 96, - [438] = 291, - [439] = 100, - [440] = 333, - [441] = 283, - [442] = 96, - [443] = 98, - [444] = 289, - [445] = 100, - [446] = 98, - [447] = 238, - [448] = 109, - [449] = 103, - [450] = 107, - [451] = 94, - [452] = 144, - [453] = 133, - [454] = 141, - [455] = 140, - [456] = 133, - [457] = 151, - [458] = 134, - [459] = 143, - [460] = 135, - [461] = 150, - [462] = 152, - [463] = 147, - [464] = 153, - [465] = 138, - [466] = 135, - [467] = 136, - [468] = 138, - [469] = 139, - [470] = 148, - [471] = 143, - [472] = 149, - [473] = 147, - [474] = 148, - [475] = 151, - [476] = 141, - [477] = 134, - [478] = 136, - [479] = 149, - [480] = 139, - [481] = 150, - [482] = 132, - [483] = 142, - [484] = 140, - [485] = 142, - [486] = 145, - [487] = 153, - [488] = 144, - [489] = 145, - [490] = 152, - [491] = 146, - [492] = 146, - [493] = 132, - [494] = 494, - [495] = 135, - [496] = 133, - [497] = 140, - [498] = 144, - [499] = 132, - [500] = 134, - [501] = 146, - [502] = 138, - [503] = 152, - [504] = 153, - [505] = 147, - [506] = 151, + [302] = 302, + [303] = 222, + [304] = 304, + [305] = 120, + [306] = 306, + [307] = 121, + [308] = 122, + [309] = 302, + [310] = 306, + [311] = 127, + [312] = 231, + [313] = 313, + [314] = 222, + [315] = 93, + [316] = 124, + [317] = 125, + [318] = 304, + [319] = 290, + [320] = 286, + [321] = 127, + [322] = 306, + [323] = 126, + [324] = 241, + [325] = 242, + [326] = 246, + [327] = 105, + [328] = 248, + [329] = 313, + [330] = 231, + [331] = 271, + [332] = 284, + [333] = 285, + [334] = 104, + [335] = 300, + [336] = 95, + [337] = 94, + [338] = 302, + [339] = 222, + [340] = 304, + [341] = 306, + [342] = 123, + [343] = 102, + [344] = 101, + [345] = 304, + [346] = 290, + [347] = 286, + [348] = 241, + [349] = 242, + [350] = 246, + [351] = 248, + [352] = 249, + [353] = 221, + [354] = 271, + [355] = 100, + [356] = 99, + [357] = 98, + [358] = 284, + [359] = 285, + [360] = 125, + [361] = 124, + [362] = 103, + [363] = 300, + [364] = 131, + [365] = 93, + [366] = 301, + [367] = 222, + [368] = 302, + [369] = 302, + [370] = 222, + [371] = 304, + [372] = 306, + [373] = 131, + [374] = 313, + [375] = 130, + [376] = 129, + [377] = 313, + [378] = 121, + [379] = 128, + [380] = 123, + [381] = 94, + [382] = 290, + [383] = 286, + [384] = 95, + [385] = 241, + [386] = 96, + [387] = 242, + [388] = 246, + [389] = 248, + [390] = 249, + [391] = 221, + [392] = 231, + [393] = 271, + [394] = 284, + [395] = 285, + [396] = 97, + [397] = 300, + [398] = 290, + [399] = 301, + [400] = 286, + [401] = 302, + [402] = 113, + [403] = 304, + [404] = 306, + [405] = 301, + [406] = 106, + [407] = 107, + [408] = 313, + [409] = 108, + [410] = 109, + [411] = 290, + [412] = 286, + [413] = 241, + [414] = 242, + [415] = 313, + [416] = 130, + [417] = 241, + [418] = 242, + [419] = 110, + [420] = 246, + [421] = 248, + [422] = 249, + [423] = 221, + [424] = 271, + [425] = 284, + [426] = 285, + [427] = 300, + [428] = 246, + [429] = 248, + [430] = 301, + [431] = 231, + [432] = 301, + [433] = 249, + [434] = 128, + [435] = 92, + [436] = 120, + [437] = 300, + [438] = 119, + [439] = 118, + [440] = 117, + [441] = 116, + [442] = 285, + [443] = 284, + [444] = 115, + [445] = 271, + [446] = 114, + [447] = 111, + [448] = 113, + [449] = 221, + [450] = 112, + [451] = 129, + [452] = 145, + [453] = 141, + [454] = 144, + [455] = 148, + [456] = 149, + [457] = 150, + [458] = 152, + [459] = 132, + [460] = 134, + [461] = 137, + [462] = 142, + [463] = 153, + [464] = 139, + [465] = 136, + [466] = 141, + [467] = 133, + [468] = 140, + [469] = 147, + [470] = 135, + [471] = 138, + [472] = 146, + [473] = 145, + [474] = 151, + [475] = 147, + [476] = 140, + [477] = 133, + [478] = 144, + [479] = 135, + [480] = 136, + [481] = 138, + [482] = 148, + [483] = 149, + [484] = 150, + [485] = 151, + [486] = 152, + [487] = 139, + [488] = 146, + [489] = 132, + [490] = 153, + [491] = 134, + [492] = 137, + [493] = 142, + [494] = 153, + [495] = 151, + [496] = 152, + [497] = 146, + [498] = 141, + [499] = 139, + [500] = 133, + [501] = 132, + [502] = 135, + [503] = 148, + [504] = 147, + [505] = 144, + [506] = 138, [507] = 145, - [508] = 141, - [509] = 139, - [510] = 149, + [508] = 134, + [509] = 137, + [510] = 150, [511] = 142, - [512] = 150, - [513] = 136, - [514] = 148, - [515] = 143, + [512] = 512, + [513] = 149, + [514] = 140, + [515] = 136, [516] = 516, - [517] = 517, - [518] = 516, - [519] = 516, - [520] = 517, + [517] = 516, + [518] = 518, + [519] = 518, + [520] = 518, [521] = 516, - [522] = 517, - [523] = 517, - [524] = 91, + [522] = 518, + [523] = 516, + [524] = 90, [525] = 525, [526] = 526, - [527] = 91, - [528] = 90, + [527] = 90, + [528] = 91, [529] = 529, [530] = 530, [531] = 531, @@ -3300,27 +3292,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [540] = 540, [541] = 541, [542] = 541, - [543] = 540, - [544] = 540, - [545] = 545, - [546] = 540, + [543] = 543, + [544] = 544, + [545] = 544, + [546] = 541, [547] = 541, - [548] = 548, - [549] = 541, + [548] = 544, + [549] = 544, [550] = 550, [551] = 551, [552] = 552, [553] = 553, [554] = 554, [555] = 555, - [556] = 555, - [557] = 555, - [558] = 555, - [559] = 559, - [560] = 553, - [561] = 561, - [562] = 553, - [563] = 553, + [556] = 556, + [557] = 556, + [558] = 556, + [559] = 554, + [560] = 554, + [561] = 554, + [562] = 556, + [563] = 563, [564] = 564, [565] = 564, [566] = 564, @@ -3331,200 +3323,200 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [571] = 564, [572] = 564, [573] = 564, - [574] = 574, + [574] = 553, [575] = 564, - [576] = 559, + [576] = 576, [577] = 577, - [578] = 578, + [578] = 553, [579] = 579, - [580] = 559, - [581] = 559, + [580] = 580, + [581] = 580, [582] = 582, - [583] = 583, - [584] = 577, + [583] = 553, + [584] = 584, [585] = 585, [586] = 586, [587] = 587, [588] = 588, - [589] = 585, + [589] = 589, [590] = 590, - [591] = 591, + [591] = 590, [592] = 592, - [593] = 593, - [594] = 588, - [595] = 595, - [596] = 596, - [597] = 592, - [598] = 593, - [599] = 588, - [600] = 596, - [601] = 586, - [602] = 587, + [593] = 587, + [594] = 592, + [595] = 592, + [596] = 588, + [597] = 585, + [598] = 598, + [599] = 599, + [600] = 600, + [601] = 599, + [602] = 600, [603] = 603, - [604] = 586, - [605] = 592, - [606] = 606, + [604] = 590, + [605] = 590, + [606] = 599, [607] = 587, - [608] = 596, - [609] = 609, - [610] = 606, - [611] = 591, - [612] = 612, - [613] = 586, - [614] = 612, - [615] = 606, - [616] = 596, - [617] = 587, - [618] = 591, - [619] = 612, - [620] = 586, - [621] = 590, - [622] = 587, - [623] = 590, - [624] = 590, - [625] = 593, - [626] = 596, - [627] = 606, - [628] = 593, - [629] = 606, + [608] = 608, + [609] = 600, + [610] = 589, + [611] = 588, + [612] = 587, + [613] = 592, + [614] = 586, + [615] = 608, + [616] = 616, + [617] = 590, + [618] = 600, + [619] = 585, + [620] = 603, + [621] = 621, + [622] = 586, + [623] = 588, + [624] = 608, + [625] = 585, + [626] = 589, + [627] = 603, + [628] = 603, + [629] = 587, [630] = 630, - [631] = 585, - [632] = 612, - [633] = 591, - [634] = 590, - [635] = 590, - [636] = 591, - [637] = 612, - [638] = 587, - [639] = 591, - [640] = 640, + [631] = 592, + [632] = 589, + [633] = 589, + [634] = 585, + [635] = 600, + [636] = 603, + [637] = 608, + [638] = 585, + [639] = 589, + [640] = 603, [641] = 586, - [642] = 588, - [643] = 588, - [644] = 592, - [645] = 592, - [646] = 588, - [647] = 596, - [648] = 592, - [649] = 640, - [650] = 593, - [651] = 593, - [652] = 612, - [653] = 640, - [654] = 640, - [655] = 585, - [656] = 640, - [657] = 657, + [642] = 599, + [643] = 592, + [644] = 587, + [645] = 608, + [646] = 608, + [647] = 600, + [648] = 586, + [649] = 586, + [650] = 588, + [651] = 588, + [652] = 652, + [653] = 653, + [654] = 654, + [655] = 652, + [656] = 656, + [657] = 653, [658] = 658, [659] = 659, [660] = 660, [661] = 661, - [662] = 660, - [663] = 663, - [664] = 664, - [665] = 664, + [662] = 662, + [663] = 653, + [664] = 653, + [665] = 665, [666] = 666, - [667] = 660, + [667] = 667, [668] = 668, [669] = 669, [670] = 670, [671] = 671, [672] = 672, - [673] = 660, + [673] = 673, [674] = 674, [675] = 675, [676] = 676, [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, + [678] = 670, + [679] = 670, + [680] = 677, [681] = 681, [682] = 682, [683] = 683, - [684] = 675, + [684] = 684, [685] = 685, - [686] = 680, - [687] = 687, - [688] = 688, - [689] = 689, + [686] = 686, + [687] = 686, + [688] = 670, + [689] = 675, [690] = 690, - [691] = 691, - [692] = 687, - [693] = 678, - [694] = 681, + [691] = 676, + [692] = 673, + [693] = 676, + [694] = 671, [695] = 695, - [696] = 696, + [696] = 686, [697] = 697, [698] = 698, - [699] = 699, + [699] = 675, [700] = 700, - [701] = 696, - [702] = 700, - [703] = 696, - [704] = 676, - [705] = 700, - [706] = 690, - [707] = 691, - [708] = 677, - [709] = 709, - [710] = 691, - [711] = 700, - [712] = 709, - [713] = 677, - [714] = 714, - [715] = 688, - [716] = 716, - [717] = 691, - [718] = 683, - [719] = 719, - [720] = 697, - [721] = 721, - [722] = 685, - [723] = 696, - [724] = 691, - [725] = 674, - [726] = 688, - [727] = 709, - [728] = 690, - [729] = 687, - [730] = 698, - [731] = 709, - [732] = 674, - [733] = 678, - [734] = 680, - [735] = 677, - [736] = 681, - [737] = 697, - [738] = 683, - [739] = 691, - [740] = 675, - [741] = 685, - [742] = 683, - [743] = 675, - [744] = 685, - [745] = 674, - [746] = 688, - [747] = 690, - [748] = 687, - [749] = 678, - [750] = 680, - [751] = 681, - [752] = 697, + [701] = 673, + [702] = 681, + [703] = 676, + [704] = 671, + [705] = 695, + [706] = 669, + [707] = 669, + [708] = 708, + [709] = 681, + [710] = 684, + [711] = 690, + [712] = 698, + [713] = 713, + [714] = 682, + [715] = 695, + [716] = 669, + [717] = 677, + [718] = 713, + [719] = 698, + [720] = 681, + [721] = 695, + [722] = 698, + [723] = 723, + [724] = 690, + [725] = 671, + [726] = 682, + [727] = 673, + [728] = 728, + [729] = 675, + [730] = 684, + [731] = 683, + [732] = 676, + [733] = 733, + [734] = 682, + [735] = 690, + [736] = 683, + [737] = 713, + [738] = 708, + [739] = 684, + [740] = 740, + [741] = 741, + [742] = 685, + [743] = 685, + [744] = 740, + [745] = 745, + [746] = 677, + [747] = 686, + [748] = 677, + [749] = 683, + [750] = 685, + [751] = 713, + [752] = 676, [753] = 753, [754] = 754, [755] = 755, [756] = 756, [757] = 757, - [758] = 574, + [758] = 576, [759] = 759, [760] = 760, - [761] = 525, - [762] = 762, + [761] = 761, + [762] = 525, [763] = 526, - [764] = 760, + [764] = 761, [765] = 765, [766] = 766, - [767] = 765, + [767] = 767, [768] = 768, [769] = 769, [770] = 770, @@ -3539,13 +3531,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [779] = 779, [780] = 780, [781] = 781, - [782] = 765, + [782] = 782, [783] = 783, [784] = 784, [785] = 785, [786] = 786, [787] = 787, - [788] = 765, + [788] = 788, [789] = 789, [790] = 790, [791] = 791, @@ -3561,7 +3553,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [801] = 801, [802] = 802, [803] = 803, - [804] = 765, + [804] = 804, [805] = 805, [806] = 806, [807] = 807, @@ -3571,44 +3563,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [811] = 811, [812] = 812, [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 817, + [814] = 812, + [815] = 812, + [816] = 812, + [817] = 812, [818] = 818, [819] = 819, [820] = 820, [821] = 821, - [822] = 822, - [823] = 823, - [824] = 822, - [825] = 822, - [826] = 822, - [827] = 822, - [828] = 822, - [829] = 796, - [830] = 797, - [831] = 799, - [832] = 805, - [833] = 780, - [834] = 813, - [835] = 768, - [836] = 800, - [837] = 766, - [838] = 811, - [839] = 839, - [840] = 787, - [841] = 801, - [842] = 769, - [843] = 793, - [844] = 792, - [845] = 798, - [846] = 789, - [847] = 802, - [848] = 818, - [849] = 772, - [850] = 786, - [851] = 771, + [822] = 820, + [823] = 820, + [824] = 820, + [825] = 820, + [826] = 820, + [827] = 790, + [828] = 782, + [829] = 786, + [830] = 769, + [831] = 792, + [832] = 774, + [833] = 788, + [834] = 768, + [835] = 803, + [836] = 767, + [837] = 809, + [838] = 798, + [839] = 793, + [840] = 840, + [841] = 777, + [842] = 787, + [843] = 778, + [844] = 806, + [845] = 807, + [846] = 805, + [847] = 811, + [848] = 770, + [849] = 780, + [850] = 151, + [851] = 851, [852] = 852, [853] = 853, [854] = 854, @@ -3617,138 +3609,138 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [857] = 857, [858] = 858, [859] = 859, - [860] = 860, - [861] = 150, - [862] = 152, + [860] = 147, + [861] = 861, + [862] = 862, [863] = 863, - [864] = 153, + [864] = 864, [865] = 865, - [866] = 138, - [867] = 135, - [868] = 868, - [869] = 141, - [870] = 870, - [871] = 871, - [872] = 860, - [873] = 865, - [874] = 135, - [875] = 823, - [876] = 852, - [877] = 859, - [878] = 855, - [879] = 853, - [880] = 854, - [881] = 857, - [882] = 863, - [883] = 870, - [884] = 138, - [885] = 152, - [886] = 868, - [887] = 887, - [888] = 153, - [889] = 150, - [890] = 858, - [891] = 141, - [892] = 856, - [893] = 526, - [894] = 525, - [895] = 756, - [896] = 757, - [897] = 897, - [898] = 865, - [899] = 153, - [900] = 900, - [901] = 860, - [902] = 865, - [903] = 870, - [904] = 904, - [905] = 854, - [906] = 853, - [907] = 863, - [908] = 857, - [909] = 909, - [910] = 858, - [911] = 855, - [912] = 868, - [913] = 913, - [914] = 859, - [915] = 909, - [916] = 141, - [917] = 852, - [918] = 856, - [919] = 919, - [920] = 859, - [921] = 855, - [922] = 853, - [923] = 854, - [924] = 857, - [925] = 863, - [926] = 909, - [927] = 141, - [928] = 870, - [929] = 135, - [930] = 852, - [931] = 868, - [932] = 856, - [933] = 858, - [934] = 150, - [935] = 135, - [936] = 138, - [937] = 138, - [938] = 938, - [939] = 153, - [940] = 152, - [941] = 860, - [942] = 152, - [943] = 909, - [944] = 909, - [945] = 150, - [946] = 769, - [947] = 796, - [948] = 780, - [949] = 801, - [950] = 793, - [951] = 789, - [952] = 768, - [953] = 805, - [954] = 802, - [955] = 800, - [956] = 799, - [957] = 798, - [958] = 958, - [959] = 792, - [960] = 960, - [961] = 961, - [962] = 960, - [963] = 960, - [964] = 960, - [965] = 960, + [866] = 866, + [867] = 867, + [868] = 135, + [869] = 869, + [870] = 138, + [871] = 146, + [872] = 872, + [873] = 145, + [874] = 874, + [875] = 821, + [876] = 151, + [877] = 858, + [878] = 867, + [879] = 862, + [880] = 863, + [881] = 864, + [882] = 882, + [883] = 865, + [884] = 861, + [885] = 866, + [886] = 869, + [887] = 872, + [888] = 874, + [889] = 856, + [890] = 857, + [891] = 145, + [892] = 146, + [893] = 855, + [894] = 138, + [895] = 135, + [896] = 147, + [897] = 851, + [898] = 854, + [899] = 853, + [900] = 852, + [901] = 757, + [902] = 902, + [903] = 525, + [904] = 756, + [905] = 526, + [906] = 874, + [907] = 856, + [908] = 863, + [909] = 862, + [910] = 803, + [911] = 872, + [912] = 851, + [913] = 858, + [914] = 806, + [915] = 864, + [916] = 916, + [917] = 865, + [918] = 861, + [919] = 866, + [920] = 916, + [921] = 151, + [922] = 916, + [923] = 853, + [924] = 145, + [925] = 853, + [926] = 926, + [927] = 872, + [928] = 869, + [929] = 869, + [930] = 857, + [931] = 852, + [932] = 782, + [933] = 856, + [934] = 934, + [935] = 145, + [936] = 768, + [937] = 146, + [938] = 146, + [939] = 863, + [940] = 852, + [941] = 862, + [942] = 855, + [943] = 851, + [944] = 854, + [945] = 945, + [946] = 790, + [947] = 947, + [948] = 807, + [949] = 866, + [950] = 861, + [951] = 916, + [952] = 857, + [953] = 916, + [954] = 786, + [955] = 858, + [956] = 769, + [957] = 138, + [958] = 867, + [959] = 864, + [960] = 135, + [961] = 792, + [962] = 147, + [963] = 788, + [964] = 798, + [965] = 855, [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 973, - [974] = 974, - [975] = 975, - [976] = 976, - [977] = 970, - [978] = 978, - [979] = 979, - [980] = 980, + [967] = 147, + [968] = 854, + [969] = 867, + [970] = 874, + [971] = 135, + [972] = 138, + [973] = 793, + [974] = 151, + [975] = 767, + [976] = 865, + [977] = 98, + [978] = 103, + [979] = 129, + [980] = 128, [981] = 981, [982] = 982, [983] = 983, - [984] = 984, + [984] = 983, [985] = 985, [986] = 986, - [987] = 987, + [987] = 983, [988] = 988, - [989] = 987, + [989] = 989, [990] = 990, - [991] = 990, + [991] = 983, [992] = 992, [993] = 993, [994] = 994, @@ -3756,151 +3748,151 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [996] = 996, [997] = 997, [998] = 998, - [999] = 999, + [999] = 983, [1000] = 1000, [1001] = 1001, [1002] = 1002, - [1003] = 997, + [1003] = 1003, [1004] = 1004, - [1005] = 988, + [1005] = 1005, [1006] = 1006, - [1007] = 1004, + [1007] = 992, [1008] = 1008, - [1009] = 995, - [1010] = 993, + [1009] = 1009, + [1010] = 1010, [1011] = 1011, - [1012] = 998, - [1013] = 988, - [1014] = 1014, - [1015] = 995, - [1016] = 1000, - [1017] = 990, + [1012] = 1012, + [1013] = 1013, + [1014] = 1013, + [1015] = 1015, + [1016] = 1012, + [1017] = 1011, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 993, - [1022] = 995, - [1023] = 990, - [1024] = 1000, - [1025] = 1000, - [1026] = 1004, - [1027] = 987, + [1021] = 1011, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1013, + [1027] = 1027, [1028] = 1028, - [1029] = 1018, - [1030] = 1004, - [1031] = 988, - [1032] = 1032, - [1033] = 995, - [1034] = 997, - [1035] = 997, - [1036] = 1036, - [1037] = 998, - [1038] = 990, - [1039] = 987, - [1040] = 1000, - [1041] = 993, - [1042] = 998, - [1043] = 1004, - [1044] = 988, - [1045] = 1006, - [1046] = 1014, - [1047] = 997, - [1048] = 1018, - [1049] = 1006, - [1050] = 1050, - [1051] = 1018, - [1052] = 1014, - [1053] = 995, - [1054] = 998, - [1055] = 987, - [1056] = 988, - [1057] = 1006, - [1058] = 1004, - [1059] = 1059, - [1060] = 1018, - [1061] = 1006, - [1062] = 1014, - [1063] = 997, - [1064] = 1064, - [1065] = 993, - [1066] = 1066, - [1067] = 1067, - [1068] = 1014, - [1069] = 1002, - [1070] = 990, - [1071] = 987, - [1072] = 993, - [1073] = 1000, - [1074] = 1074, - [1075] = 998, - [1076] = 1018, - [1077] = 1077, - [1078] = 793, - [1079] = 792, - [1080] = 1080, - [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 769, + [1029] = 1020, + [1030] = 1015, + [1031] = 1028, + [1032] = 1020, + [1033] = 1027, + [1034] = 1018, + [1035] = 1020, + [1036] = 1012, + [1037] = 1015, + [1038] = 1038, + [1039] = 1018, + [1040] = 1040, + [1041] = 1018, + [1042] = 1012, + [1043] = 1043, + [1044] = 1043, + [1045] = 1028, + [1046] = 1046, + [1047] = 1011, + [1048] = 1020, + [1049] = 1027, + [1050] = 1011, + [1051] = 1038, + [1052] = 1043, + [1053] = 1011, + [1054] = 1020, + [1055] = 1013, + [1056] = 1027, + [1057] = 1028, + [1058] = 1038, + [1059] = 1018, + [1060] = 1040, + [1061] = 1040, + [1062] = 1046, + [1063] = 1063, + [1064] = 1046, + [1065] = 1013, + [1066] = 1046, + [1067] = 1012, + [1068] = 1046, + [1069] = 1018, + [1070] = 1012, + [1071] = 1015, + [1072] = 1040, + [1073] = 1038, + [1074] = 1027, + [1075] = 1043, + [1076] = 1028, + [1077] = 1015, + [1078] = 1025, + [1079] = 1027, + [1080] = 1028, + [1081] = 1038, + [1082] = 1040, + [1083] = 1043, + [1084] = 1038, [1085] = 1085, - [1086] = 1086, - [1087] = 1083, - [1088] = 789, - [1089] = 1089, + [1086] = 1013, + [1087] = 1087, + [1088] = 1046, + [1089] = 1040, [1090] = 1090, - [1091] = 1091, + [1091] = 798, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1085, - [1096] = 1085, - [1097] = 796, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, [1098] = 1098, - [1099] = 798, + [1099] = 1099, [1100] = 1100, - [1101] = 799, - [1102] = 800, - [1103] = 1085, - [1104] = 1085, - [1105] = 801, - [1106] = 1106, - [1107] = 1107, - [1108] = 768, - [1109] = 802, + [1101] = 1101, + [1102] = 768, + [1103] = 1103, + [1104] = 1104, + [1105] = 1105, + [1106] = 793, + [1107] = 1095, + [1108] = 1108, + [1109] = 1109, [1110] = 1110, - [1111] = 1085, + [1111] = 1111, [1112] = 1112, - [1113] = 1083, + [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1083, - [1118] = 780, - [1119] = 805, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1123, - [1124] = 1124, - [1125] = 1125, - [1126] = 1120, - [1127] = 1127, - [1128] = 1121, - [1129] = 1120, + [1117] = 1117, + [1118] = 1118, + [1119] = 782, + [1120] = 1095, + [1121] = 1096, + [1122] = 1096, + [1123] = 1095, + [1124] = 807, + [1125] = 1096, + [1126] = 806, + [1127] = 1095, + [1128] = 790, + [1129] = 803, [1130] = 1130, - [1131] = 1131, + [1131] = 1095, [1132] = 1132, - [1133] = 1133, - [1134] = 1120, - [1135] = 1135, - [1136] = 1136, - [1137] = 1137, + [1133] = 786, + [1134] = 769, + [1135] = 767, + [1136] = 788, + [1137] = 792, [1138] = 1138, [1139] = 1139, [1140] = 1140, [1141] = 1141, [1142] = 1142, - [1143] = 1121, + [1143] = 1143, [1144] = 1144, [1145] = 1145, [1146] = 1146, @@ -3908,15 +3900,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1148] = 1148, [1149] = 1149, [1150] = 1150, - [1151] = 1121, + [1151] = 1151, [1152] = 1152, - [1153] = 816, - [1154] = 1120, + [1153] = 1153, + [1154] = 1154, [1155] = 1155, - [1156] = 1140, - [1157] = 1121, + [1156] = 813, + [1157] = 1157, [1158] = 1158, - [1159] = 1159, + [1159] = 1154, [1160] = 1160, [1161] = 1161, [1162] = 1162, @@ -3931,73 +3923,73 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1171] = 1171, [1172] = 1172, [1173] = 1173, - [1174] = 1170, + [1174] = 1174, [1175] = 1175, - [1176] = 958, + [1176] = 1176, [1177] = 1177, [1178] = 1178, - [1179] = 1179, - [1180] = 1162, - [1181] = 1179, - [1182] = 1171, - [1183] = 1175, - [1184] = 1175, - [1185] = 1175, - [1186] = 1170, - [1187] = 1171, - [1188] = 1172, + [1179] = 1177, + [1180] = 1178, + [1181] = 1178, + [1182] = 1177, + [1183] = 1178, + [1184] = 1177, + [1185] = 1177, + [1186] = 1178, + [1187] = 1187, + [1188] = 1188, [1189] = 1189, - [1190] = 1171, + [1190] = 1190, [1191] = 1191, - [1192] = 1178, - [1193] = 1170, - [1194] = 1170, - [1195] = 1171, - [1196] = 1196, - [1197] = 1178, - [1198] = 1178, - [1199] = 1175, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 981, + [1197] = 1197, + [1198] = 1198, + [1199] = 1197, [1200] = 1200, [1201] = 1201, - [1202] = 1178, - [1203] = 1203, + [1202] = 1202, + [1203] = 1198, [1204] = 1204, - [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1205, + [1205] = 1197, + [1206] = 1198, + [1207] = 1202, + [1208] = 1200, [1209] = 1209, - [1210] = 1210, - [1211] = 783, - [1212] = 1212, - [1213] = 1212, - [1214] = 1206, - [1215] = 1212, - [1216] = 1206, - [1217] = 1206, + [1210] = 1202, + [1211] = 1209, + [1212] = 1198, + [1213] = 1213, + [1214] = 1202, + [1215] = 1197, + [1216] = 1209, + [1217] = 1213, [1218] = 1218, [1219] = 1219, - [1220] = 1207, - [1221] = 1221, + [1220] = 1220, + [1221] = 1189, [1222] = 1222, [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1222, - [1228] = 1228, - [1229] = 1223, - [1230] = 1203, + [1224] = 1209, + [1225] = 1202, + [1226] = 1198, + [1227] = 1227, + [1228] = 1197, + [1229] = 1209, + [1230] = 1230, [1231] = 1231, [1232] = 1232, - [1233] = 1224, - [1234] = 1225, - [1235] = 1226, + [1233] = 990, + [1234] = 1234, + [1235] = 1235, [1236] = 1236, - [1237] = 1228, - [1238] = 1231, - [1239] = 1204, - [1240] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, @@ -4006,188 +3998,188 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1246] = 1246, [1247] = 1247, [1248] = 1248, - [1249] = 1249, - [1250] = 1206, + [1249] = 1232, + [1250] = 1250, [1251] = 1251, [1252] = 1252, - [1253] = 1253, - [1254] = 1254, + [1253] = 1236, + [1254] = 1230, [1255] = 1255, [1256] = 1256, [1257] = 1257, - [1258] = 1212, - [1259] = 1259, + [1258] = 1256, + [1259] = 1252, [1260] = 1260, - [1261] = 1261, - [1262] = 1251, + [1261] = 1234, + [1262] = 1257, [1263] = 1263, - [1264] = 1264, - [1265] = 1254, - [1266] = 1253, - [1267] = 1267, - [1268] = 1252, - [1269] = 1249, - [1270] = 1261, - [1271] = 1261, - [1272] = 1261, - [1273] = 783, + [1264] = 1245, + [1265] = 1022, + [1266] = 1244, + [1267] = 1243, + [1268] = 1242, + [1269] = 808, + [1270] = 1235, + [1271] = 1271, + [1272] = 1236, + [1273] = 1273, [1274] = 1241, - [1275] = 1248, - [1276] = 1247, - [1277] = 1261, - [1278] = 1259, + [1275] = 1236, + [1276] = 1240, + [1277] = 1277, + [1278] = 1278, [1279] = 1279, - [1280] = 1246, - [1281] = 1263, - [1282] = 1263, - [1283] = 1221, - [1284] = 1219, - [1285] = 1244, - [1286] = 1256, - [1287] = 1267, - [1288] = 1263, - [1289] = 1218, - [1290] = 1260, - [1291] = 1255, - [1292] = 1245, + [1280] = 1280, + [1281] = 1236, + [1282] = 1282, + [1283] = 1283, + [1284] = 1284, + [1285] = 1235, + [1286] = 1235, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1278, + [1292] = 808, [1293] = 1293, - [1294] = 1294, - [1295] = 1067, - [1296] = 1296, + [1294] = 1271, + [1295] = 1260, + [1296] = 1248, [1297] = 1297, - [1298] = 1298, - [1299] = 1299, - [1300] = 1300, - [1301] = 1296, - [1302] = 1298, - [1303] = 1297, - [1304] = 1296, + [1298] = 1273, + [1299] = 1231, + [1300] = 1263, + [1301] = 1237, + [1302] = 1277, + [1303] = 1303, + [1304] = 1287, [1305] = 1297, - [1306] = 1298, - [1307] = 1297, - [1308] = 1299, - [1309] = 1299, - [1310] = 1298, - [1311] = 1299, - [1312] = 1296, - [1313] = 1297, - [1314] = 1299, - [1315] = 1298, - [1316] = 1316, - [1317] = 1317, - [1318] = 1318, - [1319] = 1319, + [1306] = 1279, + [1307] = 1280, + [1308] = 1297, + [1309] = 1282, + [1310] = 1283, + [1311] = 1250, + [1312] = 1284, + [1313] = 1290, + [1314] = 1293, + [1315] = 1288, + [1316] = 1290, + [1317] = 1290, + [1318] = 1255, + [1319] = 1297, [1320] = 1320, - [1321] = 1319, - [1322] = 1322, - [1323] = 1323, - [1324] = 1324, + [1321] = 1297, + [1322] = 1140, + [1323] = 1148, + [1324] = 1167, [1325] = 1325, - [1326] = 1319, + [1326] = 1326, [1327] = 1327, [1328] = 1328, - [1329] = 1319, + [1329] = 990, [1330] = 1330, [1331] = 1331, - [1332] = 1332, - [1333] = 1333, - [1334] = 1332, + [1332] = 1331, + [1333] = 1331, + [1334] = 1331, [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1338, + [1336] = 1335, + [1337] = 1335, + [1338] = 1335, [1339] = 1339, [1340] = 1340, - [1341] = 1341, - [1342] = 1342, - [1343] = 1332, - [1344] = 1344, + [1341] = 1339, + [1342] = 1340, + [1343] = 1339, + [1344] = 1340, [1345] = 1345, - [1346] = 1332, - [1347] = 1332, - [1348] = 1348, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, + [1346] = 1346, + [1347] = 1346, + [1348] = 1340, + [1349] = 1339, + [1350] = 1340, + [1351] = 1340, [1352] = 1352, [1353] = 1353, - [1354] = 1353, - [1355] = 1355, - [1356] = 1353, - [1357] = 1351, - [1358] = 1355, + [1354] = 1346, + [1355] = 1339, + [1356] = 1346, + [1357] = 1346, + [1358] = 1358, [1359] = 1359, - [1360] = 1352, + [1360] = 1360, [1361] = 1361, - [1362] = 1353, - [1363] = 1352, - [1364] = 1361, + [1362] = 1362, + [1363] = 1363, + [1364] = 1364, [1365] = 1365, - [1366] = 1361, - [1367] = 1352, - [1368] = 1355, - [1369] = 1355, - [1370] = 1370, - [1371] = 1351, + [1366] = 1366, + [1367] = 1367, + [1368] = 1358, + [1369] = 1369, + [1370] = 1358, + [1371] = 1358, [1372] = 1372, - [1373] = 1351, + [1373] = 1373, [1374] = 1374, - [1375] = 1375, - [1376] = 1361, - [1377] = 1355, - [1378] = 1352, - [1379] = 1361, - [1380] = 1353, - [1381] = 1351, + [1375] = 1358, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, - [1386] = 1386, + [1386] = 1383, [1387] = 1387, [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, + [1389] = 1383, + [1390] = 1383, + [1391] = 1383, [1392] = 1392, - [1393] = 1393, + [1393] = 1383, [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1400, + [1400] = 1398, [1401] = 1401, [1402] = 1402, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, + [1403] = 1398, + [1404] = 1396, + [1405] = 1401, [1406] = 1406, - [1407] = 1407, + [1407] = 1397, [1408] = 1408, - [1409] = 1409, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, + [1409] = 1397, + [1410] = 1399, + [1411] = 1397, + [1412] = 1396, + [1413] = 1399, + [1414] = 1399, [1415] = 1415, - [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, + [1416] = 1401, + [1417] = 1401, + [1418] = 1397, + [1419] = 1398, + [1420] = 1401, + [1421] = 1396, + [1422] = 1398, + [1423] = 1399, + [1424] = 1396, [1425] = 1425, [1426] = 1426, - [1427] = 1427, + [1427] = 1425, [1428] = 1428, [1429] = 1429, - [1430] = 1430, + [1430] = 1425, [1431] = 1431, [1432] = 1432, [1433] = 1433, @@ -4205,496 +4197,557 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1445] = 1445, [1446] = 1446, [1447] = 1447, - [1448] = 1448, - [1449] = 1449, + [1448] = 1425, + [1449] = 1425, [1450] = 1450, [1451] = 1451, [1452] = 1452, [1453] = 1453, - [1454] = 1448, + [1454] = 1454, [1455] = 1455, [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 1453, + [1459] = 1459, [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1453, - [1464] = 1453, - [1465] = 1453, - [1466] = 1453, - [1467] = 1461, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, + [1466] = 1466, + [1467] = 1467, [1468] = 1468, - [1469] = 1453, + [1469] = 1469, [1470] = 1470, [1471] = 1471, - [1472] = 1453, - [1473] = 1461, - [1474] = 1453, - [1475] = 1448, + [1472] = 1472, + [1473] = 1473, + [1474] = 1474, + [1475] = 1475, [1476] = 1476, [1477] = 1477, [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1481, + [1481] = 1477, [1482] = 1482, - [1483] = 1483, - [1484] = 1484, + [1483] = 1480, + [1484] = 1477, [1485] = 1485, [1486] = 1486, [1487] = 1487, [1488] = 1488, [1489] = 1489, [1490] = 1490, - [1491] = 1490, + [1491] = 1491, [1492] = 1492, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1479, + [1493] = 1477, + [1494] = 1480, + [1495] = 1485, + [1496] = 1480, [1497] = 1497, - [1498] = 1480, - [1499] = 1482, + [1498] = 1498, + [1499] = 1499, [1500] = 1500, - [1501] = 1501, - [1502] = 1487, - [1503] = 1503, - [1504] = 1486, - [1505] = 1481, - [1506] = 1506, - [1507] = 1507, + [1501] = 1485, + [1502] = 1502, + [1503] = 1485, + [1504] = 1504, + [1505] = 1505, + [1506] = 1505, + [1507] = 1505, [1508] = 1508, [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1486, + [1514] = 1514, [1515] = 1515, - [1516] = 1516, - [1517] = 1511, - [1518] = 1509, - [1519] = 1519, - [1520] = 1520, - [1521] = 1500, - [1522] = 1487, - [1523] = 1506, - [1524] = 1503, - [1525] = 1525, + [1516] = 1509, + [1517] = 1517, + [1518] = 1505, + [1519] = 1509, + [1520] = 1505, + [1521] = 1521, + [1522] = 1522, + [1523] = 1505, + [1524] = 1524, + [1525] = 1517, [1526] = 1526, - [1527] = 1480, - [1528] = 1506, - [1529] = 1479, - [1530] = 1503, - [1531] = 1490, + [1527] = 1517, + [1528] = 1505, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, [1532] = 1532, - [1533] = 1479, - [1534] = 1480, + [1533] = 1505, + [1534] = 1505, [1535] = 1535, - [1536] = 1482, - [1537] = 1497, + [1536] = 1535, + [1537] = 1537, [1538] = 1538, [1539] = 1539, - [1540] = 1486, + [1540] = 1539, [1541] = 1541, - [1542] = 1542, - [1543] = 1487, + [1542] = 1541, + [1543] = 1543, [1544] = 1544, [1545] = 1545, - [1546] = 1492, - [1547] = 1489, - [1548] = 1506, - [1549] = 1503, + [1546] = 1546, + [1547] = 1547, + [1548] = 1548, + [1549] = 1549, [1550] = 1550, - [1551] = 1497, - [1552] = 1483, + [1551] = 1551, + [1552] = 1547, [1553] = 1553, - [1554] = 1482, - [1555] = 1497, - [1556] = 1483, - [1557] = 1557, - [1558] = 1492, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1535, + [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1481, - [1562] = 1489, + [1561] = 1561, + [1562] = 1562, [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1481, + [1564] = 1541, + [1565] = 1547, + [1566] = 1559, [1567] = 1567, - [1568] = 1568, - [1569] = 1492, - [1570] = 1492, - [1571] = 1571, - [1572] = 1503, - [1573] = 1506, + [1568] = 1545, + [1569] = 1569, + [1570] = 1570, + [1571] = 1562, + [1572] = 1572, + [1573] = 1573, [1574] = 1574, - [1575] = 1486, - [1576] = 1478, + [1575] = 1569, + [1576] = 1576, [1577] = 1577, - [1578] = 1480, - [1579] = 1479, - [1580] = 1580, - [1581] = 1487, + [1578] = 1578, + [1579] = 1579, + [1580] = 1547, + [1581] = 1581, [1582] = 1582, - [1583] = 1583, - [1584] = 1481, - [1585] = 1489, - [1586] = 1586, - [1587] = 1587, - [1588] = 1588, + [1583] = 1535, + [1584] = 1541, + [1585] = 1559, + [1586] = 1562, + [1587] = 1559, + [1588] = 1562, [1589] = 1589, [1590] = 1590, - [1591] = 1591, + [1591] = 1539, [1592] = 1592, - [1593] = 1593, - [1594] = 1590, - [1595] = 1593, + [1593] = 1545, + [1594] = 1594, + [1595] = 1576, [1596] = 1596, [1597] = 1597, [1598] = 1598, - [1599] = 1599, + [1599] = 1569, [1600] = 1600, - [1601] = 1601, - [1602] = 1602, - [1603] = 1603, - [1604] = 1604, - [1605] = 1588, - [1606] = 1602, - [1607] = 1604, - [1608] = 1608, + [1601] = 1570, + [1602] = 1545, + [1603] = 1539, + [1604] = 1541, + [1605] = 1605, + [1606] = 1569, + [1607] = 1539, + [1608] = 1535, [1609] = 1609, - [1610] = 1600, - [1611] = 1611, - [1612] = 1612, - [1613] = 1597, - [1614] = 1590, - [1615] = 1602, - [1616] = 1600, + [1610] = 1610, + [1611] = 1551, + [1612] = 1559, + [1613] = 1562, + [1614] = 1547, + [1615] = 1576, + [1616] = 1616, [1617] = 1617, - [1618] = 1611, - [1619] = 1590, - [1620] = 1620, - [1621] = 1593, - [1622] = 1611, - [1623] = 1598, + [1618] = 1618, + [1619] = 1570, + [1620] = 1569, + [1621] = 1543, + [1622] = 1548, + [1623] = 1623, [1624] = 1624, - [1625] = 1590, - [1626] = 1598, - [1627] = 1597, - [1628] = 1593, + [1625] = 1562, + [1626] = 1559, + [1627] = 1627, + [1628] = 1569, [1629] = 1629, - [1630] = 1588, + [1630] = 1630, [1631] = 1631, - [1632] = 1604, + [1632] = 1632, [1633] = 1633, - [1634] = 1590, - [1635] = 1588, - [1636] = 1636, - [1637] = 1637, - [1638] = 1604, - [1639] = 1611, - [1640] = 1590, - [1641] = 1602, - [1642] = 1600, - [1643] = 1604, - [1644] = 1604, - [1645] = 1599, - [1646] = 1590, - [1647] = 1598, - [1648] = 1598, - [1649] = 1597, - [1650] = 1604, - [1651] = 1593, - [1652] = 1592, + [1634] = 1553, + [1635] = 1635, + [1636] = 1551, + [1637] = 1545, + [1638] = 1638, + [1639] = 1639, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, + [1643] = 1643, + [1644] = 1644, + [1645] = 1645, + [1646] = 1645, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1641, + [1651] = 1651, + [1652] = 1652, [1653] = 1653, - [1654] = 1600, - [1655] = 1604, - [1656] = 1588, - [1657] = 1592, - [1658] = 1593, - [1659] = 1597, + [1654] = 1648, + [1655] = 1647, + [1656] = 1656, + [1657] = 1657, + [1658] = 1648, + [1659] = 1659, [1660] = 1660, - [1661] = 1598, - [1662] = 1602, - [1663] = 1599, - [1664] = 1664, - [1665] = 1601, + [1661] = 1661, + [1662] = 1641, + [1663] = 1649, + [1664] = 1648, + [1665] = 1665, [1666] = 1666, - [1667] = 1667, - [1668] = 1590, - [1669] = 1669, - [1670] = 1604, - [1671] = 1671, - [1672] = 1672, - [1673] = 1673, - [1674] = 1611, + [1667] = 1639, + [1668] = 1652, + [1669] = 1652, + [1670] = 1648, + [1671] = 1641, + [1672] = 1648, + [1673] = 1639, + [1674] = 1674, [1675] = 1675, [1676] = 1676, - [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 1680, - [1681] = 1675, - [1682] = 1682, - [1683] = 1683, - [1684] = 1684, - [1685] = 1685, - [1686] = 1686, - [1687] = 1687, - [1688] = 1688, - [1689] = 1687, + [1677] = 1652, + [1678] = 1649, + [1679] = 1639, + [1680] = 1661, + [1681] = 1681, + [1682] = 1649, + [1683] = 1661, + [1684] = 1639, + [1685] = 1645, + [1686] = 1661, + [1687] = 1641, + [1688] = 1661, + [1689] = 1674, [1690] = 1690, - [1691] = 1691, - [1692] = 1692, - [1693] = 1693, + [1691] = 1651, + [1692] = 1652, + [1693] = 1661, [1694] = 1694, [1695] = 1695, [1696] = 1696, - [1697] = 1697, - [1698] = 1698, + [1697] = 1645, + [1698] = 1645, [1699] = 1699, [1700] = 1700, - [1701] = 1701, - [1702] = 1702, - [1703] = 1686, - [1704] = 1704, - [1705] = 1675, + [1701] = 1645, + [1702] = 1661, + [1703] = 1647, + [1704] = 1645, + [1705] = 1705, [1706] = 1706, - [1707] = 1676, - [1708] = 1677, - [1709] = 1709, - [1710] = 1710, - [1711] = 1691, - [1712] = 1695, + [1707] = 1645, + [1708] = 1661, + [1709] = 1651, + [1710] = 1645, + [1711] = 1641, + [1712] = 1649, [1713] = 1713, - [1714] = 1676, + [1714] = 1661, [1715] = 1715, [1716] = 1716, [1717] = 1717, - [1718] = 1685, - [1719] = 1719, - [1720] = 1699, - [1721] = 1721, - [1722] = 1698, - [1723] = 1723, - [1724] = 1680, - [1725] = 1682, + [1718] = 1718, + [1719] = 1715, + [1720] = 1720, + [1721] = 1717, + [1722] = 1722, + [1723] = 1715, + [1724] = 1720, + [1725] = 1717, [1726] = 1726, [1727] = 1727, [1728] = 1728, [1729] = 1729, [1730] = 1730, - [1731] = 1710, + [1731] = 1731, [1732] = 1732, [1733] = 1733, [1734] = 1734, - [1735] = 1716, - [1736] = 1713, - [1737] = 1710, + [1735] = 1735, + [1736] = 1736, + [1737] = 1717, [1738] = 1738, - [1739] = 1739, - [1740] = 1695, - [1741] = 1741, + [1739] = 1715, + [1740] = 1717, + [1741] = 1720, [1742] = 1742, [1743] = 1743, [1744] = 1744, - [1745] = 1744, - [1746] = 1746, - [1747] = 1743, - [1748] = 1683, - [1749] = 1741, + [1745] = 1745, + [1746] = 1715, + [1747] = 1747, + [1748] = 1720, + [1749] = 1720, [1750] = 1750, - [1751] = 1728, - [1752] = 1727, - [1753] = 1713, - [1754] = 1700, - [1755] = 1750, - [1756] = 1741, - [1757] = 1757, - [1758] = 1758, - [1759] = 1728, - [1760] = 1728, - [1761] = 1677, + [1751] = 1751, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1731, + [1758] = 1752, + [1759] = 1732, + [1760] = 1742, + [1761] = 1761, [1762] = 1762, - [1763] = 1697, - [1764] = 1742, - [1765] = 1719, + [1763] = 1763, + [1764] = 1764, + [1765] = 1761, [1766] = 1766, - [1767] = 1675, - [1768] = 1741, - [1769] = 1741, - [1770] = 1728, - [1771] = 1704, - [1772] = 1719, - [1773] = 1701, - [1774] = 1706, - [1775] = 1677, - [1776] = 1762, - [1777] = 1710, - [1778] = 1741, - [1779] = 1739, - [1780] = 1713, - [1781] = 1729, - [1782] = 1782, - [1783] = 1706, - [1784] = 1716, - [1785] = 1704, - [1786] = 1685, - [1787] = 1676, - [1788] = 1699, - [1789] = 1789, - [1790] = 1698, - [1791] = 1728, - [1792] = 1676, - [1793] = 1682, - [1794] = 1691, - [1795] = 1743, - [1796] = 1744, - [1797] = 1686, - [1798] = 1677, - [1799] = 1762, - [1800] = 1685, - [1801] = 1702, - [1802] = 1727, - [1803] = 1677, + [1767] = 1767, + [1768] = 1734, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1718, + [1774] = 1774, + [1775] = 1750, + [1776] = 1776, + [1777] = 1735, + [1778] = 1717, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1767, + [1783] = 1745, + [1784] = 1774, + [1785] = 1785, + [1786] = 1779, + [1787] = 1787, + [1788] = 1788, + [1789] = 1716, + [1790] = 1790, + [1791] = 1750, + [1792] = 1755, + [1793] = 1793, + [1794] = 1794, + [1795] = 1745, + [1796] = 1796, + [1797] = 1743, + [1798] = 1756, + [1799] = 1799, + [1800] = 1742, + [1801] = 1801, + [1802] = 1720, + [1803] = 1803, [1804] = 1804, - [1805] = 1700, - [1806] = 1677, - [1807] = 757, - [1808] = 1742, - [1809] = 1804, - [1810] = 1729, - [1811] = 1697, - [1812] = 1675, - [1813] = 1739, - [1814] = 1746, - [1815] = 1741, - [1816] = 1816, - [1817] = 1695, - [1818] = 1710, - [1819] = 1762, - [1820] = 1820, - [1821] = 1713, - [1822] = 1721, - [1823] = 1804, - [1824] = 1824, - [1825] = 1685, - [1826] = 1826, - [1827] = 1699, - [1828] = 1828, - [1829] = 1698, - [1830] = 1804, - [1831] = 1831, - [1832] = 1682, - [1833] = 1700, - [1834] = 1743, - [1835] = 1744, - [1836] = 1709, - [1837] = 1729, - [1838] = 756, - [1839] = 1727, - [1840] = 1697, + [1805] = 1716, + [1806] = 1754, + [1807] = 1727, + [1808] = 1728, + [1809] = 1809, + [1810] = 1755, + [1811] = 1811, + [1812] = 1753, + [1813] = 1761, + [1814] = 1769, + [1815] = 1754, + [1816] = 1730, + [1817] = 1755, + [1818] = 1715, + [1819] = 1772, + [1820] = 1717, + [1821] = 1736, + [1822] = 1735, + [1823] = 1734, + [1824] = 1770, + [1825] = 1771, + [1826] = 1756, + [1827] = 1771, + [1828] = 1772, + [1829] = 1750, + [1830] = 1750, + [1831] = 1730, + [1832] = 1772, + [1833] = 1733, + [1834] = 1766, + [1835] = 1835, + [1836] = 1732, + [1837] = 1769, + [1838] = 1766, + [1839] = 1771, + [1840] = 1718, [1841] = 1841, - [1842] = 1710, - [1843] = 1713, + [1842] = 1842, + [1843] = 1776, [1844] = 1844, - [1845] = 1845, - [1846] = 1682, - [1847] = 1739, - [1848] = 1741, - [1849] = 1743, - [1850] = 1721, - [1851] = 1743, - [1852] = 1743, - [1853] = 1743, - [1854] = 1854, - [1855] = 1855, - [1856] = 1856, - [1857] = 1701, - [1858] = 1686, - [1859] = 1750, - [1860] = 1860, - [1861] = 1693, - [1862] = 1687, - [1863] = 1702, - [1864] = 1864, - [1865] = 1728, - [1866] = 1702, + [1845] = 1738, + [1846] = 1790, + [1847] = 1780, + [1848] = 1770, + [1849] = 1767, + [1850] = 1850, + [1851] = 1774, + [1852] = 1715, + [1853] = 1779, + [1854] = 1763, + [1855] = 1762, + [1856] = 1720, + [1857] = 1751, + [1858] = 1727, + [1859] = 1728, + [1860] = 1731, + [1861] = 1747, + [1862] = 1761, + [1863] = 1863, + [1864] = 1744, + [1865] = 1730, + [1866] = 1866, [1867] = 1867, [1868] = 1868, - [1869] = 1750, - [1870] = 1685, - [1871] = 1871, - [1872] = 1709, - [1873] = 1743, - [1874] = 1683, - [1875] = 1704, - [1876] = 1680, - [1877] = 1706, - [1878] = 1729, - [1879] = 1719, - [1880] = 1716, - [1881] = 1701, - [1882] = 1864, - [1883] = 1883, - [1884] = 1699, - [1885] = 1864, - [1886] = 1698, - [1887] = 1728, - [1888] = 1691, - [1889] = 1889, - [1890] = 1698, - [1891] = 1683, - [1892] = 1739, - [1893] = 1704, - [1894] = 1750, - [1895] = 1706, - [1896] = 1687, - [1897] = 1684, - [1898] = 1716, - [1899] = 1677, - [1900] = 1728, - [1901] = 1741, - [1902] = 1699, - [1903] = 1864, - [1904] = 1742, + [1869] = 1790, + [1870] = 757, + [1871] = 1776, + [1872] = 1716, + [1873] = 1756, + [1874] = 1722, + [1875] = 1753, + [1876] = 1729, + [1877] = 1731, + [1878] = 1732, + [1879] = 1720, + [1880] = 1718, + [1881] = 1729, + [1882] = 756, + [1883] = 1776, + [1884] = 1722, + [1885] = 1733, + [1886] = 1745, + [1887] = 1767, + [1888] = 1742, + [1889] = 1774, + [1890] = 1734, + [1891] = 1779, + [1892] = 1892, + [1893] = 1770, + [1894] = 1716, + [1895] = 1895, + [1896] = 1727, + [1897] = 1728, + [1898] = 1735, + [1899] = 1717, + [1900] = 1717, + [1901] = 1730, + [1902] = 1902, + [1903] = 1903, + [1904] = 1754, [1905] = 1905, - [1906] = 1719, - [1907] = 1701, - [1908] = 1704, - [1909] = 1909, - [1910] = 1706, - [1911] = 1911, + [1906] = 1906, + [1907] = 1907, + [1908] = 1779, + [1909] = 1745, + [1910] = 1727, + [1911] = 1718, [1912] = 1727, - [1913] = 1716, - [1914] = 1762, - [1915] = 1721, + [1913] = 1727, + [1914] = 1727, + [1915] = 1720, [1916] = 1916, - [1917] = 1917, - [1918] = 1864, - [1919] = 1804, - [1920] = 1920, - [1921] = 1916, - [1922] = 1804, - [1923] = 1682, - [1924] = 1709, - [1925] = 1691, - [1926] = 1916, - [1927] = 1677, + [1917] = 1735, + [1918] = 1718, + [1919] = 1919, + [1920] = 1776, + [1921] = 1774, + [1922] = 1922, + [1923] = 1763, + [1924] = 1754, + [1925] = 1844, + [1926] = 1926, + [1927] = 1755, [1928] = 1928, - [1929] = 1709, - [1930] = 1721, - [1931] = 1931, - [1932] = 1742, - [1933] = 1709, - [1934] = 1744, - [1935] = 1916, - [1936] = 1916, - [1937] = 1916, + [1929] = 1732, + [1930] = 1767, + [1931] = 1722, + [1932] = 1780, + [1933] = 1799, + [1934] = 1934, + [1935] = 1935, + [1936] = 1766, + [1937] = 1937, + [1938] = 1769, + [1939] = 1939, + [1940] = 1738, + [1941] = 1780, + [1942] = 1715, + [1943] = 1790, + [1944] = 1761, + [1945] = 1945, + [1946] = 1844, + [1947] = 1947, + [1948] = 1729, + [1949] = 1715, + [1950] = 1762, + [1951] = 1951, + [1952] = 1799, + [1953] = 1734, + [1954] = 1766, + [1955] = 1770, + [1956] = 1769, + [1957] = 1957, + [1958] = 1958, + [1959] = 1780, + [1960] = 1960, + [1961] = 1961, + [1962] = 1779, + [1963] = 1774, + [1964] = 1844, + [1965] = 1751, + [1966] = 1767, + [1967] = 1762, + [1968] = 1751, + [1969] = 1766, + [1970] = 1747, + [1971] = 1769, + [1972] = 1744, + [1973] = 1747, + [1974] = 1780, + [1975] = 1771, + [1976] = 1772, + [1977] = 1750, + [1978] = 1744, + [1979] = 1844, + [1980] = 1764, + [1981] = 1981, + [1982] = 1796, + [1983] = 1983, + [1984] = 1763, + [1985] = 1799, + [1986] = 1716, + [1987] = 1796, + [1988] = 1733, + [1989] = 1776, + [1990] = 1799, + [1991] = 1728, + [1992] = 1731, + [1993] = 1738, + [1994] = 1799, + [1995] = 1727, + [1996] = 1796, + [1997] = 1796, + [1998] = 1796, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -6352,832 +6405,6 @@ static inline bool sym_identifier_character_set_2(int32_t c) { } static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 43642 - ? (c < 4206 - ? (c < 2730 - ? (c < 1994 - ? (c < 910 - ? (c < 736 - ? (c < 186 - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 186 || (c < 248 - ? (c < 216 - ? (c >= 192 && c <= 214) - : c <= 246) - : (c <= 705 || (c >= 710 && c <= 721))))) - : (c <= 740 || (c < 891 - ? (c < 880 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c >= 886 && c <= 887))) - : (c <= 893 || (c < 904 - ? (c < 902 - ? c == 895 - : c <= 902) - : (c <= 906 || c == 908)))))) - : (c <= 929 || (c < 1649 - ? (c < 1376 - ? (c < 1162 - ? (c < 1015 - ? (c >= 931 && c <= 1013) - : c <= 1153) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1568 - ? (c < 1519 - ? (c >= 1488 && c <= 1514) - : c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))))) - : (c <= 1747 || (c < 1791 - ? (c < 1774 - ? (c < 1765 - ? c == 1749 - : c <= 1766) - : (c <= 1775 || (c >= 1786 && c <= 1788))) - : (c <= 1791 || (c < 1869 - ? (c < 1810 - ? c == 1808 - : c <= 1839) - : (c <= 1957 || c == 1969)))))))) - : (c <= 2026 || (c < 2482 - ? (c < 2208 - ? (c < 2088 - ? (c < 2048 - ? (c < 2042 - ? (c >= 2036 && c <= 2037) - : c <= 2042) - : (c <= 2069 || (c < 2084 - ? c == 2074 - : c <= 2084))) - : (c <= 2088 || (c < 2160 - ? (c < 2144 - ? (c >= 2112 && c <= 2136) - : c <= 2154) - : (c <= 2183 || (c >= 2185 && c <= 2190))))) - : (c <= 2249 || (c < 2417 - ? (c < 2384 - ? (c < 2365 - ? (c >= 2308 && c <= 2361) - : c <= 2365) - : (c <= 2384 || (c >= 2392 && c <= 2401))) - : (c <= 2432 || (c < 2451 - ? (c < 2447 - ? (c >= 2437 && c <= 2444) - : c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))))))) - : (c <= 2482 || (c < 2602 - ? (c < 2544 - ? (c < 2510 - ? (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493) - : (c <= 2510 || (c < 2527 - ? (c >= 2524 && c <= 2525) - : c <= 2529))) - : (c <= 2545 || (c < 2575 - ? (c < 2565 - ? c == 2556 - : c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2654 - ? (c < 2616 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : c <= 2614) - : (c <= 2617 || (c >= 2649 && c <= 2652))) - : (c <= 2654 || (c < 2703 - ? (c < 2693 - ? (c >= 2674 && c <= 2676) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3261 - ? (c < 2969 - ? (c < 2866 - ? (c < 2809 - ? (c < 2749 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2749 || (c < 2784 - ? c == 2768 - : c <= 2785))) - : (c <= 2809 || (c < 2835 - ? (c < 2831 - ? (c >= 2821 && c <= 2828) - : c <= 2832) - : (c <= 2856 || (c >= 2858 && c <= 2864))))) - : (c <= 2867 || (c < 2929 - ? (c < 2908 - ? (c < 2877 - ? (c >= 2869 && c <= 2873) - : c <= 2877) - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2958 - ? (c < 2949 - ? c == 2947 - : c <= 2954) - : (c <= 2960 || (c >= 2962 && c <= 2965))))))) - : (c <= 2970 || (c < 3133 - ? (c < 3024 - ? (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))) - : (c <= 3024 || (c < 3090 - ? (c < 3086 - ? (c >= 3077 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))))) - : (c <= 3133 || (c < 3205 - ? (c < 3168 - ? (c < 3165 - ? (c >= 3160 && c <= 3162) - : c <= 3165) - : (c <= 3169 || c == 3200)) - : (c <= 3212 || (c < 3242 - ? (c < 3218 - ? (c >= 3214 && c <= 3216) - : c <= 3240) - : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) - : (c <= 3261 || (c < 3716 - ? (c < 3450 - ? (c < 3346 - ? (c < 3313 - ? (c < 3296 - ? (c >= 3293 && c <= 3294) - : c <= 3297) - : (c <= 3314 || (c < 3342 - ? (c >= 3332 && c <= 3340) - : c <= 3344))) - : (c <= 3386 || (c < 3412 - ? (c < 3406 - ? c == 3389 - : c <= 3406) - : (c <= 3414 || (c >= 3423 && c <= 3425))))) - : (c <= 3455 || (c < 3520 - ? (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)) - : (c <= 3526 || (c < 3648 - ? (c < 3634 - ? (c >= 3585 && c <= 3632) - : c <= 3634) - : (c <= 3654 || (c >= 3713 && c <= 3714))))))) - : (c <= 3716 || (c < 3840 - ? (c < 3762 - ? (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c >= 3751 && c <= 3760))) - : (c <= 3762 || (c < 3782 - ? (c < 3776 - ? c == 3773 - : c <= 3780) - : (c <= 3782 || (c >= 3804 && c <= 3807))))) - : (c <= 3840 || (c < 4159 - ? (c < 3976 - ? (c < 3913 - ? (c >= 3904 && c <= 3911) - : c <= 3948) - : (c <= 3980 || (c >= 4096 && c <= 4138))) - : (c <= 4159 || (c < 4193 - ? (c < 4186 - ? (c >= 4176 && c <= 4181) - : c <= 4189) - : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) - : (c <= 4208 || (c < 8178 - ? (c < 6320 - ? (c < 4882 - ? (c < 4698 - ? (c < 4304 - ? (c < 4256 - ? (c < 4238 - ? (c >= 4213 && c <= 4225) - : c <= 4238) - : (c <= 4293 || (c < 4301 - ? c == 4295 - : c <= 4301))) - : (c <= 4346 || (c < 4688 - ? (c < 4682 - ? (c >= 4348 && c <= 4680) - : c <= 4685) - : (c <= 4694 || c == 4696)))) - : (c <= 4701 || (c < 4792 - ? (c < 4752 - ? (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749) - : (c <= 4784 || (c >= 4786 && c <= 4789))) - : (c <= 4798 || (c < 4808 - ? (c < 4802 - ? c == 4800 - : c <= 4805) - : (c <= 4822 || (c >= 4824 && c <= 4880))))))) - : (c <= 4885 || (c < 5919 - ? (c < 5743 - ? (c < 5024 - ? (c < 4992 - ? (c >= 4888 && c <= 4954) - : c <= 5007) - : (c <= 5109 || (c < 5121 - ? (c >= 5112 && c <= 5117) - : c <= 5740))) - : (c <= 5759 || (c < 5870 - ? (c < 5792 - ? (c >= 5761 && c <= 5786) - : c <= 5866) - : (c <= 5880 || (c >= 5888 && c <= 5905))))) - : (c <= 5937 || (c < 6103 - ? (c < 5998 - ? (c < 5984 - ? (c >= 5952 && c <= 5969) - : c <= 5996) - : (c <= 6000 || (c >= 6016 && c <= 6067))) - : (c <= 6103 || (c < 6272 - ? (c < 6176 - ? c == 6108 - : c <= 6264) - : (c <= 6312 || c == 6314)))))))) - : (c <= 6389 || (c < 7406 - ? (c < 7043 - ? (c < 6656 - ? (c < 6512 - ? (c < 6480 - ? (c >= 6400 && c <= 6430) - : c <= 6509) - : (c <= 6516 || (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601))) - : (c <= 6678 || (c < 6917 - ? (c < 6823 - ? (c >= 6688 && c <= 6740) - : c <= 6823) - : (c <= 6963 || (c >= 6981 && c <= 6988))))) - : (c <= 7072 || (c < 7258 - ? (c < 7168 - ? (c < 7098 - ? (c >= 7086 && c <= 7087) - : c <= 7141) - : (c <= 7203 || (c >= 7245 && c <= 7247))) - : (c <= 7293 || (c < 7357 - ? (c < 7312 - ? (c >= 7296 && c <= 7304) - : c <= 7354) - : (c <= 7359 || (c >= 7401 && c <= 7404))))))) - : (c <= 7411 || (c < 8029 - ? (c < 7968 - ? (c < 7424 - ? (c < 7418 - ? (c >= 7413 && c <= 7414) - : c <= 7418) - : (c <= 7615 || (c < 7960 - ? (c >= 7680 && c <= 7957) - : c <= 7965))) - : (c <= 8005 || (c < 8025 - ? (c < 8016 - ? (c >= 8008 && c <= 8013) - : c <= 8023) - : (c <= 8025 || c == 8027)))) - : (c <= 8029 || (c < 8130 - ? (c < 8118 - ? (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116) - : (c <= 8124 || c == 8126)) - : (c <= 8132 || (c < 8150 - ? (c < 8144 - ? (c >= 8134 && c <= 8140) - : c <= 8147) - : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) - : (c <= 8180 || (c < 12540 - ? (c < 11520 - ? (c < 8486 - ? (c < 8455 - ? (c < 8319 - ? (c < 8305 - ? (c >= 8182 && c <= 8188) - : c <= 8305) - : (c <= 8319 || (c < 8450 - ? (c >= 8336 && c <= 8348) - : c <= 8450))) - : (c <= 8455 || (c < 8472 - ? (c < 8469 - ? (c >= 8458 && c <= 8467) - : c <= 8469) - : (c <= 8477 || c == 8484)))) - : (c <= 8486 || (c < 8526 - ? (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))) - : (c <= 8526 || (c < 11499 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11492) - : (c <= 11502 || (c >= 11506 && c <= 11507))))))) - : (c <= 11557 || (c < 11720 - ? (c < 11680 - ? (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11648 - ? c == 11631 - : c <= 11670))) - : (c <= 11686 || (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c >= 11712 && c <= 11718))))) - : (c <= 11726 || (c < 12337 - ? (c < 12293 - ? (c < 11736 - ? (c >= 11728 && c <= 11734) - : c <= 11742) - : (c <= 12295 || (c >= 12321 && c <= 12329))) - : (c <= 12341 || (c < 12445 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) - : (c <= 12543 || (c < 43011 - ? (c < 42560 - ? (c < 19968 - ? (c < 12704 - ? (c < 12593 - ? (c >= 12549 && c <= 12591) - : c <= 12686) - : (c <= 12735 || (c < 13312 - ? (c >= 12784 && c <= 12799) - : c <= 19903))) - : (c <= 42124 || (c < 42512 - ? (c < 42240 - ? (c >= 42192 && c <= 42237) - : c <= 42508) - : (c <= 42527 || (c >= 42538 && c <= 42539))))) - : (c <= 42606 || (c < 42891 - ? (c < 42775 - ? (c < 42656 - ? (c >= 42623 && c <= 42653) - : c <= 42735) - : (c <= 42783 || (c >= 42786 && c <= 42888))) - : (c <= 42954 || (c < 42965 - ? (c < 42963 - ? (c >= 42960 && c <= 42961) - : c <= 42963) - : (c <= 42969 || (c >= 42994 && c <= 43009))))))) - : (c <= 43013 || (c < 43360 - ? (c < 43250 - ? (c < 43072 - ? (c < 43020 - ? (c >= 43015 && c <= 43018) - : c <= 43042) - : (c <= 43123 || (c >= 43138 && c <= 43187))) - : (c <= 43255 || (c < 43274 - ? (c < 43261 - ? c == 43259 - : c <= 43262) - : (c <= 43301 || (c >= 43312 && c <= 43334))))) - : (c <= 43388 || (c < 43514 - ? (c < 43488 - ? (c < 43471 - ? (c >= 43396 && c <= 43442) - : c <= 43471) - : (c <= 43492 || (c >= 43494 && c <= 43503))) - : (c <= 43518 || (c < 43588 - ? (c < 43584 - ? (c >= 43520 && c <= 43560) - : c <= 43586) - : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) - : (c <= 43642 || (c < 71168 - ? (c < 67392 - ? (c < 65147 - ? (c < 63744 - ? (c < 43785 - ? (c < 43714 - ? (c < 43701 - ? (c < 43697 - ? (c >= 43646 && c <= 43695) - : c <= 43697) - : (c <= 43702 || (c < 43712 - ? (c >= 43705 && c <= 43709) - : c <= 43712))) - : (c <= 43714 || (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43754) - : (c <= 43764 || (c >= 43777 && c <= 43782))))) - : (c <= 43790 || (c < 43868 - ? (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c >= 43824 && c <= 43866))) - : (c <= 43881 || (c < 55216 - ? (c < 44032 - ? (c >= 43888 && c <= 44002) - : c <= 55203) - : (c <= 55238 || (c >= 55243 && c <= 55291))))))) - : (c <= 64109 || (c < 64326 - ? (c < 64298 - ? (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64287 - ? c == 64285 - : c <= 64296))) - : (c <= 64310 || (c < 64320 - ? (c < 64318 - ? (c >= 64312 && c <= 64316) - : c <= 64318) - : (c <= 64321 || (c >= 64323 && c <= 64324))))) - : (c <= 64433 || (c < 65008 - ? (c < 64848 - ? (c < 64612 - ? (c >= 64467 && c <= 64605) - : c <= 64829) - : (c <= 64911 || (c >= 64914 && c <= 64967))) - : (c <= 65017 || (c < 65143 - ? (c < 65139 - ? c == 65137 - : c <= 65139) - : (c <= 65143 || c == 65145)))))))) - : (c <= 65147 || (c < 66304 - ? (c < 65536 - ? (c < 65440 - ? (c < 65313 - ? (c < 65151 - ? c == 65149 - : c <= 65276) - : (c <= 65338 || (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65437))) - : (c <= 65470 || (c < 65490 - ? (c < 65482 - ? (c >= 65474 && c <= 65479) - : c <= 65487) - : (c <= 65495 || (c >= 65498 && c <= 65500))))) - : (c <= 65547 || (c < 65616 - ? (c < 65596 - ? (c < 65576 - ? (c >= 65549 && c <= 65574) - : c <= 65594) - : (c <= 65597 || (c >= 65599 && c <= 65613))) - : (c <= 65629 || (c < 66176 - ? (c < 65856 - ? (c >= 65664 && c <= 65786) - : c <= 65908) - : (c <= 66204 || (c >= 66208 && c <= 66256))))))) - : (c <= 66335 || (c < 66864 - ? (c < 66513 - ? (c < 66432 - ? (c < 66384 - ? (c >= 66349 && c <= 66378) - : c <= 66421) - : (c <= 66461 || (c < 66504 - ? (c >= 66464 && c <= 66499) - : c <= 66511))) - : (c <= 66517 || (c < 66776 - ? (c < 66736 - ? (c >= 66560 && c <= 66717) - : c <= 66771) - : (c <= 66811 || (c >= 66816 && c <= 66855))))) - : (c <= 66915 || (c < 66967 - ? (c < 66956 - ? (c < 66940 - ? (c >= 66928 && c <= 66938) - : c <= 66954) - : (c <= 66962 || (c >= 66964 && c <= 66965))) - : (c <= 66977 || (c < 67003 - ? (c < 66995 - ? (c >= 66979 && c <= 66993) - : c <= 67001) - : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) - : (c <= 67413 || (c < 69600 - ? (c < 68117 - ? (c < 67680 - ? (c < 67592 - ? (c < 67463 - ? (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461) - : (c <= 67504 || (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589))) - : (c <= 67592 || (c < 67644 - ? (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640) - : (c <= 67644 || (c >= 67647 && c <= 67669))))) - : (c <= 67702 || (c < 67872 - ? (c < 67828 - ? (c < 67808 - ? (c >= 67712 && c <= 67742) - : c <= 67826) - : (c <= 67829 || (c >= 67840 && c <= 67861))) - : (c <= 67897 || (c < 68096 - ? (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031) - : (c <= 68096 || (c >= 68112 && c <= 68115))))))) - : (c <= 68119 || (c < 68736 - ? (c < 68352 - ? (c < 68224 - ? (c < 68192 - ? (c >= 68121 && c <= 68149) - : c <= 68220) - : (c <= 68252 || (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68324))) - : (c <= 68405 || (c < 68480 - ? (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466) - : (c <= 68497 || (c >= 68608 && c <= 68680))))) - : (c <= 68786 || (c < 69376 - ? (c < 69248 - ? (c < 68864 - ? (c >= 68800 && c <= 68850) - : c <= 68899) - : (c <= 69289 || (c >= 69296 && c <= 69297))) - : (c <= 69404 || (c < 69488 - ? (c < 69424 - ? c == 69415 - : c <= 69445) - : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) - : (c <= 69622 || (c < 70287 - ? (c < 70019 - ? (c < 69891 - ? (c < 69749 - ? (c < 69745 - ? (c >= 69635 && c <= 69687) - : c <= 69746) - : (c <= 69749 || (c < 69840 - ? (c >= 69763 && c <= 69807) - : c <= 69864))) - : (c <= 69926 || (c < 69968 - ? (c < 69959 - ? c == 69956 - : c <= 69959) - : (c <= 70002 || c == 70006)))) - : (c <= 70066 || (c < 70163 - ? (c < 70108 - ? (c < 70106 - ? (c >= 70081 && c <= 70084) - : c <= 70106) - : (c <= 70108 || (c >= 70144 && c <= 70161))) - : (c <= 70187 || (c < 70280 - ? (c < 70272 - ? (c >= 70207 && c <= 70208) - : c <= 70278) - : (c <= 70280 || (c >= 70282 && c <= 70285))))))) - : (c <= 70301 || (c < 70480 - ? (c < 70419 - ? (c < 70405 - ? (c < 70320 - ? (c >= 70303 && c <= 70312) - : c <= 70366) - : (c <= 70412 || (c >= 70415 && c <= 70416))) - : (c <= 70440 || (c < 70453 - ? (c < 70450 - ? (c >= 70442 && c <= 70448) - : c <= 70451) - : (c <= 70457 || c == 70461)))) - : (c <= 70480 || (c < 70784 - ? (c < 70727 - ? (c < 70656 - ? (c >= 70493 && c <= 70497) - : c <= 70708) - : (c <= 70730 || (c >= 70751 && c <= 70753))) - : (c <= 70831 || (c < 71040 - ? (c < 70855 - ? (c >= 70852 && c <= 70853) - : c <= 70855) - : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) - : (c <= 71215 || (c < 119973 - ? (c < 73648 - ? (c < 72250 - ? (c < 71957 - ? (c < 71680 - ? (c < 71352 - ? (c < 71296 - ? c == 71236 - : c <= 71338) - : (c <= 71352 || (c < 71488 - ? (c >= 71424 && c <= 71450) - : c <= 71494))) - : (c <= 71723 || (c < 71945 - ? (c < 71935 - ? (c >= 71840 && c <= 71903) - : c <= 71942) - : (c <= 71945 || (c >= 71948 && c <= 71955))))) - : (c <= 71958 || (c < 72106 - ? (c < 72001 - ? (c < 71999 - ? (c >= 71960 && c <= 71983) - : c <= 71999) - : (c <= 72001 || (c >= 72096 && c <= 72103))) - : (c <= 72144 || (c < 72192 - ? (c < 72163 - ? c == 72161 - : c <= 72163) - : (c <= 72192 || (c >= 72203 && c <= 72242))))))) - : (c <= 72250 || (c < 72971 - ? (c < 72714 - ? (c < 72349 - ? (c < 72284 - ? c == 72272 - : c <= 72329) - : (c <= 72349 || (c < 72704 - ? (c >= 72368 && c <= 72440) - : c <= 72712))) - : (c <= 72750 || (c < 72960 - ? (c < 72818 - ? c == 72768 - : c <= 72847) - : (c <= 72966 || (c >= 72968 && c <= 72969))))) - : (c <= 73008 || (c < 73112 - ? (c < 73063 - ? (c < 73056 - ? c == 73030 - : c <= 73061) - : (c <= 73064 || (c >= 73066 && c <= 73097))) - : (c <= 73112 || (c < 73476 - ? (c < 73474 - ? (c >= 73440 && c <= 73458) - : c <= 73474) - : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) - : (c <= 73648 || (c < 94179 - ? (c < 92880 - ? (c < 78913 - ? (c < 74880 - ? (c < 74752 - ? (c >= 73728 && c <= 74649) - : c <= 74862) - : (c <= 75075 || (c < 77824 - ? (c >= 77712 && c <= 77808) - : c <= 78895))) - : (c <= 78918 || (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c >= 92784 && c <= 92862))))) - : (c <= 92909 || (c < 93760 - ? (c < 93027 - ? (c < 92992 - ? (c >= 92928 && c <= 92975) - : c <= 92995) - : (c <= 93047 || (c >= 93053 && c <= 93071))) - : (c <= 93823 || (c < 94099 - ? (c < 94032 - ? (c >= 93952 && c <= 94026) - : c <= 94032) - : (c <= 94111 || (c >= 94176 && c <= 94177))))))) - : (c <= 94179 || (c < 110948 - ? (c < 110589 - ? (c < 101632 - ? (c < 100352 - ? (c >= 94208 && c <= 100343) - : c <= 101589) - : (c <= 101640 || (c < 110581 - ? (c >= 110576 && c <= 110579) - : c <= 110587))) - : (c <= 110590 || (c < 110928 - ? (c < 110898 - ? (c >= 110592 && c <= 110882) - : c <= 110898) - : (c <= 110930 || c == 110933)))) - : (c <= 110951 || (c < 113808 - ? (c < 113776 - ? (c < 113664 - ? (c >= 110960 && c <= 111355) - : c <= 113770) - : (c <= 113788 || (c >= 113792 && c <= 113800))) - : (c <= 113817 || (c < 119966 - ? (c < 119894 - ? (c >= 119808 && c <= 119892) - : c <= 119964) - : (c <= 119967 || c == 119970)))))))))) - : (c <= 119974 || (c < 126464 - ? (c < 120656 - ? (c < 120128 - ? (c < 120071 - ? (c < 119995 - ? (c < 119982 - ? (c >= 119977 && c <= 119980) - : c <= 119993) - : (c <= 119995 || (c < 120005 - ? (c >= 119997 && c <= 120003) - : c <= 120069))) - : (c <= 120074 || (c < 120094 - ? (c < 120086 - ? (c >= 120077 && c <= 120084) - : c <= 120092) - : (c <= 120121 || (c >= 120123 && c <= 120126))))) - : (c <= 120132 || (c < 120514 - ? (c < 120146 - ? (c < 120138 - ? c == 120134 - : c <= 120144) - : (c <= 120485 || (c >= 120488 && c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 123536 - ? (c < 122661 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 122624 - ? (c >= 120772 && c <= 120779) - : c <= 122654))) - : (c <= 122666 || (c < 123191 - ? (c < 123136 - ? (c >= 122928 && c <= 122989) - : c <= 123180) - : (c <= 123197 || c == 123214)))) - : (c <= 123565 || (c < 124909 - ? (c < 124896 - ? (c < 124112 - ? (c >= 123584 && c <= 123627) - : c <= 124139) - : (c <= 124902 || (c >= 124904 && c <= 124907))) - : (c <= 124910 || (c < 125184 - ? (c < 124928 - ? (c >= 124912 && c <= 124926) - : c <= 125124) - : (c <= 125251 || c == 125259)))))))) - : (c <= 126467 || (c < 126561 - ? (c < 126537 - ? (c < 126516 - ? (c < 126500 - ? (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498) - : (c <= 126500 || (c < 126505 - ? c == 126503 - : c <= 126514))) - : (c <= 126519 || (c < 126530 - ? (c < 126523 - ? c == 126521 - : c <= 126523) - : (c <= 126530 || c == 126535)))) - : (c <= 126537 || (c < 126551 - ? (c < 126545 - ? (c < 126541 - ? c == 126539 - : c <= 126543) - : (c <= 126546 || c == 126548)) - : (c <= 126551 || (c < 126557 - ? (c < 126555 - ? c == 126553 - : c <= 126555) - : (c <= 126557 || c == 126559)))))) - : (c <= 126562 || (c < 126629 - ? (c < 126585 - ? (c < 126572 - ? (c < 126567 - ? c == 126564 - : c <= 126570) - : (c <= 126578 || (c >= 126580 && c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 173824 - ? (c < 131072 - ? (c >= 126635 && c <= 126651) - : c <= 173791) - : (c <= 177977 || (c >= 177984 && c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { return (c < 43646 ? (c < 4213 ? (c < 2738 @@ -8001,172 +7228,142 @@ static inline bool sym_identifier_character_set_4(int32_t c) { : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 43785 - ? (c < 3804 - ? (c < 2759 - ? (c < 2048 - ? (c < 1155 +static inline bool sym_identifier_character_set_4(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2730 + ? (c < 1994 + ? (c < 910 ? (c < 736 - ? (c < 183 + ? (c < 186 ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : (c <= 'Z' || c == '_')) + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') : (c <= 'z' || (c < 181 ? c == 170 : c <= 181))) - : (c <= 183 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721))))) - : (c <= 740 || (c < 895 - ? (c < 768 + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 ? (c < 750 ? c == 748 : c <= 750) - : (c <= 884 || (c < 891 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 910 - ? (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908) - : (c <= 929 || (c < 1015 + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 ? (c >= 931 && c <= 1013) - : c <= 1153))))))) - : (c <= 1159 || (c < 1552 - ? (c < 1471 - ? (c < 1369 - ? (c < 1329 - ? (c >= 1162 && c <= 1327) - : c <= 1366) - : (c <= 1369 || (c < 1425 - ? (c >= 1376 && c <= 1416) - : c <= 1469))) - : (c <= 1471 || (c < 1479 - ? (c < 1476 - ? (c >= 1473 && c <= 1474) - : c <= 1477) - : (c <= 1479 || (c < 1519 + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 ? (c >= 1488 && c <= 1514) - : c <= 1522))))) - : (c <= 1562 || (c < 1791 - ? (c < 1749 - ? (c < 1646 - ? (c >= 1568 && c <= 1641) - : c <= 1747) - : (c <= 1756 || (c < 1770 - ? (c >= 1759 && c <= 1768) - : c <= 1788))) - : (c <= 1791 || (c < 1984 - ? (c < 1869 - ? (c >= 1808 && c <= 1866) - : c <= 1969) - : (c <= 2037 || (c < 2045 - ? c == 2042 - : c <= 2045))))))))) - : (c <= 2093 || (c < 2561 - ? (c < 2474 - ? (c < 2275 - ? (c < 2160 + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 ? (c < 2144 - ? (c >= 2112 && c <= 2139) + ? (c >= 2112 && c <= 2136) : c <= 2154) - : (c <= 2183 || (c < 2200 - ? (c >= 2185 && c <= 2190) - : c <= 2273))) - : (c <= 2403 || (c < 2437 - ? (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435) - : (c <= 2444 || (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472))))) - : (c <= 2480 || (c < 2519 - ? (c < 2492 - ? (c < 2486 - ? c == 2482 - : c <= 2489) - : (c <= 2500 || (c < 2507 - ? (c >= 2503 && c <= 2504) - : c <= 2510))) - : (c <= 2519 || (c < 2534 - ? (c < 2527 + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2602 + ? (c < 2544 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c < 2527 ? (c >= 2524 && c <= 2525) - : c <= 2531) - : (c <= 2545 || (c < 2558 + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 ? c == 2556 - : c <= 2558))))))) - : (c <= 2563 || (c < 2641 - ? (c < 2613 - ? (c < 2579 - ? (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576) - : (c <= 2600 || (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611))) - : (c <= 2614 || (c < 2622 - ? (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620) - : (c <= 2626 || (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637))))) - : (c <= 2641 || (c < 2703 - ? (c < 2662 - ? (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654) - : (c <= 2677 || (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701))) - : (c <= 2705 || (c < 2738 - ? (c < 2730 - ? (c >= 2707 && c <= 2728) - : c <= 2736) - : (c <= 2739 || (c < 2748 - ? (c >= 2741 && c <= 2745) - : c <= 2757))))))))))) - : (c <= 2761 || (c < 3200 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 ? (c < 2969 - ? (c < 2876 - ? (c < 2821 - ? (c < 2790 - ? (c < 2768 - ? (c >= 2763 && c <= 2765) - : (c <= 2768 || (c >= 2784 && c <= 2787))) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))) - : (c <= 2828 || (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873))))) - : (c <= 2884 || (c < 2918 - ? (c < 2901 - ? (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893) - : (c <= 2903 || (c < 2911 - ? (c >= 2908 && c <= 2909) - : c <= 2915))) - : (c <= 2927 || (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))))))) - : (c <= 2970 || (c < 3072 - ? (c < 3006 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 ? (c < 2979 ? (c < 2974 ? c == 2972 @@ -8174,7848 +7371,7491 @@ static inline bool sym_identifier_character_set_5(int32_t c) { : (c <= 2980 || (c < 2990 ? (c >= 2984 && c <= 2986) : c <= 3001))) - : (c <= 3010 || (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))))) - : (c <= 3084 || (c < 3146 - ? (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c < 3142 - ? (c >= 3132 && c <= 3140) - : c <= 3144))) - : (c <= 3149 || (c < 3165 - ? (c < 3160 - ? (c >= 3157 && c <= 3158) - : c <= 3162) - : (c <= 3165 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))))))))) - : (c <= 3203 || (c < 3461 - ? (c < 3302 - ? (c < 3260 - ? (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))) - : (c <= 3268 || (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 ? (c >= 3293 && c <= 3294) - : c <= 3299))))) - : (c <= 3311 || (c < 3402 - ? (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3315) - : c <= 3340) - : (c <= 3344 || (c < 3398 - ? (c >= 3346 && c <= 3396) - : c <= 3400))) - : (c <= 3406 || (c < 3430 - ? (c < 3423 - ? (c >= 3412 && c <= 3415) - : c <= 3427) - : (c <= 3439 || (c < 3457 - ? (c >= 3450 && c <= 3455) - : c <= 3459))))))) - : (c <= 3478 || (c < 3648 - ? (c < 3535 - ? (c < 3517 - ? (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515) - : (c <= 3517 || (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530))) - : (c <= 3540 || (c < 3558 - ? (c < 3544 - ? c == 3542 - : c <= 3551) - : (c <= 3567 || (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642))))) - : (c <= 3662 || (c < 3749 - ? (c < 3716 - ? (c < 3713 - ? (c >= 3664 && c <= 3673) - : c <= 3714) - : (c <= 3716 || (c < 3724 + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 ? (c >= 3718 && c <= 3722) - : c <= 3747))) - : (c <= 3749 || (c < 3782 + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 ? (c < 3776 - ? (c >= 3751 && c <= 3773) + ? c == 3773 : c <= 3780) - : (c <= 3782 || (c < 3792 - ? (c >= 3784 && c <= 3790) - : c <= 3801))))))))))))) - : (c <= 3807 || (c < 8064 - ? (c < 5998 - ? (c < 4746 - ? (c < 4096 - ? (c < 3902 - ? (c < 3893 - ? (c < 3864 - ? c == 3840 - : (c <= 3865 || (c >= 3872 && c <= 3881))) - : (c <= 3893 || (c < 3897 - ? c == 3895 - : c <= 3897))) - : (c <= 3911 || (c < 3974 - ? (c < 3953 - ? (c >= 3913 && c <= 3948) - : c <= 3972) - : (c <= 3991 || (c < 4038 - ? (c >= 3993 && c <= 4028) - : c <= 4038))))) - : (c <= 4169 || (c < 4348 - ? (c < 4295 - ? (c < 4256 - ? (c >= 4176 && c <= 4253) - : c <= 4293) - : (c <= 4295 || (c < 4304 - ? c == 4301 - : c <= 4346))) - : (c <= 4680 || (c < 4696 - ? (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694) - : (c <= 4696 || (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744))))))) - : (c <= 4749 || (c < 4992 - ? (c < 4808 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || (c < 4802 + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 ? c == 4800 - : c <= 4805))) - : (c <= 4822 || (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c < 4969 - ? (c >= 4957 && c <= 4959) - : c <= 4977))))) - : (c <= 5007 || (c < 5792 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5919 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5909) - : (c <= 5940 || (c < 5984 - ? (c >= 5952 && c <= 5971) - : c <= 5996))))))))) - : (c <= 6000 || (c < 6823 - ? (c < 6432 - ? (c < 6155 - ? (c < 6103 - ? (c < 6016 - ? (c >= 6002 && c <= 6003) - : c <= 6099) - : (c <= 6103 || (c < 6112 - ? (c >= 6108 && c <= 6109) - : c <= 6121))) - : (c <= 6157 || (c < 6272 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 ? (c < 6176 - ? (c >= 6159 && c <= 6169) + ? c == 6108 : c <= 6264) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430))))) - : (c <= 6443 || (c < 6608 + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 ? (c < 6512 - ? (c < 6470 - ? (c >= 6448 && c <= 6459) + ? (c < 6480 + ? (c >= 6400 && c <= 6430) : c <= 6509) : (c <= 6516 || (c < 6576 ? (c >= 6528 && c <= 6571) : c <= 6601))) - : (c <= 6618 || (c < 6752 - ? (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750) - : (c <= 6780 || (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809))))))) - : (c <= 6823 || (c < 7357 - ? (c < 7040 - ? (c < 6912 - ? (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6862) - : (c <= 6988 || (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027))) - : (c <= 7155 || (c < 7245 - ? (c < 7232 - ? (c >= 7168 && c <= 7223) - : c <= 7241) - : (c <= 7293 || (c < 7312 + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 ? (c >= 7296 && c <= 7304) - : c <= 7354))))) - : (c <= 7359 || (c < 8008 + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 ? (c < 7424 - ? (c < 7380 - ? (c >= 7376 && c <= 7378) + ? (c < 7418 + ? (c >= 7413 && c <= 7414) : c <= 7418) - : (c <= 7957 || (c < 7968 - ? (c >= 7960 && c <= 7965) - : c <= 8005))) - : (c <= 8013 || (c < 8027 - ? (c < 8025 - ? (c >= 8016 && c <= 8023) - : c <= 8025) - : (c <= 8027 || (c < 8031 - ? c == 8029 - : c <= 8061))))))))))) - : (c <= 8116 || (c < 12321 - ? (c < 8488 - ? (c < 8319 - ? (c < 8160 - ? (c < 8134 - ? (c < 8126 - ? (c >= 8118 && c <= 8124) - : (c <= 8126 || (c >= 8130 && c <= 8132))) - : (c <= 8140 || (c < 8150 - ? (c >= 8144 && c <= 8147) - : c <= 8155))) - : (c <= 8172 || (c < 8255 - ? (c < 8182 - ? (c >= 8178 && c <= 8180) - : c <= 8188) - : (c <= 8256 || (c < 8305 - ? c == 8276 - : c <= 8305))))) - : (c <= 8319 || (c < 8455 - ? (c < 8417 - ? (c < 8400 + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 ? (c >= 8336 && c <= 8348) - : c <= 8412) - : (c <= 8417 || (c < 8450 - ? (c >= 8421 && c <= 8432) : c <= 8450))) : (c <= 8455 || (c < 8472 ? (c < 8469 ? (c >= 8458 && c <= 8467) : c <= 8469) - : (c <= 8477 || (c < 8486 - ? c == 8484 - : c <= 8486))))))) - : (c <= 8488 || (c < 11631 - ? (c < 11264 - ? (c < 8517 - ? (c < 8508 - ? (c >= 8490 && c <= 8505) - : c <= 8511) - : (c <= 8521 || (c < 8544 - ? c == 8526 - : c <= 8584))) - : (c <= 11492 || (c < 11559 - ? (c < 11520 - ? (c >= 11499 && c <= 11507) - : c <= 11557) - : (c <= 11559 || (c < 11568 - ? c == 11565 - : c <= 11623))))) - : (c <= 11631 || (c < 11712 - ? (c < 11688 - ? (c < 11680 - ? (c >= 11647 && c <= 11670) - : c <= 11686) - : (c <= 11694 || (c < 11704 - ? (c >= 11696 && c <= 11702) - : c <= 11710))) - : (c <= 11718 || (c < 11736 - ? (c < 11728 - ? (c >= 11720 && c <= 11726) - : c <= 11734) - : (c <= 11742 || (c < 12293 - ? (c >= 11744 && c <= 11775) - : c <= 12295))))))))) - : (c <= 12335 || (c < 42963 - ? (c < 13312 - ? (c < 12449 - ? (c < 12353 - ? (c < 12344 - ? (c >= 12337 && c <= 12341) - : c <= 12348) - : (c <= 12438 || (c < 12445 - ? (c >= 12441 && c <= 12442) - : c <= 12447))) - : (c <= 12538 || (c < 12593 - ? (c < 12549 - ? (c >= 12540 && c <= 12543) - : c <= 12591) - : (c <= 12686 || (c < 12784 - ? (c >= 12704 && c <= 12735) - : c <= 12799))))) - : (c <= 19903 || (c < 42612 - ? (c < 42240 - ? (c < 42192 - ? (c >= 19968 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607))) - : (c <= 42621 || (c < 42786 - ? (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783) - : (c <= 42888 || (c < 42960 - ? (c >= 42891 && c <= 42954) - : c <= 42961))))))) - : (c <= 42963 || (c < 43392 - ? (c < 43216 - ? (c < 43052 - ? (c < 42994 - ? (c >= 42965 && c <= 42969) - : c <= 43047) - : (c <= 43052 || (c < 43136 - ? (c >= 43072 && c <= 43123) - : c <= 43205))) - : (c <= 43225 || (c < 43261 - ? (c < 43259 - ? (c >= 43232 && c <= 43255) - : c <= 43259) - : (c <= 43309 || (c < 43360 - ? (c >= 43312 && c <= 43347) - : c <= 43388))))) - : (c <= 43456 || (c < 43616 - ? (c < 43520 - ? (c < 43488 - ? (c >= 43471 && c <= 43481) - : c <= 43518) - : (c <= 43574 || (c < 43600 - ? (c >= 43584 && c <= 43597) - : c <= 43609))) - : (c <= 43638 || (c < 43744 - ? (c < 43739 - ? (c >= 43642 && c <= 43714) - : c <= 43741) - : (c <= 43759 || (c < 43777 - ? (c >= 43762 && c <= 43766) - : c <= 43782))))))))))))))) - : (c <= 43790 || (c < 71960 - ? (c < 67840 - ? (c < 65549 - ? (c < 64848 - ? (c < 64112 - ? (c < 44012 - ? (c < 43824 + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 ? (c < 43808 ? (c >= 43793 && c <= 43798) - : (c <= 43814 || (c >= 43816 && c <= 43822))) - : (c <= 43866 || (c < 43888 - ? (c >= 43868 && c <= 43881) - : c <= 44010))) - : (c <= 44013 || (c < 55216 + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 ? (c < 44032 - ? (c >= 44016 && c <= 44025) + ? (c >= 43888 && c <= 44002) : c <= 55203) - : (c <= 55238 || (c < 63744 - ? (c >= 55243 && c <= 55291) - : c <= 64109))))) - : (c <= 64217 || (c < 64318 - ? (c < 64285 - ? (c < 64275 - ? (c >= 64256 && c <= 64262) - : c <= 64279) - : (c <= 64296 || (c < 64312 - ? (c >= 64298 && c <= 64310) - : c <= 64316))) - : (c <= 64318 || (c < 64326 - ? (c < 64323 - ? (c >= 64320 && c <= 64321) - : c <= 64324) - : (c <= 64433 || (c < 64612 + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 ? (c >= 64467 && c <= 64605) - : c <= 64829))))))) - : (c <= 64911 || (c < 65149 - ? (c < 65101 - ? (c < 65024 - ? (c < 65008 - ? (c >= 64914 && c <= 64967) - : c <= 65017) - : (c <= 65039 || (c < 65075 - ? (c >= 65056 && c <= 65071) - : c <= 65076))) - : (c <= 65103 || (c < 65143 + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 ? (c < 65139 ? c == 65137 : c <= 65139) - : (c <= 65143 || (c < 65147 - ? c == 65145 - : c <= 65147))))) - : (c <= 65149 || (c < 65382 + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 ? (c < 65313 - ? (c < 65296 - ? (c >= 65151 && c <= 65276) - : c <= 65305) - : (c <= 65338 || (c < 65345 - ? c == 65343 - : c <= 65370))) + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) : (c <= 65470 || (c < 65490 ? (c < 65482 ? (c >= 65474 && c <= 65479) : c <= 65487) - : (c <= 65495 || (c < 65536 - ? (c >= 65498 && c <= 65500) - : c <= 65547))))))))) - : (c <= 65574 || (c < 66928 - ? (c < 66349 - ? (c < 65856 - ? (c < 65599 - ? (c < 65596 - ? (c >= 65576 && c <= 65594) - : c <= 65597) - : (c <= 65613 || (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786))) - : (c <= 65908 || (c < 66208 - ? (c < 66176 - ? c == 66045 - : c <= 66204) - : (c <= 66256 || (c < 66304 - ? c == 66272 - : c <= 66335))))) - : (c <= 66378 || (c < 66560 - ? (c < 66464 - ? (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461) - : (c <= 66499 || (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517))) - : (c <= 66717 || (c < 66776 + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 ? (c < 66736 - ? (c >= 66720 && c <= 66729) + ? (c >= 66560 && c <= 66717) : c <= 66771) - : (c <= 66811 || (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915))))))) - : (c <= 66938 || (c < 67463 - ? (c < 66995 - ? (c < 66964 - ? (c < 66956 - ? (c >= 66940 && c <= 66954) - : c <= 66962) - : (c <= 66965 || (c < 66979 - ? (c >= 66967 && c <= 66977) - : c <= 66993))) - : (c <= 67001 || (c < 67392 - ? (c < 67072 - ? (c >= 67003 && c <= 67004) - : c <= 67382) - : (c <= 67413 || (c < 67456 - ? (c >= 67424 && c <= 67431) - : c <= 67461))))) - : (c <= 67504 || (c < 67644 - ? (c < 67592 - ? (c < 67584 - ? (c >= 67506 && c <= 67514) - : c <= 67589) - : (c <= 67592 || (c < 67639 - ? (c >= 67594 && c <= 67637) - : c <= 67640))) - : (c <= 67644 || (c < 67712 - ? (c < 67680 - ? (c >= 67647 && c <= 67669) - : c <= 67702) - : (c <= 67742 || (c < 67828 - ? (c >= 67808 && c <= 67826) - : c <= 67829))))))))))) - : (c <= 67861 || (c < 70163 - ? (c < 69291 - ? (c < 68288 - ? (c < 68117 - ? (c < 68096 - ? (c < 67968 - ? (c >= 67872 && c <= 67897) - : (c <= 68023 || (c >= 68030 && c <= 68031))) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115))) - : (c <= 68119 || (c < 68159 - ? (c < 68152 + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 ? (c >= 68121 && c <= 68149) - : c <= 68154) - : (c <= 68159 || (c < 68224 - ? (c >= 68192 && c <= 68220) - : c <= 68252))))) - : (c <= 68295 || (c < 68608 - ? (c < 68416 - ? (c < 68352 - ? (c >= 68297 && c <= 68326) - : c <= 68405) - : (c <= 68437 || (c < 68480 - ? (c >= 68448 && c <= 68466) - : c <= 68497))) - : (c <= 68680 || (c < 68864 - ? (c < 68800 - ? (c >= 68736 && c <= 68786) - : c <= 68850) - : (c <= 68903 || (c < 69248 - ? (c >= 68912 && c <= 68921) - : c <= 69289))))))) - : (c <= 69292 || (c < 69840 - ? (c < 69552 - ? (c < 69415 - ? (c < 69373 - ? (c >= 69296 && c <= 69297) - : c <= 69404) - : (c <= 69415 || (c < 69488 - ? (c >= 69424 && c <= 69456) - : c <= 69509))) - : (c <= 69572 || (c < 69734 - ? (c < 69632 - ? (c >= 69600 && c <= 69622) - : c <= 69702) - : (c <= 69749 || (c < 69826 - ? (c >= 69759 && c <= 69818) - : c <= 69826))))) - : (c <= 69864 || (c < 70006 - ? (c < 69942 - ? (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))) - : (c <= 70006 || (c < 70094 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092) - : (c <= 70106 || (c < 70144 - ? c == 70108 - : c <= 70161))))))))) - : (c <= 70199 || (c < 70656 - ? (c < 70419 - ? (c < 70303 - ? (c < 70280 + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 + ? c == 69415 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 ? (c < 70272 - ? (c >= 70206 && c <= 70209) + ? (c >= 70207 && c <= 70208) : c <= 70278) - : (c <= 70280 || (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301))) - : (c <= 70312 || (c < 70400 - ? (c < 70384 - ? (c >= 70320 && c <= 70378) - : c <= 70393) - : (c <= 70403 || (c < 70415 - ? (c >= 70405 && c <= 70412) - : c <= 70416))))) - : (c <= 70440 || (c < 70475 - ? (c < 70453 + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 ? (c < 70450 ? (c >= 70442 && c <= 70448) : c <= 70451) - : (c <= 70457 || (c < 70471 - ? (c >= 70459 && c <= 70468) - : c <= 70472))) - : (c <= 70477 || (c < 70493 - ? (c < 70487 - ? c == 70480 - : c <= 70487) - : (c <= 70499 || (c < 70512 - ? (c >= 70502 && c <= 70508) - : c <= 70516))))))) - : (c <= 70730 || (c < 71296 - ? (c < 71040 - ? (c < 70784 - ? (c < 70750 - ? (c >= 70736 && c <= 70745) - : c <= 70753) - : (c <= 70853 || (c < 70864 - ? c == 70855 - : c <= 70873))) - : (c <= 71093 || (c < 71168 - ? (c < 71128 - ? (c >= 71096 && c <= 71104) - : c <= 71133) - : (c <= 71232 || (c < 71248 + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 ? c == 71236 - : c <= 71257))))) - : (c <= 71352 || (c < 71680 - ? (c < 71453 - ? (c < 71424 - ? (c >= 71360 && c <= 71369) - : c <= 71450) - : (c <= 71467 || (c < 71488 - ? (c >= 71472 && c <= 71481) + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) : c <= 71494))) - : (c <= 71738 || (c < 71945 + : (c <= 71723 || (c < 71945 ? (c < 71935 - ? (c >= 71840 && c <= 71913) + ? (c >= 71840 && c <= 71903) : c <= 71942) - : (c <= 71945 || (c < 71957 - ? (c >= 71948 && c <= 71955) - : c <= 71958))))))))))))) - : (c <= 71989 || (c < 119995 - ? (c < 92784 - ? (c < 73023 - ? (c < 72704 - ? (c < 72163 - ? (c < 72096 - ? (c < 71995 - ? (c >= 71991 && c <= 71992) - : (c <= 72003 || (c >= 72016 && c <= 72025))) - : (c <= 72103 || (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161))) - : (c <= 72164 || (c < 72272 - ? (c < 72263 - ? (c >= 72192 && c <= 72254) - : c <= 72263) - : (c <= 72345 || (c < 72368 - ? c == 72349 - : c <= 72440))))) - : (c <= 72712 || (c < 72873 - ? (c < 72784 - ? (c < 72760 - ? (c >= 72714 && c <= 72758) - : c <= 72768) - : (c <= 72793 || (c < 72850 - ? (c >= 72818 && c <= 72847) - : c <= 72871))) - : (c <= 72886 || (c < 72971 - ? (c < 72968 - ? (c >= 72960 && c <= 72966) - : c <= 72969) - : (c <= 73014 || (c < 73020 - ? c == 73018 - : c <= 73021))))))) - : (c <= 73031 || (c < 73552 - ? (c < 73107 + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 ? (c < 73063 ? (c < 73056 - ? (c >= 73040 && c <= 73049) + ? c == 73030 : c <= 73061) - : (c <= 73064 || (c < 73104 - ? (c >= 73066 && c <= 73102) - : c <= 73105))) - : (c <= 73112 || (c < 73472 - ? (c < 73440 - ? (c >= 73120 && c <= 73129) - : c <= 73462) - : (c <= 73488 || (c < 73534 - ? (c >= 73490 && c <= 73530) - : c <= 73538))))) - : (c <= 73561 || (c < 77824 - ? (c < 74752 - ? (c < 73728 - ? c == 73648 - : c <= 74649) - : (c <= 74862 || (c < 77712 - ? (c >= 74880 && c <= 75075) - : c <= 77808))) - : (c <= 78895 || (c < 92160 - ? (c < 82944 - ? (c >= 78912 && c <= 78933) - : c <= 83526) - : (c <= 92728 || (c < 92768 - ? (c >= 92736 && c <= 92766) - : c <= 92777))))))))) - : (c <= 92862 || (c < 110928 - ? (c < 94095 - ? (c < 93008 - ? (c < 92912 - ? (c < 92880 - ? (c >= 92864 && c <= 92873) - : c <= 92909) - : (c <= 92916 || (c < 92992 - ? (c >= 92928 && c <= 92982) - : c <= 92995))) - : (c <= 93017 || (c < 93760 - ? (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071) - : (c <= 93823 || (c < 94031 + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 + ? (c >= 73440 && c <= 73458) + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 ? (c >= 93952 && c <= 94026) - : c <= 94087))))) - : (c <= 94111 || (c < 101632 - ? (c < 94192 - ? (c < 94179 - ? (c >= 94176 && c <= 94177) - : c <= 94180) - : (c <= 94193 || (c < 100352 + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 ? (c >= 94208 && c <= 100343) - : c <= 101589))) - : (c <= 101640 || (c < 110589 - ? (c < 110581 + : c <= 101589) + : (c <= 101640 || (c < 110581 ? (c >= 110576 && c <= 110579) - : c <= 110587) - : (c <= 110590 || (c < 110898 + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 ? (c >= 110592 && c <= 110882) - : c <= 110898))))))) - : (c <= 110930 || (c < 119149 - ? (c < 113792 - ? (c < 110960 - ? (c < 110948 - ? c == 110933 - : c <= 110951) - : (c <= 111355 || (c < 113776 - ? (c >= 113664 && c <= 113770) - : c <= 113788))) - : (c <= 113800 || (c < 118528 - ? (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 118573 || (c < 119141 - ? (c >= 118576 && c <= 118598) - : c <= 119145))))) - : (c <= 119154 || (c < 119894 - ? (c < 119210 - ? (c < 119173 - ? (c >= 119163 && c <= 119170) - : c <= 119179) - : (c <= 119213 || (c < 119808 - ? (c >= 119362 && c <= 119364) - : c <= 119892))) - : (c <= 119964 || (c < 119973 - ? (c < 119970 - ? (c >= 119966 && c <= 119967) - : c <= 119970) - : (c <= 119974 || (c < 119982 + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 ? (c >= 119977 && c <= 119980) - : c <= 119993))))))))))) - : (c <= 119995 || (c < 124912 - ? (c < 121403 - ? (c < 120514 - ? (c < 120123 - ? (c < 120077 - ? (c < 120005 + : c <= 119993) + : (c <= 119995 || (c < 120005 ? (c >= 119997 && c <= 120003) - : (c <= 120069 || (c >= 120071 && c <= 120074))) - : (c <= 120084 || (c < 120094 - ? (c >= 120086 && c <= 120092) - : c <= 120121))) - : (c <= 120126 || (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))))) - : (c <= 120538 || (c < 120688 - ? (c < 120598 + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 ? (c < 120572 ? (c >= 120540 && c <= 120570) : c <= 120596) - : (c <= 120628 || (c < 120656 - ? (c >= 120630 && c <= 120654) - : c <= 120686))) - : (c <= 120712 || (c < 120772 - ? (c < 120746 - ? (c >= 120714 && c <= 120744) - : c <= 120770) - : (c <= 120779 || (c < 121344 - ? (c >= 120782 && c <= 120831) - : c <= 121398))))))) - : (c <= 121452 || (c < 122928 + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 ? (c < 122661 - ? (c < 121499 - ? (c < 121476 - ? c == 121461 - : c <= 121476) - : (c <= 121503 || (c < 122624 - ? (c >= 121505 && c <= 121519) + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) : c <= 122654))) - : (c <= 122666 || (c < 122907 - ? (c < 122888 - ? (c >= 122880 && c <= 122886) - : c <= 122904) - : (c <= 122913 || (c < 122918 - ? (c >= 122915 && c <= 122916) - : c <= 122922))))) - : (c <= 122989 || (c < 123536 - ? (c < 123184 + : (c <= 122666 || (c < 123191 ? (c < 123136 - ? c == 123023 + ? (c >= 122928 && c <= 122989) : c <= 123180) - : (c <= 123197 || (c < 123214 - ? (c >= 123200 && c <= 123209) - : c <= 123214))) - : (c <= 123566 || (c < 124896 + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 ? (c < 124112 - ? (c >= 123584 && c <= 123641) - : c <= 124153) - : (c <= 124902 || (c < 124909 - ? (c >= 124904 && c <= 124907) - : c <= 124910))))))))) - : (c <= 124926 || (c < 126557 - ? (c < 126521 - ? (c < 126469 - ? (c < 125184 - ? (c < 125136 - ? (c >= 124928 && c <= 125124) - : c <= 125142) - : (c <= 125259 || (c < 126464 - ? (c >= 125264 && c <= 125273) - : c <= 126467))) - : (c <= 126495 || (c < 126503 - ? (c < 126500 - ? (c >= 126497 && c <= 126498) - : c <= 126500) - : (c <= 126503 || (c < 126516 - ? (c >= 126505 && c <= 126514) - : c <= 126519))))) - : (c <= 126521 || (c < 126541 - ? (c < 126535 - ? (c < 126530 - ? c == 126523 - : c <= 126530) - : (c <= 126535 || (c < 126539 - ? c == 126537 - : c <= 126539))) - : (c <= 126543 || (c < 126551 - ? (c < 126548 - ? (c >= 126545 && c <= 126546) - : c <= 126548) - : (c <= 126551 || (c < 126555 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 ? c == 126553 - : c <= 126555))))))) - : (c <= 126557 || (c < 126629 - ? (c < 126580 - ? (c < 126564 - ? (c < 126561 - ? c == 126559 - : c <= 126562) - : (c <= 126564 || (c < 126572 - ? (c >= 126567 && c <= 126570) - : c <= 126578))) - : (c <= 126583 || (c < 126592 - ? (c < 126590 - ? (c >= 126585 && c <= 126588) - : c <= 126590) - : (c <= 126601 || (c < 126625 - ? (c >= 126603 && c <= 126619) - : c <= 126627))))) + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 + ? (c < 173824 + ? (c < 131072 ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173791 || (c < 177984 - ? (c >= 173824 && c <= 177977) - : c <= 178205))) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) : (c <= 183969 || (c < 196608 ? (c < 194560 ? (c >= 183984 && c <= 191456) : c <= 195101) - : (c <= 201546 || (c < 917760 - ? (c >= 201552 && c <= 205743) - : c <= 917999))))))))))))))))); + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); } -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(103); - if (lookahead == '!') ADVANCE(169); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(65); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(108); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(177); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(184); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(101) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 1: - if (lookahead == '\n') SKIP(35) - END_STATE(); - case 2: - if (lookahead == '\n') SKIP(35) - if (lookahead == '\r') SKIP(1) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 3: - if (lookahead == '\n') SKIP(38) - END_STATE(); - case 4: - if (lookahead == '\n') SKIP(38) - if (lookahead == '\r') SKIP(3) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 5: - if (lookahead == '\n') SKIP(37) - END_STATE(); - case 6: - if (lookahead == '\n') SKIP(37) - if (lookahead == '\r') SKIP(5) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 7: - if (lookahead == '\n') SKIP(40) - END_STATE(); - case 8: - if (lookahead == '\n') SKIP(40) - if (lookahead == '\r') SKIP(7) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 9: - if (lookahead == '\n') SKIP(43) - END_STATE(); - case 10: - if (lookahead == '\n') SKIP(43) - if (lookahead == '\r') SKIP(9) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 11: - if (lookahead == '\n') SKIP(45) - END_STATE(); - case 12: - if (lookahead == '\n') SKIP(45) - if (lookahead == '\r') SKIP(11) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 13: - if (lookahead == '\n') SKIP(44) - END_STATE(); - case 14: - if (lookahead == '\n') SKIP(44) - if (lookahead == '\r') SKIP(13) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 15: - if (lookahead == '\n') SKIP(48) - END_STATE(); - case 16: - if (lookahead == '\n') SKIP(48) - if (lookahead == '\r') SKIP(15) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 17: - if (lookahead == '\n') SKIP(42) - END_STATE(); - case 18: - if (lookahead == '\n') SKIP(42) - if (lookahead == '\r') SKIP(17) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 19: - if (lookahead == '\n') SKIP(41) - END_STATE(); - case 20: - if (lookahead == '\n') SKIP(41) - if (lookahead == '\r') SKIP(19) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 21: - if (lookahead == '\n') SKIP(23) - END_STATE(); - case 22: - if (lookahead == '\n') SKIP(23) - if (lookahead == '\r') SKIP(21) - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(105); - if (lookahead == '!') ADVANCE(58); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(194); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(176); - if (lookahead == '-') ADVANCE(171); - if (lookahead == '/') ADVANCE(183); - if (lookahead == '<') ADVANCE(203); - if (lookahead == '=') ADVANCE(59); - if (lookahead == '>') ADVANCE(199); - if (lookahead == '\\') SKIP(22) - if (lookahead == '^') ADVANCE(191); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(23) - END_STATE(); - case 24: - if (lookahead == '\n') SKIP(46) - END_STATE(); - case 25: - if (lookahead == '\n') SKIP(46) - if (lookahead == '\r') SKIP(24) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 26: - if (lookahead == '\n') SKIP(47) - if (lookahead == '"') ADVANCE(265); - if (lookahead == '/') ADVANCE(266); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(269); - if (lookahead != 0) ADVANCE(270); - END_STATE(); - case 27: - if (lookahead == '\n') ADVANCE(272); - if (lookahead == '\r') ADVANCE(271); - if (lookahead == 'U') ADVANCE(99); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'x') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); - if (lookahead != 0) ADVANCE(271); - END_STATE(); - case 28: - if (lookahead == '\n') ADVANCE(106); - if (lookahead == '(') ADVANCE(108); - if (lookahead == '/') ADVANCE(160); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(161); - END_STATE(); - case 29: - if (lookahead == '\n') ADVANCE(106); - if (lookahead == '/') ADVANCE(160); - if (lookahead == '\\') ADVANCE(158); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(161); - END_STATE(); - case 30: - if (lookahead == '\n') SKIP(56) - if (lookahead == '/') ADVANCE(259); - if (lookahead == '\\') ADVANCE(258); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(260); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(257); - END_STATE(); - case 31: - if (lookahead == '\n') SKIP(36) - END_STATE(); - case 32: - if (lookahead == '\n') SKIP(36) - if (lookahead == '\r') SKIP(31) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 33: - if (lookahead == '\n') SKIP(39) - END_STATE(); - case 34: - if (lookahead == '\n') SKIP(39) - if (lookahead == '\r') SKIP(33) - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 35: - if (lookahead == '!') ADVANCE(169); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(65); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(177); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(184); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 36: - if (lookahead == '!') ADVANCE(169); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(74); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(177); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '/') ADVANCE(184); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(214); - if (lookahead == '\\') ADVANCE(32); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 37: - if (lookahead == '!') ADVANCE(168); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(65); - if (lookahead == '&') ADVANCE(193); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(178); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(208); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(63); - if (lookahead == '\\') ADVANCE(6); - if (lookahead == ']') ADVANCE(64); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(168); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(71); - if (lookahead == '&') ADVANCE(193); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(178); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '=') ADVANCE(217); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(216); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 39: - if (lookahead == '!') ADVANCE(168); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(67); - if (lookahead == '&') ADVANCE(193); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(178); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ';') ADVANCE(208); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(63); - if (lookahead == '\\') ADVANCE(34); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(39) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 40: - if (lookahead == '!') ADVANCE(168); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(69); - if (lookahead == '&') ADVANCE(193); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(178); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ';') ADVANCE(208); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(63); - if (lookahead == '\\') ADVANCE(8); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 41: - if (lookahead == '!') ADVANCE(168); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '+') ADVANCE(180); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '0') ADVANCE(240); - if (lookahead == 'L') ADVANCE(285); - if (lookahead == 'U') ADVANCE(286); - if (lookahead == '\\') ADVANCE(20); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(287); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 42: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(179); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(233); - if (lookahead == '/') ADVANCE(184); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == 'L') ADVANCE(278); - if (lookahead == 'U') ADVANCE(280); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(18); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(282); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(42) - END_STATE(); - case 43: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '#') ADVANCE(66); - if (lookahead == '%') ADVANCE(185); - if (lookahead == '&') ADVANCE(194); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(176); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(171); - if (lookahead == '.') ADVANCE(54); - if (lookahead == '/') ADVANCE(183); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(203); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(199); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(10); - if (lookahead == '^') ADVANCE(191); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(289); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '|') ADVANCE(190); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - END_STATE(); - case 44: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '#') ADVANCE(68); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(179); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(233); - if (lookahead == '/') ADVANCE(184); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(14); - if (lookahead == ']') ADVANCE(64); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(289); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(44) - END_STATE(); - case 45: - if (lookahead == '!') ADVANCE(58); - if (lookahead == '#') ADVANCE(70); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(179); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(233); - if (lookahead == '/') ADVANCE(184); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(12); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(289); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(45) - END_STATE(); - case 46: - if (lookahead == '"') ADVANCE(265); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '<') ADVANCE(60); - if (lookahead == 'L') ADVANCE(278); - if (lookahead == 'U') ADVANCE(280); - if (lookahead == '\\') ADVANCE(25); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(282); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(46) - END_STATE(); - case 47: - if (lookahead == '"') ADVANCE(265); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - END_STATE(); - case 48: - if (lookahead == '#') ADVANCE(72); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '[') ADVANCE(63); - if (lookahead == '\\') ADVANCE(16); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(289); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(48) - END_STATE(); - case 49: - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(291); - END_STATE(); - case 50: - if (lookahead == '*') ADVANCE(50); - if (lookahead == '/') ADVANCE(290); - if (lookahead != 0) ADVANCE(51); - END_STATE(); - case 51: - if (lookahead == '*') ADVANCE(50); - if (lookahead != 0) ADVANCE(51); - END_STATE(); - case 52: - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(238); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(239); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); - END_STATE(); - case 53: - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(241); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 54: - if (lookahead == '.') ADVANCE(55); - END_STATE(); - case 55: - if (lookahead == '.') ADVANCE(109); - END_STATE(); - case 56: - if (lookahead == '/') ADVANCE(49); - if (lookahead == '\\') ADVANCE(27); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(56) - END_STATE(); - case 57: - if (lookahead == ':') ADVANCE(209); - END_STATE(); - case 58: - if (lookahead == '=') ADVANCE(197); - END_STATE(); - case 59: - if (lookahead == '=') ADVANCE(196); - END_STATE(); - case 60: - if (lookahead == '>') ADVANCE(275); - if (lookahead == '\\') ADVANCE(61); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(60); - END_STATE(); - case 61: - if (lookahead == '>') ADVANCE(276); - if (lookahead == '\\') ADVANCE(61); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(60); - END_STATE(); - case 62: - if (lookahead == 'U') ADVANCE(98); - if (lookahead == 'u') ADVANCE(90); - END_STATE(); - case 63: - if (lookahead == '[') ADVANCE(210); - END_STATE(); - case 64: - if (lookahead == ']') ADVANCE(211); - END_STATE(); - case 65: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'e') ADVANCE(149); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(65); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 66: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'e') ADVANCE(149); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(66); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 67: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'e') ADVANCE(152); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(67); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 68: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'e') ADVANCE(152); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(68); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 69: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'e') ADVANCE(151); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(69); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 70: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'e') ADVANCE(151); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 71: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'i') ADVANCE(135); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(71); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 72: - if (lookahead == 'd') ADVANCE(127); - if (lookahead == 'i') ADVANCE(136); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(72); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 73: - if (lookahead == 'd') ADVANCE(76); - END_STATE(); - case 74: - if (lookahead == 'e') ADVANCE(77); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(74); - END_STATE(); - case 75: - if (lookahead == 'f') ADVANCE(113); - END_STATE(); - case 76: - if (lookahead == 'i') ADVANCE(75); - END_STATE(); - case 77: - if (lookahead == 'n') ADVANCE(73); - END_STATE(); - case 78: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 79: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); - END_STATE(); - case 80: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); - END_STATE(); - case 81: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(289); - END_STATE(); - case 82: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); - END_STATE(); - case 83: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); - END_STATE(); - case 84: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); - END_STATE(); - case 85: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(271); - END_STATE(); - case 86: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); - END_STATE(); - case 87: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); - END_STATE(); - case 88: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); - END_STATE(); - case 89: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); - END_STATE(); - case 90: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); - END_STATE(); - case 91: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); - END_STATE(); - case 92: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); - END_STATE(); - case 93: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); - END_STATE(); - case 94: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); - END_STATE(); - case 95: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); - END_STATE(); - case 96: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); - END_STATE(); - case 97: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); - END_STATE(); - case 98: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); - END_STATE(); - case 99: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(97); - END_STATE(); - case 100: - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(291); - if (lookahead == '\r') ADVANCE(295); - if (lookahead == '\\') ADVANCE(293); - END_STATE(); - case 101: - if (eof) ADVANCE(103); - if (lookahead == '!') ADVANCE(169); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(65); - if (lookahead == '%') ADVANCE(186); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(182); - if (lookahead == '+') ADVANCE(177); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(234); - if (lookahead == '/') ADVANCE(184); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '<') ADVANCE(202); - if (lookahead == '=') ADVANCE(218); - if (lookahead == '>') ADVANCE(198); - if (lookahead == '?') ADVANCE(220); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == ']') ADVANCE(216); - if (lookahead == '^') ADVANCE(192); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '|') ADVANCE(189); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(101) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 102: - if (eof) ADVANCE(103); - if (lookahead == '!') ADVANCE(168); - if (lookahead == '"') ADVANCE(265); - if (lookahead == '#') ADVANCE(71); - if (lookahead == '&') ADVANCE(193); - if (lookahead == '\'') ADVANCE(256); - if (lookahead == '(') ADVANCE(167); - if (lookahead == ')') ADVANCE(111); - if (lookahead == '*') ADVANCE(181); - if (lookahead == '+') ADVANCE(178); - if (lookahead == ',') ADVANCE(110); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(235); - if (lookahead == '/') ADVANCE(49); - if (lookahead == '0') ADVANCE(240); - if (lookahead == ':') ADVANCE(219); - if (lookahead == ';') ADVANCE(208); - if (lookahead == '=') ADVANCE(217); - if (lookahead == 'L') ADVANCE(277); - if (lookahead == 'U') ADVANCE(279); - if (lookahead == '[') ADVANCE(215); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(216); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); - if (lookahead == 'u') ADVANCE(281); - if (lookahead == '{') ADVANCE(212); - if (lookahead == '}') ADVANCE(213); - if (lookahead == '~') ADVANCE(170); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(102) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 103: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 104: - ACCEPT_TOKEN(aux_sym_preproc_include_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(105); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(106); - if (lookahead == '\\') ADVANCE(158); - END_STATE(); - case 107: - ACCEPT_TOKEN(aux_sym_preproc_def_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 109: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 110: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 111: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 112: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); - if (lookahead == 'd') ADVANCE(131); - if (lookahead == 'n') ADVANCE(125); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 113: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - END_STATE(); - case 114: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 115: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 116: - ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 117: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 118: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (lookahead == 'd') ADVANCE(133); - if (lookahead == 'n') ADVANCE(126); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 119: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 120: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 121: - ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 122: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'c') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 123: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(147); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 124: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(130); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 125: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(132); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 126: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'd') ADVANCE(134); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 127: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(137); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 128: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(117); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 129: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(107); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(104); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(140); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 132: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(141); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 133: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(142); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 134: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'e') ADVANCE(143); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 135: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(112); - if (lookahead == 'n') ADVANCE(122); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 136: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(112); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 137: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(145); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(118); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 139: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(114); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(115); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 141: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(116); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 142: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(120); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(121); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'f') ADVANCE(119); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 145: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(153); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(138); - if (lookahead == 's') ADVANCE(128); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 147: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(139); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 148: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'i') ADVANCE(144); - if (lookahead == 's') ADVANCE(128); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 149: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(146); - if (lookahead == 'n') ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 150: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(154); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 151: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'l') ADVANCE(148); - if (lookahead == 'n') ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 152: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(123); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'n') ADVANCE(129); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 154: - ACCEPT_TOKEN(sym_preproc_directive); - if (lookahead == 'u') ADVANCE(124); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 155: - ACCEPT_TOKEN(sym_preproc_directive); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(155); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(51); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '/') ADVANCE(290); - if (lookahead == '\\') ADVANCE(162); - if (lookahead != 0) ADVANCE(157); - END_STATE(); - case 157: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(51); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '\\') ADVANCE(162); - if (lookahead != 0) ADVANCE(157); - END_STATE(); - case 158: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(29) - if (lookahead == '\r') ADVANCE(159); - if (lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(161); - END_STATE(); - case 159: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(29) - if (lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(161); - END_STATE(); - case 160: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(157); - if (lookahead == '/') ADVANCE(292); - if (lookahead == '\\') ADVANCE(163); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(161); - END_STATE(); - case 161: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\\') ADVANCE(163); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(161); - END_STATE(); - case 162: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '*' && - lookahead != '\\') ADVANCE(157); - if (lookahead == '\r') ADVANCE(165); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '\\') ADVANCE(162); - END_STATE(); - case 163: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(161); - if (lookahead == '\r') ADVANCE(166); - if (lookahead == '\\') ADVANCE(163); - END_STATE(); - case 164: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(292); - if (lookahead == '\r') ADVANCE(296); - if (lookahead == '\\') ADVANCE(294); - END_STATE(); - case 165: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '*' && - lookahead != '\\') ADVANCE(157); - if (lookahead == '*') ADVANCE(156); - if (lookahead == '\\') ADVANCE(162); - END_STATE(); - case 166: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(161); - if (lookahead == '\\') ADVANCE(163); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_LPAREN2); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(197); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(240); - if (lookahead == '=') ADVANCE(225); - if (lookahead == '>') ADVANCE(236); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(231); - if (lookahead == '=') ADVANCE(225); - if (lookahead == '>') ADVANCE(236); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(232); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(240); - if (lookahead == '=') ADVANCE(224); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(232); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(232); - if (lookahead == '=') ADVANCE(224); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(79); - if (lookahead == '0') ADVANCE(240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(221); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(291); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(291); - if (lookahead == '=') ADVANCE(222); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(223); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(230); - if (lookahead == '|') ADVANCE(187); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(187); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(229); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(188); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '=') ADVANCE(228); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '>') ADVANCE(207); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(200); - if (lookahead == '>') ADVANCE(206); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(205); - if (lookahead == '=') ADVANCE(201); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(204); - if (lookahead == '=') ADVANCE(201); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(226); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_GT_GT); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(227); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(210); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(196); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(55); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 237: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(79); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); - END_STATE(); - case 238: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(80); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'b') ADVANCE(247); - if (lookahead == 'x') ADVANCE(83); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); - END_STATE(); - case 239: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(80); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); - END_STATE(); - case 240: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(78); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'b') ADVANCE(53); - if (lookahead == 'x') ADVANCE(52); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 241: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(78); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'b') ADVANCE(78); - if (lookahead == 'x') ADVANCE(83); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 242: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(78); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'P' || - lookahead == 'e' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); - END_STATE(); - case 243: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(84); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(243); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(243); - END_STATE(); - case 244: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(82); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(245); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == '+' || - lookahead == '-') ADVANCE(84); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(244); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); - END_STATE(); - case 245: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(82); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(245); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(244); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); - END_STATE(); - case 246: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(83); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == '+' || - lookahead == '-') ADVANCE(84); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); - END_STATE(); - case 247: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(83); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); - END_STATE(); - case 248: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '\'') ADVANCE(83); - if (lookahead == '.') ADVANCE(249); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(248); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); - END_STATE(); - case 249: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(245); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(244); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'D') || - ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); - END_STATE(); - case 250: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(243); - if (lookahead == 'L' || - lookahead == 'U' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - if (lookahead == '+' || - lookahead == '-') ADVANCE(84); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'E') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(243); - END_STATE(); - case 251: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == 'F' || - lookahead == 'L' || - lookahead == 'U' || - lookahead == 'f' || - lookahead == 'l' || - lookahead == 'u') ADVANCE(251); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_L_SQUOTE); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_u_SQUOTE); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_U_SQUOTE); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_u8_SQUOTE); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 257: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - END_STATE(); - case 258: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\n') ADVANCE(272); - if (lookahead == '\r') ADVANCE(271); - if (lookahead == 'U') ADVANCE(99); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'x') ADVANCE(87); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); - if (lookahead != 0) ADVANCE(271); - END_STATE(); - case 259: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(51); - if (lookahead == '/') ADVANCE(291); - END_STATE(); - case 260: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(27); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_L_DQUOTE); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_u_DQUOTE); - END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym_U_DQUOTE); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_u8_DQUOTE); - END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 266: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(268); - if (lookahead == '/') ADVANCE(270); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 267: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(267); - if (lookahead == '/') ADVANCE(270); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(268); - END_STATE(); - case 268: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(267); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(268); - END_STATE(); - case 269: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(266); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(269); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(27); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); - END_STATE(); - case 274: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); - END_STATE(); - case 275: - ACCEPT_TOKEN(sym_system_lib_string); - END_STATE(); - case 276: - ACCEPT_TOKEN(sym_system_lib_string); - if (lookahead == '>') ADVANCE(275); - if (lookahead == '\\') ADVANCE(61); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(60); - END_STATE(); - case 277: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(261); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 278: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(261); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 279: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(263); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 280: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(263); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 281: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(262); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '8') ADVANCE(283); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 282: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(262); - if (lookahead == '8') ADVANCE(284); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 283: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(264); - if (lookahead == '\'') ADVANCE(255); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 284: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(264); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 285: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 286: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 287: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(253); - if (lookahead == '8') ADVANCE(288); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 288: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\'') ADVANCE(255); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 289: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(62); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); - END_STATE(); - case 290: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 291: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(100); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(291); - END_STATE(); - case 292: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\\') ADVANCE(164); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(292); - END_STATE(); - case 293: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(291); - if (lookahead == '\r') ADVANCE(295); - if (lookahead == '\\') ADVANCE(293); - END_STATE(); - case 294: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\r' && - lookahead != '\\') ADVANCE(292); - if (lookahead == '\r') ADVANCE(296); - if (lookahead == '\\') ADVANCE(294); - END_STATE(); - case 295: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(291); - if (lookahead == '\\') ADVANCE(100); - END_STATE(); - case 296: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(292); - if (lookahead == '\\') ADVANCE(164); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == 'F') ADVANCE(1); - if (lookahead == 'N') ADVANCE(2); - if (lookahead == 'T') ADVANCE(3); - if (lookahead == '\\') SKIP(4) - if (lookahead == '_') ADVANCE(5); - if (lookahead == 'a') ADVANCE(6); - if (lookahead == 'b') ADVANCE(7); - if (lookahead == 'c') ADVANCE(8); - if (lookahead == 'd') ADVANCE(9); - if (lookahead == 'e') ADVANCE(10); - if (lookahead == 'f') ADVANCE(11); - if (lookahead == 'g') ADVANCE(12); - if (lookahead == 'i') ADVANCE(13); - if (lookahead == 'l') ADVANCE(14); - if (lookahead == 'm') ADVANCE(15); - if (lookahead == 'n') ADVANCE(16); - if (lookahead == 'o') ADVANCE(17); - if (lookahead == 'p') ADVANCE(18); - if (lookahead == 'r') ADVANCE(19); - if (lookahead == 's') ADVANCE(20); - if (lookahead == 't') ADVANCE(21); - if (lookahead == 'u') ADVANCE(22); - if (lookahead == 'v') ADVANCE(23); - if (lookahead == 'w') ADVANCE(24); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - if (lookahead == 'A') ADVANCE(25); - END_STATE(); - case 2: - if (lookahead == 'U') ADVANCE(26); - END_STATE(); - case 3: - if (lookahead == 'R') ADVANCE(27); - END_STATE(); - case 4: - if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(28) - END_STATE(); - case 5: - if (lookahead == 'A') ADVANCE(29); - if (lookahead == 'G') ADVANCE(30); - if (lookahead == 'N') ADVANCE(31); - if (lookahead == '_') ADVANCE(32); - if (lookahead == 'u') ADVANCE(33); - END_STATE(); - case 6: - if (lookahead == 's') ADVANCE(34); - if (lookahead == 'u') ADVANCE(35); - END_STATE(); - case 7: - if (lookahead == 'o') ADVANCE(36); - if (lookahead == 'r') ADVANCE(37); - END_STATE(); - case 8: - if (lookahead == 'a') ADVANCE(38); - if (lookahead == 'h') ADVANCE(39); - if (lookahead == 'o') ADVANCE(40); - END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); - END_STATE(); - case 10: - if (lookahead == 'l') ADVANCE(43); - if (lookahead == 'n') ADVANCE(44); - if (lookahead == 'x') ADVANCE(45); - END_STATE(); - case 11: - if (lookahead == 'a') ADVANCE(46); - if (lookahead == 'l') ADVANCE(47); - if (lookahead == 'o') ADVANCE(48); - END_STATE(); - case 12: - if (lookahead == 'o') ADVANCE(49); - END_STATE(); - case 13: - if (lookahead == 'f') ADVANCE(50); - if (lookahead == 'n') ADVANCE(51); - END_STATE(); - case 14: - if (lookahead == 'o') ADVANCE(52); - END_STATE(); - case 15: - if (lookahead == 'a') ADVANCE(53); - END_STATE(); - case 16: - if (lookahead == 'o') ADVANCE(54); - if (lookahead == 'u') ADVANCE(55); - END_STATE(); - case 17: - if (lookahead == 'f') ADVANCE(56); - END_STATE(); - case 18: - if (lookahead == 't') ADVANCE(57); - END_STATE(); - case 19: - if (lookahead == 'e') ADVANCE(58); - 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); - END_STATE(); - case 21: - if (lookahead == 'h') ADVANCE(64); - if (lookahead == 'r') ADVANCE(65); - if (lookahead == 'y') ADVANCE(66); - END_STATE(); - case 22: - if (lookahead == 'i') ADVANCE(67); - if (lookahead == 'n') ADVANCE(68); - END_STATE(); - case 23: - if (lookahead == 'o') ADVANCE(69); - END_STATE(); - case 24: - if (lookahead == 'h') ADVANCE(70); - END_STATE(); - case 25: - if (lookahead == 'L') ADVANCE(71); - END_STATE(); - case 26: - if (lookahead == 'L') ADVANCE(72); - END_STATE(); - case 27: - if (lookahead == 'U') ADVANCE(73); - END_STATE(); - case 28: - if (lookahead == '\n') SKIP(0) - END_STATE(); - case 29: - if (lookahead == 't') ADVANCE(74); - END_STATE(); - case 30: - if (lookahead == 'e') ADVANCE(75); - END_STATE(); - case 31: - if (lookahead == 'o') ADVANCE(76); - 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); - END_STATE(); - case 33: - if (lookahead == 'n') ADVANCE(87); - END_STATE(); - case 34: - if (lookahead == 'm') ADVANCE(88); - END_STATE(); - case 35: - if (lookahead == 't') ADVANCE(89); - END_STATE(); - case 36: - if (lookahead == 'o') ADVANCE(90); - END_STATE(); - case 37: - if (lookahead == 'e') ADVANCE(91); - END_STATE(); - case 38: - if (lookahead == 's') ADVANCE(92); - END_STATE(); - case 39: - if (lookahead == 'a') ADVANCE(93); - END_STATE(); - case 40: - if (lookahead == 'n') ADVANCE(94); - END_STATE(); - case 41: - if (lookahead == 'f') ADVANCE(95); - END_STATE(); - case 42: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'u') ADVANCE(96); - END_STATE(); - case 43: - if (lookahead == 's') ADVANCE(97); - END_STATE(); - case 44: - if (lookahead == 'u') ADVANCE(98); - END_STATE(); - case 45: - if (lookahead == 't') ADVANCE(99); - END_STATE(); - case 46: - if (lookahead == 'l') ADVANCE(100); - END_STATE(); - case 47: - if (lookahead == 'o') ADVANCE(101); - END_STATE(); - case 48: - if (lookahead == 'r') ADVANCE(102); - END_STATE(); - case 49: - if (lookahead == 't') ADVANCE(103); - END_STATE(); - case 50: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 51: - if (lookahead == 'l') ADVANCE(104); - if (lookahead == 't') ADVANCE(105); - END_STATE(); - case 52: - if (lookahead == 'n') ADVANCE(106); - END_STATE(); - case 53: - if (lookahead == 'x') ADVANCE(107); - END_STATE(); - case 54: - if (lookahead == 'r') ADVANCE(108); - END_STATE(); - case 55: - if (lookahead == 'l') ADVANCE(109); - END_STATE(); - case 56: - if (lookahead == 'f') ADVANCE(110); - END_STATE(); - case 57: - if (lookahead == 'r') ADVANCE(111); - END_STATE(); - case 58: - if (lookahead == 'g') ADVANCE(112); - if (lookahead == 's') ADVANCE(113); - if (lookahead == 't') ADVANCE(114); - END_STATE(); - case 59: - if (lookahead == 'o') ADVANCE(115); - END_STATE(); - case 60: - if (lookahead == 'g') ADVANCE(116); - if (lookahead == 'z') ADVANCE(117); - END_STATE(); - case 61: - if (lookahead == 'i') ADVANCE(118); - END_STATE(); - case 62: - if (lookahead == 'a') ADVANCE(119); - if (lookahead == 'r') ADVANCE(120); - END_STATE(); - case 63: - if (lookahead == 'i') ADVANCE(121); - END_STATE(); - case 64: - if (lookahead == 'r') ADVANCE(122); - END_STATE(); - case 65: - if (lookahead == 'u') ADVANCE(123); - END_STATE(); - case 66: - if (lookahead == 'p') ADVANCE(124); - END_STATE(); - case 67: - if (lookahead == 'n') ADVANCE(125); - END_STATE(); - case 68: - if (lookahead == 'i') ADVANCE(126); - if (lookahead == 's') ADVANCE(127); - END_STATE(); - case 69: - if (lookahead == 'i') ADVANCE(128); - if (lookahead == 'l') ADVANCE(129); - END_STATE(); - case 70: - if (lookahead == 'i') ADVANCE(130); - END_STATE(); - case 71: - if (lookahead == 'S') ADVANCE(131); - END_STATE(); - case 72: - if (lookahead == 'L') ADVANCE(132); - END_STATE(); - case 73: - if (lookahead == 'E') ADVANCE(133); - END_STATE(); - case 74: - if (lookahead == 'o') ADVANCE(134); - END_STATE(); - case 75: - if (lookahead == 'n') ADVANCE(135); - END_STATE(); - case 76: - if (lookahead == 'r') ADVANCE(136); - END_STATE(); - case 77: - if (lookahead == 's') ADVANCE(137); - if (lookahead == 't') ADVANCE(138); - END_STATE(); - case 78: - if (lookahead == 'a') ADVANCE(139); - END_STATE(); - case 79: - if (lookahead == 'd') ADVANCE(140); - if (lookahead == 'l') ADVANCE(141); - END_STATE(); - case 80: - if (lookahead == 'e') ADVANCE(142); - END_STATE(); - case 81: - if (lookahead == 'a') ADVANCE(143); - END_STATE(); - case 82: - if (lookahead == 'e') ADVANCE(144); - END_STATE(); - case 83: - if (lookahead == 'p') ADVANCE(145); - if (lookahead == 't') ADVANCE(146); - END_STATE(); - case 84: - if (lookahead == 'h') ADVANCE(147); - END_STATE(); - case 85: - if (lookahead == 'n') ADVANCE(148); - if (lookahead == 'p') ADVANCE(149); - END_STATE(); - case 86: - if (lookahead == 'e') ADVANCE(150); - END_STATE(); - case 87: - if (lookahead == 'a') ADVANCE(151); - END_STATE(); - case 88: - ACCEPT_TOKEN(anon_sym_asm); - END_STATE(); - case 89: - if (lookahead == 'o') ADVANCE(152); - END_STATE(); - case 90: - if (lookahead == 'l') ADVANCE(153); - END_STATE(); - case 91: - if (lookahead == 'a') ADVANCE(154); - END_STATE(); - case 92: - if (lookahead == 'e') ADVANCE(155); - END_STATE(); - case 93: - if (lookahead == 'r') ADVANCE(156); - END_STATE(); - case 94: - if (lookahead == 's') ADVANCE(157); - if (lookahead == 't') ADVANCE(158); - END_STATE(); - case 95: - if (lookahead == 'a') ADVANCE(159); - if (lookahead == 'i') ADVANCE(160); - END_STATE(); - case 96: - if (lookahead == 'b') ADVANCE(161); - END_STATE(); - case 97: - if (lookahead == 'e') ADVANCE(162); - END_STATE(); - case 98: - if (lookahead == 'm') ADVANCE(163); - END_STATE(); - case 99: - if (lookahead == 'e') ADVANCE(164); - END_STATE(); - case 100: - if (lookahead == 's') ADVANCE(165); - END_STATE(); - case 101: - if (lookahead == 'a') ADVANCE(166); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 103: - if (lookahead == 'o') ADVANCE(167); - END_STATE(); - case 104: - if (lookahead == 'i') ADVANCE(168); - 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); - END_STATE(); - case 106: - if (lookahead == 'g') ADVANCE(174); - END_STATE(); - case 107: - if (lookahead == '_') ADVANCE(175); - END_STATE(); - case 108: - if (lookahead == 'e') ADVANCE(176); - END_STATE(); - case 109: - if (lookahead == 'l') ADVANCE(177); - END_STATE(); - case 110: - if (lookahead == 's') ADVANCE(178); - END_STATE(); - case 111: - if (lookahead == 'd') ADVANCE(179); - END_STATE(); - case 112: - if (lookahead == 'i') ADVANCE(180); - END_STATE(); - case 113: - if (lookahead == 't') ADVANCE(181); - END_STATE(); - case 114: - if (lookahead == 'u') ADVANCE(182); - END_STATE(); - case 115: - if (lookahead == 'r') ADVANCE(183); - END_STATE(); - case 116: - if (lookahead == 'n') ADVANCE(184); - END_STATE(); - case 117: - if (lookahead == 'e') ADVANCE(185); - END_STATE(); - case 118: - if (lookahead == 'z') ADVANCE(186); - END_STATE(); - case 119: - if (lookahead == 't') ADVANCE(187); - END_STATE(); - case 120: - if (lookahead == 'u') ADVANCE(188); - END_STATE(); - case 121: - if (lookahead == 't') ADVANCE(189); - END_STATE(); - case 122: - if (lookahead == 'e') ADVANCE(190); - END_STATE(); - case 123: - if (lookahead == 'e') ADVANCE(133); - END_STATE(); - case 124: - if (lookahead == 'e') ADVANCE(191); - END_STATE(); - case 125: - if (lookahead == 't') ADVANCE(192); - END_STATE(); - case 126: - if (lookahead == 'o') ADVANCE(193); - END_STATE(); - case 127: - if (lookahead == 'i') ADVANCE(194); - END_STATE(); - case 128: - if (lookahead == 'd') ADVANCE(153); - END_STATE(); - case 129: - if (lookahead == 'a') ADVANCE(195); - END_STATE(); - case 130: - if (lookahead == 'l') ADVANCE(196); - END_STATE(); - case 131: - if (lookahead == 'E') ADVANCE(197); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_NULL); - END_STATE(); - case 133: - ACCEPT_TOKEN(sym_true); - END_STATE(); - case 134: - if (lookahead == 'm') ADVANCE(198); - END_STATE(); - case 135: - if (lookahead == 'e') ADVANCE(199); - END_STATE(); - case 136: - if (lookahead == 'e') ADVANCE(200); - END_STATE(); - case 137: - if (lookahead == 'm') ADVANCE(201); - END_STATE(); - case 138: - if (lookahead == 't') ADVANCE(202); - END_STATE(); - case 139: - if (lookahead == 's') ADVANCE(203); - END_STATE(); - case 140: - if (lookahead == 'e') ADVANCE(204); - END_STATE(); - case 141: - if (lookahead == 'r') ADVANCE(205); - END_STATE(); - case 142: - if (lookahead == 'c') ADVANCE(206); - END_STATE(); - case 143: - if (lookahead == 's') ADVANCE(207); - END_STATE(); - case 144: - if (lookahead == 's') ADVANCE(208); - END_STATE(); - case 145: - if (lookahead == 't') ADVANCE(209); - END_STATE(); - case 146: - if (lookahead == 'd') ADVANCE(210); - END_STATE(); - case 147: - if (lookahead == 'i') ADVANCE(211); - END_STATE(); - case 148: - if (lookahead == 'a') ADVANCE(212); - END_STATE(); - case 149: - if (lookahead == 't') ADVANCE(213); - END_STATE(); - case 150: - if (lookahead == 'c') ADVANCE(214); - END_STATE(); - case 151: - if (lookahead == 'l') ADVANCE(215); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_auto); - END_STATE(); - case 153: - ACCEPT_TOKEN(sym_primitive_type); - END_STATE(); - case 154: - if (lookahead == 'k') ADVANCE(216); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_case); - END_STATE(); - case 156: - ACCEPT_TOKEN(sym_primitive_type); - if (lookahead == '1') ADVANCE(217); - if (lookahead == '3') ADVANCE(218); - if (lookahead == '6') ADVANCE(219); - if (lookahead == '8') ADVANCE(220); - if (lookahead == 'p') ADVANCE(221); - END_STATE(); - case 157: - if (lookahead == 't') ADVANCE(222); - END_STATE(); - case 158: - if (lookahead == 'i') ADVANCE(223); - END_STATE(); - case 159: - if (lookahead == 'u') ADVANCE(224); - END_STATE(); - case 160: - if (lookahead == 'n') ADVANCE(225); - END_STATE(); - case 161: - if (lookahead == 'l') ADVANCE(226); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 164: - if (lookahead == 'r') ADVANCE(227); - END_STATE(); - case 165: - if (lookahead == 'e') ADVANCE(197); - END_STATE(); - case 166: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_goto); - END_STATE(); - case 168: - if (lookahead == 'n') ADVANCE(228); - END_STATE(); - case 169: - if (lookahead == '6') ADVANCE(229); - END_STATE(); - case 170: - if (lookahead == '2') ADVANCE(230); - END_STATE(); - case 171: - if (lookahead == '4') ADVANCE(231); - END_STATE(); - case 172: - if (lookahead == '_') ADVANCE(232); - END_STATE(); - case 173: - if (lookahead == 't') ADVANCE(233); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_long); - END_STATE(); - case 175: - if (lookahead == 'a') ADVANCE(234); - END_STATE(); - case 176: - if (lookahead == 't') ADVANCE(235); - END_STATE(); - case 177: - if (lookahead == 'p') ADVANCE(236); - END_STATE(); - case 178: - if (lookahead == 'e') ADVANCE(237); - END_STATE(); - case 179: - if (lookahead == 'i') ADVANCE(238); - END_STATE(); - case 180: - if (lookahead == 's') ADVANCE(239); - END_STATE(); - case 181: - if (lookahead == 'r') ADVANCE(240); - END_STATE(); - case 182: - if (lookahead == 'r') ADVANCE(241); - END_STATE(); - case 183: - if (lookahead == 't') ADVANCE(242); - END_STATE(); - case 184: - if (lookahead == 'e') ADVANCE(243); - END_STATE(); - case 185: - if (lookahead == '_') ADVANCE(244); - if (lookahead == 'o') ADVANCE(245); - END_STATE(); - case 186: - if (lookahead == 'e') ADVANCE(246); - END_STATE(); - case 187: - if (lookahead == 'i') ADVANCE(247); - END_STATE(); - case 188: - if (lookahead == 'c') ADVANCE(248); - END_STATE(); - case 189: - if (lookahead == 'c') ADVANCE(249); - END_STATE(); - case 190: - if (lookahead == 'a') ADVANCE(250); - END_STATE(); - case 191: - if (lookahead == 'd') ADVANCE(251); - END_STATE(); - case 192: - if (lookahead == '1') ADVANCE(252); - if (lookahead == '3') ADVANCE(253); - if (lookahead == '6') ADVANCE(254); - if (lookahead == '8') ADVANCE(255); - if (lookahead == 'p') ADVANCE(256); - END_STATE(); - case 193: - if (lookahead == 'n') ADVANCE(257); - END_STATE(); - case 194: - if (lookahead == 'g') ADVANCE(258); - END_STATE(); - case 195: - if (lookahead == 't') ADVANCE(259); - END_STATE(); - case 196: - if (lookahead == 'e') ADVANCE(260); - END_STATE(); - case 197: - ACCEPT_TOKEN(sym_false); - END_STATE(); - case 198: - if (lookahead == 'i') ADVANCE(261); - END_STATE(); - case 199: - if (lookahead == 'r') ADVANCE(262); - END_STATE(); - case 200: - if (lookahead == 't') ADVANCE(263); - END_STATE(); - case 201: - if (lookahead == '_') ADVANCE(264); - END_STATE(); - case 202: - if (lookahead == 'r') ADVANCE(265); - END_STATE(); - case 203: - if (lookahead == 'e') ADVANCE(266); - END_STATE(); - case 204: - if (lookahead == 'c') ADVANCE(267); - END_STATE(); - case 205: - if (lookahead == 'c') ADVANCE(268); - END_STATE(); - case 206: - if (lookahead == 'l') ADVANCE(269); - END_STATE(); - case 207: - if (lookahead == 't') ADVANCE(270); - END_STATE(); - case 208: - if (lookahead == 't') ADVANCE(271); - END_STATE(); - case 209: - if (lookahead == 'r') ADVANCE(272); - END_STATE(); - case 210: - if (lookahead == 'c') ADVANCE(273); - END_STATE(); - case 211: - if (lookahead == 's') ADVANCE(274); - END_STATE(); - case 212: - if (lookahead == 'l') ADVANCE(275); - END_STATE(); - case 213: - if (lookahead == 'r') ADVANCE(276); - END_STATE(); - case 214: - if (lookahead == 't') ADVANCE(277); - END_STATE(); - case 215: - if (lookahead == 'i') ADVANCE(278); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 217: - if (lookahead == '6') ADVANCE(279); - END_STATE(); - case 218: - if (lookahead == '2') ADVANCE(280); - END_STATE(); - case 219: - if (lookahead == '4') ADVANCE(281); - END_STATE(); - case 220: - if (lookahead == '_') ADVANCE(282); - END_STATE(); - case 221: - if (lookahead == 't') ADVANCE(283); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_const); - if (lookahead == 'e') ADVANCE(284); - END_STATE(); - case 223: - if (lookahead == 'n') ADVANCE(285); - END_STATE(); - case 224: - if (lookahead == 'l') ADVANCE(286); - END_STATE(); - case 225: - if (lookahead == 'e') ADVANCE(287); - END_STATE(); - case 226: - if (lookahead == 'e') ADVANCE(153); - END_STATE(); - case 227: - if (lookahead == 'n') ADVANCE(288); - END_STATE(); - case 228: - if (lookahead == 'e') ADVANCE(289); - END_STATE(); - case 229: - if (lookahead == '_') ADVANCE(290); - END_STATE(); - case 230: - if (lookahead == '_') ADVANCE(291); - END_STATE(); - case 231: - if (lookahead == '_') ADVANCE(292); - END_STATE(); - case 232: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 233: - if (lookahead == 'r') ADVANCE(293); - END_STATE(); - case 234: - if (lookahead == 'l') ADVANCE(294); - END_STATE(); - case 235: - if (lookahead == 'u') ADVANCE(295); - END_STATE(); - case 236: - if (lookahead == 't') ADVANCE(296); - END_STATE(); - case 237: - if (lookahead == 't') ADVANCE(297); - END_STATE(); - case 238: - if (lookahead == 'f') ADVANCE(298); - END_STATE(); - case 239: - if (lookahead == 't') ADVANCE(299); - END_STATE(); - case 240: - if (lookahead == 'i') ADVANCE(300); - END_STATE(); - case 241: - if (lookahead == 'n') ADVANCE(301); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_short); - END_STATE(); - case 243: - if (lookahead == 'd') ADVANCE(302); - END_STATE(); - case 244: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 245: - if (lookahead == 'f') ADVANCE(303); - END_STATE(); - case 246: - if (lookahead == '_') ADVANCE(304); - END_STATE(); - case 247: - if (lookahead == 'c') ADVANCE(305); - END_STATE(); - case 248: - if (lookahead == 't') ADVANCE(306); - END_STATE(); - case 249: - if (lookahead == 'h') ADVANCE(307); - END_STATE(); - case 250: - if (lookahead == 'd') ADVANCE(308); - END_STATE(); - case 251: - if (lookahead == 'e') ADVANCE(309); - END_STATE(); - case 252: - if (lookahead == '6') ADVANCE(310); - END_STATE(); - case 253: - if (lookahead == '2') ADVANCE(311); - END_STATE(); - case 254: - if (lookahead == '4') ADVANCE(312); - END_STATE(); - case 255: - if (lookahead == '_') ADVANCE(313); - END_STATE(); - case 256: - if (lookahead == 't') ADVANCE(314); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 258: - if (lookahead == 'n') ADVANCE(315); - END_STATE(); - case 259: - if (lookahead == 'i') ADVANCE(316); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 261: - if (lookahead == 'c') ADVANCE(317); - END_STATE(); - case 262: - if (lookahead == 'i') ADVANCE(318); - END_STATE(); - case 263: - if (lookahead == 'u') ADVANCE(319); - END_STATE(); - case 264: - if (lookahead == '_') ADVANCE(320); - END_STATE(); - case 265: - if (lookahead == 'i') ADVANCE(321); - END_STATE(); - case 266: - if (lookahead == 'd') ADVANCE(322); - END_STATE(); - case 267: - if (lookahead == 'l') ADVANCE(323); - END_STATE(); - case 268: - if (lookahead == 'a') ADVANCE(324); - END_STATE(); - case 269: - if (lookahead == 's') ADVANCE(325); - END_STATE(); - case 270: - if (lookahead == 'c') ADVANCE(326); - END_STATE(); - case 271: - if (lookahead == 'r') ADVANCE(327); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); - END_STATE(); - case 273: - if (lookahead == 'a') ADVANCE(328); - END_STATE(); - case 274: - if (lookahead == 'c') ADVANCE(329); - END_STATE(); - case 275: - if (lookahead == 'i') ADVANCE(330); - END_STATE(); - case 276: - ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); - END_STATE(); - case 277: - if (lookahead == 'o') ADVANCE(331); - END_STATE(); - case 278: - if (lookahead == 'g') ADVANCE(332); - END_STATE(); - case 279: - if (lookahead == '_') ADVANCE(333); - END_STATE(); - case 280: - if (lookahead == '_') ADVANCE(334); - END_STATE(); - case 281: - if (lookahead == '_') ADVANCE(335); - END_STATE(); - case 282: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 283: - if (lookahead == 'r') ADVANCE(336); - END_STATE(); - case 284: - if (lookahead == 'x') ADVANCE(337); - END_STATE(); - case 285: - if (lookahead == 'u') ADVANCE(338); - END_STATE(); - case 286: - if (lookahead == 't') ADVANCE(339); - END_STATE(); - case 287: - if (lookahead == 'd') ADVANCE(340); - END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_extern); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_inline); - END_STATE(); - case 290: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 291: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 292: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 293: - if (lookahead == '_') ADVANCE(341); - END_STATE(); - case 294: - if (lookahead == 'i') ADVANCE(342); - END_STATE(); - case 295: - if (lookahead == 'r') ADVANCE(343); - END_STATE(); - case 296: - if (lookahead == 'r') ADVANCE(344); - END_STATE(); - case 297: - if (lookahead == 'o') ADVANCE(345); - END_STATE(); - case 298: - if (lookahead == 'f') ADVANCE(346); - END_STATE(); - case 299: - if (lookahead == 'e') ADVANCE(347); - END_STATE(); - case 300: - if (lookahead == 'c') ADVANCE(348); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_signed); - END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_sizeof); - END_STATE(); - case 304: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 307: - ACCEPT_TOKEN(anon_sym_switch); - END_STATE(); - case 308: - if (lookahead == '_') ADVANCE(349); - END_STATE(); - case 309: - if (lookahead == 'f') ADVANCE(350); - END_STATE(); - case 310: - if (lookahead == '_') ADVANCE(351); - END_STATE(); - case 311: - if (lookahead == '_') ADVANCE(352); - END_STATE(); - case 312: - if (lookahead == '_') ADVANCE(353); - END_STATE(); - case 313: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 314: - if (lookahead == 'r') ADVANCE(354); - END_STATE(); - case 315: - if (lookahead == 'e') ADVANCE(355); - END_STATE(); - case 316: - if (lookahead == 'l') ADVANCE(356); - END_STATE(); - case 317: - ACCEPT_TOKEN(anon_sym__Atomic); - END_STATE(); - case 318: - if (lookahead == 'c') ADVANCE(357); - END_STATE(); - case 319: - if (lookahead == 'r') ADVANCE(358); - END_STATE(); - case 320: - ACCEPT_TOKEN(anon_sym___asm__); - END_STATE(); - case 321: - if (lookahead == 'b') ADVANCE(359); - END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym___based); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym___cdecl); - END_STATE(); - case 324: - if (lookahead == 'l') ADVANCE(360); - END_STATE(); - case 325: - if (lookahead == 'p') ADVANCE(361); - END_STATE(); - case 326: - if (lookahead == 'a') ADVANCE(362); - END_STATE(); - case 327: - if (lookahead == 'i') ADVANCE(363); - END_STATE(); - case 328: - if (lookahead == 'l') ADVANCE(364); - END_STATE(); - case 329: - if (lookahead == 'a') ADVANCE(365); - END_STATE(); - case 330: - if (lookahead == 'g') ADVANCE(366); - END_STATE(); - case 331: - if (lookahead == 'r') ADVANCE(367); - END_STATE(); - case 332: - if (lookahead == 'n') ADVANCE(368); - END_STATE(); - case 333: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 334: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 335: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 336: - if (lookahead == '_') ADVANCE(369); - END_STATE(); - case 337: - if (lookahead == 'p') ADVANCE(370); - END_STATE(); - case 338: - if (lookahead == 'e') ADVANCE(371); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_default); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_defined); - END_STATE(); - case 341: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 342: - if (lookahead == 'g') ADVANCE(372); - END_STATE(); - case 343: - if (lookahead == 'n') ADVANCE(373); - END_STATE(); - case 344: - ACCEPT_TOKEN(anon_sym_nullptr); - if (lookahead == '_') ADVANCE(374); - END_STATE(); - case 345: - if (lookahead == 'f') ADVANCE(375); - END_STATE(); - case 346: - if (lookahead == '_') ADVANCE(376); - END_STATE(); - case 347: - if (lookahead == 'r') ADVANCE(377); - END_STATE(); - case 348: - if (lookahead == 't') ADVANCE(378); - END_STATE(); - case 349: - if (lookahead == 'l') ADVANCE(379); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_typedef); - END_STATE(); - case 351: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 352: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 353: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 354: - if (lookahead == '_') ADVANCE(380); - END_STATE(); - case 355: - if (lookahead == 'd') ADVANCE(381); - END_STATE(); - case 356: - if (lookahead == 'e') ADVANCE(382); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym__Generic); - END_STATE(); - case 358: - if (lookahead == 'n') ADVANCE(383); - END_STATE(); - case 359: - if (lookahead == 'u') ADVANCE(384); - END_STATE(); - case 360: - if (lookahead == 'l') ADVANCE(385); - END_STATE(); - case 361: - if (lookahead == 'e') ADVANCE(386); - END_STATE(); - case 362: - if (lookahead == 'l') ADVANCE(387); - END_STATE(); - case 363: - if (lookahead == 'c') ADVANCE(388); - END_STATE(); - case 364: - if (lookahead == 'l') ADVANCE(389); - END_STATE(); - case 365: - if (lookahead == 'l') ADVANCE(390); - END_STATE(); - case 366: - if (lookahead == 'n') ADVANCE(391); - END_STATE(); - case 367: - if (lookahead == 'c') ADVANCE(392); - END_STATE(); - case 368: - if (lookahead == 'e') ADVANCE(393); - END_STATE(); - case 369: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 370: - if (lookahead == 'r') ADVANCE(394); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 372: - if (lookahead == 'n') ADVANCE(395); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_noreturn); - END_STATE(); - case 374: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_offsetof); - END_STATE(); - case 376: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 377: - ACCEPT_TOKEN(anon_sym_register); - END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_restrict); - END_STATE(); - case 379: - if (lookahead == 'o') ADVANCE(396); - END_STATE(); - case 380: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_unsigned); - END_STATE(); - case 382: - ACCEPT_TOKEN(anon_sym_volatile); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym__Noreturn); - END_STATE(); - case 384: - if (lookahead == 't') ADVANCE(397); - END_STATE(); - case 385: - ACCEPT_TOKEN(anon_sym___clrcall); - END_STATE(); - case 386: - if (lookahead == 'c') ADVANCE(398); - END_STATE(); - case 387: - if (lookahead == 'l') ADVANCE(399); - END_STATE(); - case 388: - if (lookahead == 't') ADVANCE(400); - END_STATE(); - case 389: - ACCEPT_TOKEN(anon_sym___stdcall); - END_STATE(); - case 390: - if (lookahead == 'l') ADVANCE(401); - END_STATE(); - case 391: - if (lookahead == 'e') ADVANCE(402); - END_STATE(); - case 392: - if (lookahead == 'a') ADVANCE(403); - END_STATE(); - case 393: - if (lookahead == 'd') ADVANCE(404); - END_STATE(); - case 394: - ACCEPT_TOKEN(anon_sym_constexpr); - END_STATE(); - case 395: - if (lookahead == '_') ADVANCE(405); - END_STATE(); - case 396: - if (lookahead == 'c') ADVANCE(406); - END_STATE(); - case 397: - if (lookahead == 'e') ADVANCE(407); - END_STATE(); - case 398: - ACCEPT_TOKEN(anon_sym___declspec); - END_STATE(); - case 399: - ACCEPT_TOKEN(anon_sym___fastcall); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym_ms_restrict_modifier); - if (lookahead == '_') ADVANCE(408); - END_STATE(); - case 401: - ACCEPT_TOKEN(anon_sym___thiscall); - END_STATE(); - case 402: - if (lookahead == 'd') ADVANCE(409); - END_STATE(); - case 403: - if (lookahead == 'l') ADVANCE(410); - END_STATE(); - case 404: - ACCEPT_TOKEN(anon_sym__unaligned); - END_STATE(); - case 405: - if (lookahead == 't') ADVANCE(153); - END_STATE(); - case 406: - if (lookahead == 'a') ADVANCE(411); - END_STATE(); - case 407: - if (lookahead == '_') ADVANCE(412); - END_STATE(); - case 408: - if (lookahead == '_') ADVANCE(413); - END_STATE(); - case 409: - ACCEPT_TOKEN(anon_sym___unaligned); - END_STATE(); - case 410: - if (lookahead == 'l') ADVANCE(414); - END_STATE(); - case 411: - if (lookahead == 'l') ADVANCE(415); - END_STATE(); - case 412: - if (lookahead == '_') ADVANCE(416); - END_STATE(); - case 413: - ACCEPT_TOKEN(anon_sym___restrict__); - END_STATE(); - case 414: - ACCEPT_TOKEN(anon_sym___vectorcall); - END_STATE(); - case 415: - ACCEPT_TOKEN(anon_sym_thread_local); - END_STATE(); - case 416: - ACCEPT_TOKEN(anon_sym___attribute__); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 102}, - [2] = {.lex_state = 37}, - [3] = {.lex_state = 37}, - [4] = {.lex_state = 37}, - [5] = {.lex_state = 37}, - [6] = {.lex_state = 37}, - [7] = {.lex_state = 37}, - [8] = {.lex_state = 37}, - [9] = {.lex_state = 37}, - [10] = {.lex_state = 37}, - [11] = {.lex_state = 37}, - [12] = {.lex_state = 40}, - [13] = {.lex_state = 40}, - [14] = {.lex_state = 40}, - [15] = {.lex_state = 40}, - [16] = {.lex_state = 40}, - [17] = {.lex_state = 40}, - [18] = {.lex_state = 40}, - [19] = {.lex_state = 40}, - [20] = {.lex_state = 40}, - [21] = {.lex_state = 40}, - [22] = {.lex_state = 40}, - [23] = {.lex_state = 40}, - [24] = {.lex_state = 37}, - [25] = {.lex_state = 40}, - [26] = {.lex_state = 40}, - [27] = {.lex_state = 40}, - [28] = {.lex_state = 102}, - [29] = {.lex_state = 102}, - [30] = {.lex_state = 102}, - [31] = {.lex_state = 102}, - [32] = {.lex_state = 102}, - [33] = {.lex_state = 102}, - [34] = {.lex_state = 102}, - [35] = {.lex_state = 102}, - [36] = {.lex_state = 39}, - [37] = {.lex_state = 102}, - [38] = {.lex_state = 102}, - [39] = {.lex_state = 39}, - [40] = {.lex_state = 102}, - [41] = {.lex_state = 39}, - [42] = {.lex_state = 102}, - [43] = {.lex_state = 102}, - [44] = {.lex_state = 102}, - [45] = {.lex_state = 102}, - [46] = {.lex_state = 102}, - [47] = {.lex_state = 102}, - [48] = {.lex_state = 102}, - [49] = {.lex_state = 102}, - [50] = {.lex_state = 102}, - [51] = {.lex_state = 102}, - [52] = {.lex_state = 102}, - [53] = {.lex_state = 102}, - [54] = {.lex_state = 37}, - [55] = {.lex_state = 37}, - [56] = {.lex_state = 37}, - [57] = {.lex_state = 37}, - [58] = {.lex_state = 37}, - [59] = {.lex_state = 40}, - [60] = {.lex_state = 40}, - [61] = {.lex_state = 40}, - [62] = {.lex_state = 40}, - [63] = {.lex_state = 40}, - [64] = {.lex_state = 39}, - [65] = {.lex_state = 102}, - [66] = {.lex_state = 39}, - [67] = {.lex_state = 39}, - [68] = {.lex_state = 102}, - [69] = {.lex_state = 39}, - [70] = {.lex_state = 102}, - [71] = {.lex_state = 102}, - [72] = {.lex_state = 39}, - [73] = {.lex_state = 102}, - [74] = {.lex_state = 102}, - [75] = {.lex_state = 102}, - [76] = {.lex_state = 102}, - [77] = {.lex_state = 102}, - [78] = {.lex_state = 102}, - [79] = {.lex_state = 102}, - [80] = {.lex_state = 102}, - [81] = {.lex_state = 102}, - [82] = {.lex_state = 102}, - [83] = {.lex_state = 102}, - [84] = {.lex_state = 102}, - [85] = {.lex_state = 102}, - [86] = {.lex_state = 102}, - [87] = {.lex_state = 102}, - [88] = {.lex_state = 102}, - [89] = {.lex_state = 102}, - [90] = {.lex_state = 37}, - [91] = {.lex_state = 36}, - [92] = {.lex_state = 37}, - [93] = {.lex_state = 37}, - [94] = {.lex_state = 37}, - [95] = {.lex_state = 37}, - [96] = {.lex_state = 37}, - [97] = {.lex_state = 37}, - [98] = {.lex_state = 37}, - [99] = {.lex_state = 37}, - [100] = {.lex_state = 37}, - [101] = {.lex_state = 37}, - [102] = {.lex_state = 37}, - [103] = {.lex_state = 37}, - [104] = {.lex_state = 37}, - [105] = {.lex_state = 37}, - [106] = {.lex_state = 37}, - [107] = {.lex_state = 37}, - [108] = {.lex_state = 37}, - [109] = {.lex_state = 37}, - [110] = {.lex_state = 37}, - [111] = {.lex_state = 37}, - [112] = {.lex_state = 37}, - [113] = {.lex_state = 37}, - [114] = {.lex_state = 37}, - [115] = {.lex_state = 37}, - [116] = {.lex_state = 37}, - [117] = {.lex_state = 37}, - [118] = {.lex_state = 37}, - [119] = {.lex_state = 37}, - [120] = {.lex_state = 37}, - [121] = {.lex_state = 37}, - [122] = {.lex_state = 37}, - [123] = {.lex_state = 37}, - [124] = {.lex_state = 37}, - [125] = {.lex_state = 37}, - [126] = {.lex_state = 37}, - [127] = {.lex_state = 37}, - [128] = {.lex_state = 37}, - [129] = {.lex_state = 37}, - [130] = {.lex_state = 37}, - [131] = {.lex_state = 37}, - [132] = {.lex_state = 37}, - [133] = {.lex_state = 37}, - [134] = {.lex_state = 37}, - [135] = {.lex_state = 37}, - [136] = {.lex_state = 37}, - [137] = {.lex_state = 40}, - [138] = {.lex_state = 37}, - [139] = {.lex_state = 37}, - [140] = {.lex_state = 37}, - [141] = {.lex_state = 37}, - [142] = {.lex_state = 37}, - [143] = {.lex_state = 37}, - [144] = {.lex_state = 37}, - [145] = {.lex_state = 37}, - [146] = {.lex_state = 37}, - [147] = {.lex_state = 37}, - [148] = {.lex_state = 37}, - [149] = {.lex_state = 37}, - [150] = {.lex_state = 37}, - [151] = {.lex_state = 37}, - [152] = {.lex_state = 37}, - [153] = {.lex_state = 37}, - [154] = {.lex_state = 40}, - [155] = {.lex_state = 40}, - [156] = {.lex_state = 40}, - [157] = {.lex_state = 40}, - [158] = {.lex_state = 40}, - [159] = {.lex_state = 40}, - [160] = {.lex_state = 40}, - [161] = {.lex_state = 40}, - [162] = {.lex_state = 40}, - [163] = {.lex_state = 102}, - [164] = {.lex_state = 40}, - [165] = {.lex_state = 40}, - [166] = {.lex_state = 40}, - [167] = {.lex_state = 40}, - [168] = {.lex_state = 40}, - [169] = {.lex_state = 40}, - [170] = {.lex_state = 40}, - [171] = {.lex_state = 40}, - [172] = {.lex_state = 40}, - [173] = {.lex_state = 40}, - [174] = {.lex_state = 40}, - [175] = {.lex_state = 40}, - [176] = {.lex_state = 40}, - [177] = {.lex_state = 40}, - [178] = {.lex_state = 40}, - [179] = {.lex_state = 40}, - [180] = {.lex_state = 40}, - [181] = {.lex_state = 40}, - [182] = {.lex_state = 40}, - [183] = {.lex_state = 40}, - [184] = {.lex_state = 102}, - [185] = {.lex_state = 40}, - [186] = {.lex_state = 40}, - [187] = {.lex_state = 40}, - [188] = {.lex_state = 40}, - [189] = {.lex_state = 40}, - [190] = {.lex_state = 40}, - [191] = {.lex_state = 40}, - [192] = {.lex_state = 40}, - [193] = {.lex_state = 40}, - [194] = {.lex_state = 40}, - [195] = {.lex_state = 40}, - [196] = {.lex_state = 40}, - [197] = {.lex_state = 40}, - [198] = {.lex_state = 40}, - [199] = {.lex_state = 40}, - [200] = {.lex_state = 102}, - [201] = {.lex_state = 40}, - [202] = {.lex_state = 40}, - [203] = {.lex_state = 40}, - [204] = {.lex_state = 40}, - [205] = {.lex_state = 40}, - [206] = {.lex_state = 40}, - [207] = {.lex_state = 40}, - [208] = {.lex_state = 102}, - [209] = {.lex_state = 40}, - [210] = {.lex_state = 40}, - [211] = {.lex_state = 40}, - [212] = {.lex_state = 40}, - [213] = {.lex_state = 40}, - [214] = {.lex_state = 40}, - [215] = {.lex_state = 40}, - [216] = {.lex_state = 40}, - [217] = {.lex_state = 39}, - [218] = {.lex_state = 40}, - [219] = {.lex_state = 36}, - [220] = {.lex_state = 40}, - [221] = {.lex_state = 102}, - [222] = {.lex_state = 102}, - [223] = {.lex_state = 102}, - [224] = {.lex_state = 102}, - [225] = {.lex_state = 102}, - [226] = {.lex_state = 102}, - [227] = {.lex_state = 102}, - [228] = {.lex_state = 102}, - [229] = {.lex_state = 102}, - [230] = {.lex_state = 102}, - [231] = {.lex_state = 102}, - [232] = {.lex_state = 102}, - [233] = {.lex_state = 102}, - [234] = {.lex_state = 102}, - [235] = {.lex_state = 102}, - [236] = {.lex_state = 102}, - [237] = {.lex_state = 102}, - [238] = {.lex_state = 102}, - [239] = {.lex_state = 102}, - [240] = {.lex_state = 102}, - [241] = {.lex_state = 102}, - [242] = {.lex_state = 102}, - [243] = {.lex_state = 102}, - [244] = {.lex_state = 102}, - [245] = {.lex_state = 102}, - [246] = {.lex_state = 102}, - [247] = {.lex_state = 102}, - [248] = {.lex_state = 102}, - [249] = {.lex_state = 102}, - [250] = {.lex_state = 102}, - [251] = {.lex_state = 102}, - [252] = {.lex_state = 102}, - [253] = {.lex_state = 102}, - [254] = {.lex_state = 102}, - [255] = {.lex_state = 102}, - [256] = {.lex_state = 102}, - [257] = {.lex_state = 39}, - [258] = {.lex_state = 102}, - [259] = {.lex_state = 102}, - [260] = {.lex_state = 102}, - [261] = {.lex_state = 102}, - [262] = {.lex_state = 102}, - [263] = {.lex_state = 102}, - [264] = {.lex_state = 102}, - [265] = {.lex_state = 102}, - [266] = {.lex_state = 102}, - [267] = {.lex_state = 102}, - [268] = {.lex_state = 102}, - [269] = {.lex_state = 102}, - [270] = {.lex_state = 102}, - [271] = {.lex_state = 102}, - [272] = {.lex_state = 39}, - [273] = {.lex_state = 102}, - [274] = {.lex_state = 102}, - [275] = {.lex_state = 102}, - [276] = {.lex_state = 102}, - [277] = {.lex_state = 102}, - [278] = {.lex_state = 102}, - [279] = {.lex_state = 102}, - [280] = {.lex_state = 102}, - [281] = {.lex_state = 39}, - [282] = {.lex_state = 102}, - [283] = {.lex_state = 102}, - [284] = {.lex_state = 39}, - [285] = {.lex_state = 102}, - [286] = {.lex_state = 102}, - [287] = {.lex_state = 102}, - [288] = {.lex_state = 102}, - [289] = {.lex_state = 102}, - [290] = {.lex_state = 102}, - [291] = {.lex_state = 102}, - [292] = {.lex_state = 102}, - [293] = {.lex_state = 102}, - [294] = {.lex_state = 102}, - [295] = {.lex_state = 102}, - [296] = {.lex_state = 102}, - [297] = {.lex_state = 39}, - [298] = {.lex_state = 39}, - [299] = {.lex_state = 39}, - [300] = {.lex_state = 39}, - [301] = {.lex_state = 102}, - [302] = {.lex_state = 39}, - [303] = {.lex_state = 39}, - [304] = {.lex_state = 39}, - [305] = {.lex_state = 39}, - [306] = {.lex_state = 39}, - [307] = {.lex_state = 39}, - [308] = {.lex_state = 39}, - [309] = {.lex_state = 39}, - [310] = {.lex_state = 102}, - [311] = {.lex_state = 102}, - [312] = {.lex_state = 102}, - [313] = {.lex_state = 102}, - [314] = {.lex_state = 102}, - [315] = {.lex_state = 102}, - [316] = {.lex_state = 102}, - [317] = {.lex_state = 102}, - [318] = {.lex_state = 102}, - [319] = {.lex_state = 102}, - [320] = {.lex_state = 102}, - [321] = {.lex_state = 102}, - [322] = {.lex_state = 102}, - [323] = {.lex_state = 102}, - [324] = {.lex_state = 102}, - [325] = {.lex_state = 102}, - [326] = {.lex_state = 102}, - [327] = {.lex_state = 102}, - [328] = {.lex_state = 102}, - [329] = {.lex_state = 102}, - [330] = {.lex_state = 102}, - [331] = {.lex_state = 102}, - [332] = {.lex_state = 102}, - [333] = {.lex_state = 102}, - [334] = {.lex_state = 102}, - [335] = {.lex_state = 102}, - [336] = {.lex_state = 102}, - [337] = {.lex_state = 102}, - [338] = {.lex_state = 102}, - [339] = {.lex_state = 102}, - [340] = {.lex_state = 102}, - [341] = {.lex_state = 102}, - [342] = {.lex_state = 102}, - [343] = {.lex_state = 102}, - [344] = {.lex_state = 102}, - [345] = {.lex_state = 102}, - [346] = {.lex_state = 102}, - [347] = {.lex_state = 102}, - [348] = {.lex_state = 102}, - [349] = {.lex_state = 102}, - [350] = {.lex_state = 102}, - [351] = {.lex_state = 102}, - [352] = {.lex_state = 39}, - [353] = {.lex_state = 102}, - [354] = {.lex_state = 102}, - [355] = {.lex_state = 102}, - [356] = {.lex_state = 102}, - [357] = {.lex_state = 39}, - [358] = {.lex_state = 39}, - [359] = {.lex_state = 39}, - [360] = {.lex_state = 102}, - [361] = {.lex_state = 39}, - [362] = {.lex_state = 102}, - [363] = {.lex_state = 102}, - [364] = {.lex_state = 102}, - [365] = {.lex_state = 39}, - [366] = {.lex_state = 102}, - [367] = {.lex_state = 102}, - [368] = {.lex_state = 102}, - [369] = {.lex_state = 102}, - [370] = {.lex_state = 102}, - [371] = {.lex_state = 102}, - [372] = {.lex_state = 102}, - [373] = {.lex_state = 102}, - [374] = {.lex_state = 102}, - [375] = {.lex_state = 102}, - [376] = {.lex_state = 102}, - [377] = {.lex_state = 102}, - [378] = {.lex_state = 102}, - [379] = {.lex_state = 102}, - [380] = {.lex_state = 102}, - [381] = {.lex_state = 102}, - [382] = {.lex_state = 102}, - [383] = {.lex_state = 102}, - [384] = {.lex_state = 102}, - [385] = {.lex_state = 102}, - [386] = {.lex_state = 39}, - [387] = {.lex_state = 102}, - [388] = {.lex_state = 102}, - [389] = {.lex_state = 39}, - [390] = {.lex_state = 102}, - [391] = {.lex_state = 102}, - [392] = {.lex_state = 102}, - [393] = {.lex_state = 102}, - [394] = {.lex_state = 102}, - [395] = {.lex_state = 102}, - [396] = {.lex_state = 102}, - [397] = {.lex_state = 102}, - [398] = {.lex_state = 102}, - [399] = {.lex_state = 39}, - [400] = {.lex_state = 102}, - [401] = {.lex_state = 102}, - [402] = {.lex_state = 102}, - [403] = {.lex_state = 102}, - [404] = {.lex_state = 102}, - [405] = {.lex_state = 102}, - [406] = {.lex_state = 102}, - [407] = {.lex_state = 102}, - [408] = {.lex_state = 102}, - [409] = {.lex_state = 102}, - [410] = {.lex_state = 39}, - [411] = {.lex_state = 102}, - [412] = {.lex_state = 102}, - [413] = {.lex_state = 102}, - [414] = {.lex_state = 102}, - [415] = {.lex_state = 39}, - [416] = {.lex_state = 39}, - [417] = {.lex_state = 102}, - [418] = {.lex_state = 102}, - [419] = {.lex_state = 102}, - [420] = {.lex_state = 39}, - [421] = {.lex_state = 102}, - [422] = {.lex_state = 102}, - [423] = {.lex_state = 102}, - [424] = {.lex_state = 102}, - [425] = {.lex_state = 102}, - [426] = {.lex_state = 102}, - [427] = {.lex_state = 102}, - [428] = {.lex_state = 102}, - [429] = {.lex_state = 39}, - [430] = {.lex_state = 39}, - [431] = {.lex_state = 102}, - [432] = {.lex_state = 39}, - [433] = {.lex_state = 102}, - [434] = {.lex_state = 39}, - [435] = {.lex_state = 39}, - [436] = {.lex_state = 39}, - [437] = {.lex_state = 102}, - [438] = {.lex_state = 102}, - [439] = {.lex_state = 102}, - [440] = {.lex_state = 102}, - [441] = {.lex_state = 102}, - [442] = {.lex_state = 39}, - [443] = {.lex_state = 39}, - [444] = {.lex_state = 102}, - [445] = {.lex_state = 39}, - [446] = {.lex_state = 102}, - [447] = {.lex_state = 102}, - [448] = {.lex_state = 102}, - [449] = {.lex_state = 39}, - [450] = {.lex_state = 39}, - [451] = {.lex_state = 102}, - [452] = {.lex_state = 102}, - [453] = {.lex_state = 39}, - [454] = {.lex_state = 102}, - [455] = {.lex_state = 102}, - [456] = {.lex_state = 102}, - [457] = {.lex_state = 102}, - [458] = {.lex_state = 102}, - [459] = {.lex_state = 39}, - [460] = {.lex_state = 102}, - [461] = {.lex_state = 39}, - [462] = {.lex_state = 39}, - [463] = {.lex_state = 39}, - [464] = {.lex_state = 39}, - [465] = {.lex_state = 39}, - [466] = {.lex_state = 39}, - [467] = {.lex_state = 102}, - [468] = {.lex_state = 102}, - [469] = {.lex_state = 102}, - [470] = {.lex_state = 39}, - [471] = {.lex_state = 102}, - [472] = {.lex_state = 39}, - [473] = {.lex_state = 102}, - [474] = {.lex_state = 102}, - [475] = {.lex_state = 39}, - [476] = {.lex_state = 39}, - [477] = {.lex_state = 39}, - [478] = {.lex_state = 39}, - [479] = {.lex_state = 102}, - [480] = {.lex_state = 39}, - [481] = {.lex_state = 102}, - [482] = {.lex_state = 102}, - [483] = {.lex_state = 102}, - [484] = {.lex_state = 39}, - [485] = {.lex_state = 39}, - [486] = {.lex_state = 102}, - [487] = {.lex_state = 102}, - [488] = {.lex_state = 39}, - [489] = {.lex_state = 39}, - [490] = {.lex_state = 102}, - [491] = {.lex_state = 102}, - [492] = {.lex_state = 39}, - [493] = {.lex_state = 39}, - [494] = {.lex_state = 102}, - [495] = {.lex_state = 102}, - [496] = {.lex_state = 102}, - [497] = {.lex_state = 102}, - [498] = {.lex_state = 102}, - [499] = {.lex_state = 102}, - [500] = {.lex_state = 102}, - [501] = {.lex_state = 102}, - [502] = {.lex_state = 102}, - [503] = {.lex_state = 102}, - [504] = {.lex_state = 102}, - [505] = {.lex_state = 102}, - [506] = {.lex_state = 102}, - [507] = {.lex_state = 102}, - [508] = {.lex_state = 102}, - [509] = {.lex_state = 102}, - [510] = {.lex_state = 102}, - [511] = {.lex_state = 102}, - [512] = {.lex_state = 102}, - [513] = {.lex_state = 102}, - [514] = {.lex_state = 102}, - [515] = {.lex_state = 102}, - [516] = {.lex_state = 102}, - [517] = {.lex_state = 102}, - [518] = {.lex_state = 102}, - [519] = {.lex_state = 102}, - [520] = {.lex_state = 102}, - [521] = {.lex_state = 102}, - [522] = {.lex_state = 102}, - [523] = {.lex_state = 102}, - [524] = {.lex_state = 36}, - [525] = {.lex_state = 102}, - [526] = {.lex_state = 102}, - [527] = {.lex_state = 36}, - [528] = {.lex_state = 102}, - [529] = {.lex_state = 102}, - [530] = {.lex_state = 102}, - [531] = {.lex_state = 102}, - [532] = {.lex_state = 102}, - [533] = {.lex_state = 102}, - [534] = {.lex_state = 102}, - [535] = {.lex_state = 102}, - [536] = {.lex_state = 102}, - [537] = {.lex_state = 102}, - [538] = {.lex_state = 102}, - [539] = {.lex_state = 102}, - [540] = {.lex_state = 43}, - [541] = {.lex_state = 43}, - [542] = {.lex_state = 43}, - [543] = {.lex_state = 43}, - [544] = {.lex_state = 43}, - [545] = {.lex_state = 43}, - [546] = {.lex_state = 43}, - [547] = {.lex_state = 43}, - [548] = {.lex_state = 102}, - [549] = {.lex_state = 43}, - [550] = {.lex_state = 102}, - [551] = {.lex_state = 102}, - [552] = {.lex_state = 102}, - [553] = {.lex_state = 45}, - [554] = {.lex_state = 45}, - [555] = {.lex_state = 45}, - [556] = {.lex_state = 45}, - [557] = {.lex_state = 45}, - [558] = {.lex_state = 45}, - [559] = {.lex_state = 43}, - [560] = {.lex_state = 45}, - [561] = {.lex_state = 45}, - [562] = {.lex_state = 45}, - [563] = {.lex_state = 45}, - [564] = {.lex_state = 45}, - [565] = {.lex_state = 45}, - [566] = {.lex_state = 45}, - [567] = {.lex_state = 45}, - [568] = {.lex_state = 45}, - [569] = {.lex_state = 45}, - [570] = {.lex_state = 45}, - [571] = {.lex_state = 45}, - [572] = {.lex_state = 45}, - [573] = {.lex_state = 45}, - [574] = {.lex_state = 45}, - [575] = {.lex_state = 45}, - [576] = {.lex_state = 45}, - [577] = {.lex_state = 102}, - [578] = {.lex_state = 44}, - [579] = {.lex_state = 48}, - [580] = {.lex_state = 44}, - [581] = {.lex_state = 48}, - [582] = {.lex_state = 48}, - [583] = {.lex_state = 44}, - [584] = {.lex_state = 102}, - [585] = {.lex_state = 102}, - [586] = {.lex_state = 102}, - [587] = {.lex_state = 102}, - [588] = {.lex_state = 102}, - [589] = {.lex_state = 102}, - [590] = {.lex_state = 102}, - [591] = {.lex_state = 102}, - [592] = {.lex_state = 102}, - [593] = {.lex_state = 102}, - [594] = {.lex_state = 102}, - [595] = {.lex_state = 43}, - [596] = {.lex_state = 102}, - [597] = {.lex_state = 102}, - [598] = {.lex_state = 102}, - [599] = {.lex_state = 102}, - [600] = {.lex_state = 102}, - [601] = {.lex_state = 102}, - [602] = {.lex_state = 102}, - [603] = {.lex_state = 102}, - [604] = {.lex_state = 102}, - [605] = {.lex_state = 102}, - [606] = {.lex_state = 43}, - [607] = {.lex_state = 102}, - [608] = {.lex_state = 102}, - [609] = {.lex_state = 102}, - [610] = {.lex_state = 43}, - [611] = {.lex_state = 102}, - [612] = {.lex_state = 102}, - [613] = {.lex_state = 102}, - [614] = {.lex_state = 102}, - [615] = {.lex_state = 43}, - [616] = {.lex_state = 102}, - [617] = {.lex_state = 102}, - [618] = {.lex_state = 102}, - [619] = {.lex_state = 102}, - [620] = {.lex_state = 102}, - [621] = {.lex_state = 102}, - [622] = {.lex_state = 102}, - [623] = {.lex_state = 102}, - [624] = {.lex_state = 102}, - [625] = {.lex_state = 102}, - [626] = {.lex_state = 102}, - [627] = {.lex_state = 43}, - [628] = {.lex_state = 102}, - [629] = {.lex_state = 43}, - [630] = {.lex_state = 102}, - [631] = {.lex_state = 102}, - [632] = {.lex_state = 102}, - [633] = {.lex_state = 102}, - [634] = {.lex_state = 102}, - [635] = {.lex_state = 102}, - [636] = {.lex_state = 102}, - [637] = {.lex_state = 102}, - [638] = {.lex_state = 102}, - [639] = {.lex_state = 102}, - [640] = {.lex_state = 102}, - [641] = {.lex_state = 102}, - [642] = {.lex_state = 102}, - [643] = {.lex_state = 102}, - [644] = {.lex_state = 102}, - [645] = {.lex_state = 102}, - [646] = {.lex_state = 102}, - [647] = {.lex_state = 102}, - [648] = {.lex_state = 102}, - [649] = {.lex_state = 102}, - [650] = {.lex_state = 102}, - [651] = {.lex_state = 102}, - [652] = {.lex_state = 102}, - [653] = {.lex_state = 102}, - [654] = {.lex_state = 102}, - [655] = {.lex_state = 102}, - [656] = {.lex_state = 102}, - [657] = {.lex_state = 102}, - [658] = {.lex_state = 102}, - [659] = {.lex_state = 102}, - [660] = {.lex_state = 102}, - [661] = {.lex_state = 102}, - [662] = {.lex_state = 102}, - [663] = {.lex_state = 102}, - [664] = {.lex_state = 102}, - [665] = {.lex_state = 102}, - [666] = {.lex_state = 102}, - [667] = {.lex_state = 102}, - [668] = {.lex_state = 102}, - [669] = {.lex_state = 102}, - [670] = {.lex_state = 102}, - [671] = {.lex_state = 102}, - [672] = {.lex_state = 102}, - [673] = {.lex_state = 102}, - [674] = {.lex_state = 102}, - [675] = {.lex_state = 102}, - [676] = {.lex_state = 102}, - [677] = {.lex_state = 102}, - [678] = {.lex_state = 102}, - [679] = {.lex_state = 102}, - [680] = {.lex_state = 102}, - [681] = {.lex_state = 102}, - [682] = {.lex_state = 102}, - [683] = {.lex_state = 102}, - [684] = {.lex_state = 102}, - [685] = {.lex_state = 102}, - [686] = {.lex_state = 102}, - [687] = {.lex_state = 102}, - [688] = {.lex_state = 102}, - [689] = {.lex_state = 102}, - [690] = {.lex_state = 102}, - [691] = {.lex_state = 102}, - [692] = {.lex_state = 102}, - [693] = {.lex_state = 102}, - [694] = {.lex_state = 102}, - [695] = {.lex_state = 102}, - [696] = {.lex_state = 102}, - [697] = {.lex_state = 102}, - [698] = {.lex_state = 102}, - [699] = {.lex_state = 102}, - [700] = {.lex_state = 102}, - [701] = {.lex_state = 102}, - [702] = {.lex_state = 102}, - [703] = {.lex_state = 102}, - [704] = {.lex_state = 102}, - [705] = {.lex_state = 102}, - [706] = {.lex_state = 102}, - [707] = {.lex_state = 102}, - [708] = {.lex_state = 102}, - [709] = {.lex_state = 102}, - [710] = {.lex_state = 102}, - [711] = {.lex_state = 102}, - [712] = {.lex_state = 102}, - [713] = {.lex_state = 102}, - [714] = {.lex_state = 102}, - [715] = {.lex_state = 102}, - [716] = {.lex_state = 102}, - [717] = {.lex_state = 102}, - [718] = {.lex_state = 102}, - [719] = {.lex_state = 102}, - [720] = {.lex_state = 102}, - [721] = {.lex_state = 102}, - [722] = {.lex_state = 102}, - [723] = {.lex_state = 102}, - [724] = {.lex_state = 102}, - [725] = {.lex_state = 102}, - [726] = {.lex_state = 102}, - [727] = {.lex_state = 102}, - [728] = {.lex_state = 102}, - [729] = {.lex_state = 102}, - [730] = {.lex_state = 102}, - [731] = {.lex_state = 102}, - [732] = {.lex_state = 102}, - [733] = {.lex_state = 102}, - [734] = {.lex_state = 102}, - [735] = {.lex_state = 102}, - [736] = {.lex_state = 102}, - [737] = {.lex_state = 102}, - [738] = {.lex_state = 102}, - [739] = {.lex_state = 102}, - [740] = {.lex_state = 102}, - [741] = {.lex_state = 102}, - [742] = {.lex_state = 102}, - [743] = {.lex_state = 102}, - [744] = {.lex_state = 102}, - [745] = {.lex_state = 102}, - [746] = {.lex_state = 102}, - [747] = {.lex_state = 102}, - [748] = {.lex_state = 102}, - [749] = {.lex_state = 102}, - [750] = {.lex_state = 102}, - [751] = {.lex_state = 102}, - [752] = {.lex_state = 102}, - [753] = {.lex_state = 42}, - [754] = {.lex_state = 42}, - [755] = {.lex_state = 42}, - [756] = {.lex_state = 42}, - [757] = {.lex_state = 42}, - [758] = {.lex_state = 45}, - [759] = {.lex_state = 43}, - [760] = {.lex_state = 102}, - [761] = {.lex_state = 102}, - [762] = {.lex_state = 43}, - [763] = {.lex_state = 102}, - [764] = {.lex_state = 45}, - [765] = {.lex_state = 43}, - [766] = {.lex_state = 45}, - [767] = {.lex_state = 43}, - [768] = {.lex_state = 45}, - [769] = {.lex_state = 45}, - [770] = {.lex_state = 45}, - [771] = {.lex_state = 44}, - [772] = {.lex_state = 44}, - [773] = {.lex_state = 45}, - [774] = {.lex_state = 45}, - [775] = {.lex_state = 45}, - [776] = {.lex_state = 45}, - [777] = {.lex_state = 45}, - [778] = {.lex_state = 45}, - [779] = {.lex_state = 45}, - [780] = {.lex_state = 45}, - [781] = {.lex_state = 45}, - [782] = {.lex_state = 43}, - [783] = {.lex_state = 45}, - [784] = {.lex_state = 45}, - [785] = {.lex_state = 45}, - [786] = {.lex_state = 44}, - [787] = {.lex_state = 45}, - [788] = {.lex_state = 43}, - [789] = {.lex_state = 45}, - [790] = {.lex_state = 45}, - [791] = {.lex_state = 45}, - [792] = {.lex_state = 45}, - [793] = {.lex_state = 45}, - [794] = {.lex_state = 45}, - [795] = {.lex_state = 45}, - [796] = {.lex_state = 45}, - [797] = {.lex_state = 45}, - [798] = {.lex_state = 45}, - [799] = {.lex_state = 45}, - [800] = {.lex_state = 45}, - [801] = {.lex_state = 45}, - [802] = {.lex_state = 45}, - [803] = {.lex_state = 45}, - [804] = {.lex_state = 43}, - [805] = {.lex_state = 45}, - [806] = {.lex_state = 45}, - [807] = {.lex_state = 45}, - [808] = {.lex_state = 45}, - [809] = {.lex_state = 45}, - [810] = {.lex_state = 45}, - [811] = {.lex_state = 45}, - [812] = {.lex_state = 45}, - [813] = {.lex_state = 45}, - [814] = {.lex_state = 45}, - [815] = {.lex_state = 45}, - [816] = {.lex_state = 102}, - [817] = {.lex_state = 43}, - [818] = {.lex_state = 45}, - [819] = {.lex_state = 43}, - [820] = {.lex_state = 43}, - [821] = {.lex_state = 43}, - [822] = {.lex_state = 45}, - [823] = {.lex_state = 102}, - [824] = {.lex_state = 45}, - [825] = {.lex_state = 45}, - [826] = {.lex_state = 45}, - [827] = {.lex_state = 45}, - [828] = {.lex_state = 45}, - [829] = {.lex_state = 45}, - [830] = {.lex_state = 45}, - [831] = {.lex_state = 45}, - [832] = {.lex_state = 45}, - [833] = {.lex_state = 45}, - [834] = {.lex_state = 45}, - [835] = {.lex_state = 45}, - [836] = {.lex_state = 45}, - [837] = {.lex_state = 45}, - [838] = {.lex_state = 45}, - [839] = {.lex_state = 43}, - [840] = {.lex_state = 45}, - [841] = {.lex_state = 45}, - [842] = {.lex_state = 45}, - [843] = {.lex_state = 45}, - [844] = {.lex_state = 45}, - [845] = {.lex_state = 45}, - [846] = {.lex_state = 45}, - [847] = {.lex_state = 45}, - [848] = {.lex_state = 45}, - [849] = {.lex_state = 45}, - [850] = {.lex_state = 45}, - [851] = {.lex_state = 45}, - [852] = {.lex_state = 43}, - [853] = {.lex_state = 43}, - [854] = {.lex_state = 43}, - [855] = {.lex_state = 43}, - [856] = {.lex_state = 43}, - [857] = {.lex_state = 43}, - [858] = {.lex_state = 43}, - [859] = {.lex_state = 43}, - [860] = {.lex_state = 43}, - [861] = {.lex_state = 43}, - [862] = {.lex_state = 43}, - [863] = {.lex_state = 43}, - [864] = {.lex_state = 43}, - [865] = {.lex_state = 43}, - [866] = {.lex_state = 43}, - [867] = {.lex_state = 43}, - [868] = {.lex_state = 43}, - [869] = {.lex_state = 43}, - [870] = {.lex_state = 43}, - [871] = {.lex_state = 43}, - [872] = {.lex_state = 45}, - [873] = {.lex_state = 45}, - [874] = {.lex_state = 45}, - [875] = {.lex_state = 43}, - [876] = {.lex_state = 45}, - [877] = {.lex_state = 45}, - [878] = {.lex_state = 45}, - [879] = {.lex_state = 45}, - [880] = {.lex_state = 45}, - [881] = {.lex_state = 45}, - [882] = {.lex_state = 45}, - [883] = {.lex_state = 45}, - [884] = {.lex_state = 45}, - [885] = {.lex_state = 45}, - [886] = {.lex_state = 45}, - [887] = {.lex_state = 43}, - [888] = {.lex_state = 45}, - [889] = {.lex_state = 45}, - [890] = {.lex_state = 45}, - [891] = {.lex_state = 45}, - [892] = {.lex_state = 45}, - [893] = {.lex_state = 43}, - [894] = {.lex_state = 43}, - [895] = {.lex_state = 43}, - [896] = {.lex_state = 43}, - [897] = {.lex_state = 43}, - [898] = {.lex_state = 44}, - [899] = {.lex_state = 48}, - [900] = {.lex_state = 43}, - [901] = {.lex_state = 48}, - [902] = {.lex_state = 48}, - [903] = {.lex_state = 48}, - [904] = {.lex_state = 43}, - [905] = {.lex_state = 48}, - [906] = {.lex_state = 48}, - [907] = {.lex_state = 48}, - [908] = {.lex_state = 48}, - [909] = {.lex_state = 42}, - [910] = {.lex_state = 48}, - [911] = {.lex_state = 48}, - [912] = {.lex_state = 48}, - [913] = {.lex_state = 43}, - [914] = {.lex_state = 48}, - [915] = {.lex_state = 42}, - [916] = {.lex_state = 48}, - [917] = {.lex_state = 44}, - [918] = {.lex_state = 48}, - [919] = {.lex_state = 43}, - [920] = {.lex_state = 44}, - [921] = {.lex_state = 44}, - [922] = {.lex_state = 44}, - [923] = {.lex_state = 44}, - [924] = {.lex_state = 44}, - [925] = {.lex_state = 44}, - [926] = {.lex_state = 42}, - [927] = {.lex_state = 44}, - [928] = {.lex_state = 44}, - [929] = {.lex_state = 44}, - [930] = {.lex_state = 48}, - [931] = {.lex_state = 44}, - [932] = {.lex_state = 44}, - [933] = {.lex_state = 44}, - [934] = {.lex_state = 48}, - [935] = {.lex_state = 48}, - [936] = {.lex_state = 44}, - [937] = {.lex_state = 48}, - [938] = {.lex_state = 43}, - [939] = {.lex_state = 44}, - [940] = {.lex_state = 44}, - [941] = {.lex_state = 44}, - [942] = {.lex_state = 48}, - [943] = {.lex_state = 42}, - [944] = {.lex_state = 42}, - [945] = {.lex_state = 44}, - [946] = {.lex_state = 45}, - [947] = {.lex_state = 45}, - [948] = {.lex_state = 45}, - [949] = {.lex_state = 45}, - [950] = {.lex_state = 45}, - [951] = {.lex_state = 45}, - [952] = {.lex_state = 45}, - [953] = {.lex_state = 45}, - [954] = {.lex_state = 45}, - [955] = {.lex_state = 45}, - [956] = {.lex_state = 45}, - [957] = {.lex_state = 45}, - [958] = {.lex_state = 43}, - [959] = {.lex_state = 45}, - [960] = {.lex_state = 43}, - [961] = {.lex_state = 43}, - [962] = {.lex_state = 43}, - [963] = {.lex_state = 43}, - [964] = {.lex_state = 43}, - [965] = {.lex_state = 43}, - [966] = {.lex_state = 43}, - [967] = {.lex_state = 43}, - [968] = {.lex_state = 45}, - [969] = {.lex_state = 43}, - [970] = {.lex_state = 45}, - [971] = {.lex_state = 45}, - [972] = {.lex_state = 43}, - [973] = {.lex_state = 43}, - [974] = {.lex_state = 43}, - [975] = {.lex_state = 43}, - [976] = {.lex_state = 43}, - [977] = {.lex_state = 45}, - [978] = {.lex_state = 43}, - [979] = {.lex_state = 43}, - [980] = {.lex_state = 45}, - [981] = {.lex_state = 43}, - [982] = {.lex_state = 43}, - [983] = {.lex_state = 43}, - [984] = {.lex_state = 43}, - [985] = {.lex_state = 43}, - [986] = {.lex_state = 43}, - [987] = {.lex_state = 45}, - [988] = {.lex_state = 45}, - [989] = {.lex_state = 45}, - [990] = {.lex_state = 45}, - [991] = {.lex_state = 45}, - [992] = {.lex_state = 45}, - [993] = {.lex_state = 45}, - [994] = {.lex_state = 43}, - [995] = {.lex_state = 45}, - [996] = {.lex_state = 45}, - [997] = {.lex_state = 45}, - [998] = {.lex_state = 45}, - [999] = {.lex_state = 45}, - [1000] = {.lex_state = 45}, - [1001] = {.lex_state = 43}, - [1002] = {.lex_state = 45}, - [1003] = {.lex_state = 45}, - [1004] = {.lex_state = 45}, - [1005] = {.lex_state = 45}, - [1006] = {.lex_state = 45}, - [1007] = {.lex_state = 45}, - [1008] = {.lex_state = 43}, - [1009] = {.lex_state = 45}, - [1010] = {.lex_state = 45}, - [1011] = {.lex_state = 45}, - [1012] = {.lex_state = 45}, - [1013] = {.lex_state = 45}, - [1014] = {.lex_state = 45}, - [1015] = {.lex_state = 45}, - [1016] = {.lex_state = 45}, - [1017] = {.lex_state = 45}, - [1018] = {.lex_state = 45}, - [1019] = {.lex_state = 43}, - [1020] = {.lex_state = 43}, - [1021] = {.lex_state = 45}, - [1022] = {.lex_state = 45}, - [1023] = {.lex_state = 45}, - [1024] = {.lex_state = 45}, - [1025] = {.lex_state = 45}, - [1026] = {.lex_state = 45}, - [1027] = {.lex_state = 45}, - [1028] = {.lex_state = 43}, - [1029] = {.lex_state = 45}, - [1030] = {.lex_state = 45}, - [1031] = {.lex_state = 45}, - [1032] = {.lex_state = 45}, - [1033] = {.lex_state = 45}, - [1034] = {.lex_state = 45}, - [1035] = {.lex_state = 45}, - [1036] = {.lex_state = 43}, - [1037] = {.lex_state = 45}, - [1038] = {.lex_state = 45}, - [1039] = {.lex_state = 45}, - [1040] = {.lex_state = 45}, - [1041] = {.lex_state = 45}, - [1042] = {.lex_state = 45}, - [1043] = {.lex_state = 45}, - [1044] = {.lex_state = 45}, - [1045] = {.lex_state = 45}, - [1046] = {.lex_state = 45}, - [1047] = {.lex_state = 45}, - [1048] = {.lex_state = 45}, - [1049] = {.lex_state = 45}, - [1050] = {.lex_state = 45}, - [1051] = {.lex_state = 45}, - [1052] = {.lex_state = 45}, - [1053] = {.lex_state = 45}, - [1054] = {.lex_state = 45}, - [1055] = {.lex_state = 45}, - [1056] = {.lex_state = 45}, - [1057] = {.lex_state = 45}, - [1058] = {.lex_state = 45}, - [1059] = {.lex_state = 43}, - [1060] = {.lex_state = 45}, - [1061] = {.lex_state = 45}, - [1062] = {.lex_state = 45}, - [1063] = {.lex_state = 45}, - [1064] = {.lex_state = 43}, - [1065] = {.lex_state = 45}, - [1066] = {.lex_state = 43}, - [1067] = {.lex_state = 43}, - [1068] = {.lex_state = 45}, - [1069] = {.lex_state = 45}, - [1070] = {.lex_state = 45}, - [1071] = {.lex_state = 45}, - [1072] = {.lex_state = 45}, - [1073] = {.lex_state = 45}, - [1074] = {.lex_state = 45}, - [1075] = {.lex_state = 45}, - [1076] = {.lex_state = 45}, - [1077] = {.lex_state = 43}, - [1078] = {.lex_state = 45}, - [1079] = {.lex_state = 45}, - [1080] = {.lex_state = 45}, - [1081] = {.lex_state = 45}, - [1082] = {.lex_state = 45}, - [1083] = {.lex_state = 45}, - [1084] = {.lex_state = 45}, - [1085] = {.lex_state = 45}, - [1086] = {.lex_state = 45}, - [1087] = {.lex_state = 45}, - [1088] = {.lex_state = 45}, - [1089] = {.lex_state = 45}, - [1090] = {.lex_state = 45}, - [1091] = {.lex_state = 45}, - [1092] = {.lex_state = 43}, - [1093] = {.lex_state = 45}, - [1094] = {.lex_state = 45}, - [1095] = {.lex_state = 45}, - [1096] = {.lex_state = 45}, - [1097] = {.lex_state = 45}, - [1098] = {.lex_state = 43}, - [1099] = {.lex_state = 45}, - [1100] = {.lex_state = 45}, - [1101] = {.lex_state = 45}, - [1102] = {.lex_state = 45}, - [1103] = {.lex_state = 45}, - [1104] = {.lex_state = 45}, - [1105] = {.lex_state = 45}, - [1106] = {.lex_state = 45}, - [1107] = {.lex_state = 45}, - [1108] = {.lex_state = 45}, - [1109] = {.lex_state = 45}, - [1110] = {.lex_state = 43}, - [1111] = {.lex_state = 45}, - [1112] = {.lex_state = 45}, - [1113] = {.lex_state = 45}, - [1114] = {.lex_state = 43}, - [1115] = {.lex_state = 45}, - [1116] = {.lex_state = 45}, - [1117] = {.lex_state = 45}, - [1118] = {.lex_state = 45}, - [1119] = {.lex_state = 45}, - [1120] = {.lex_state = 43}, - [1121] = {.lex_state = 43}, - [1122] = {.lex_state = 43}, - [1123] = {.lex_state = 45}, - [1124] = {.lex_state = 45}, - [1125] = {.lex_state = 43}, - [1126] = {.lex_state = 43}, - [1127] = {.lex_state = 43}, - [1128] = {.lex_state = 43}, - [1129] = {.lex_state = 43}, - [1130] = {.lex_state = 43}, - [1131] = {.lex_state = 43}, - [1132] = {.lex_state = 43}, - [1133] = {.lex_state = 43}, - [1134] = {.lex_state = 43}, - [1135] = {.lex_state = 43}, - [1136] = {.lex_state = 43}, - [1137] = {.lex_state = 43}, - [1138] = {.lex_state = 43}, - [1139] = {.lex_state = 43}, - [1140] = {.lex_state = 43}, - [1141] = {.lex_state = 43}, - [1142] = {.lex_state = 43}, - [1143] = {.lex_state = 43}, - [1144] = {.lex_state = 43}, - [1145] = {.lex_state = 43}, - [1146] = {.lex_state = 43}, - [1147] = {.lex_state = 43}, - [1148] = {.lex_state = 43}, - [1149] = {.lex_state = 43}, - [1150] = {.lex_state = 43}, - [1151] = {.lex_state = 43}, - [1152] = {.lex_state = 43}, - [1153] = {.lex_state = 43}, - [1154] = {.lex_state = 43}, - [1155] = {.lex_state = 43}, - [1156] = {.lex_state = 43}, - [1157] = {.lex_state = 43}, - [1158] = {.lex_state = 43}, - [1159] = {.lex_state = 43}, - [1160] = {.lex_state = 43}, - [1161] = {.lex_state = 43}, - [1162] = {.lex_state = 43}, - [1163] = {.lex_state = 43}, - [1164] = {.lex_state = 43}, - [1165] = {.lex_state = 43}, - [1166] = {.lex_state = 43}, - [1167] = {.lex_state = 43}, - [1168] = {.lex_state = 43}, - [1169] = {.lex_state = 43}, - [1170] = {.lex_state = 43}, - [1171] = {.lex_state = 43}, - [1172] = {.lex_state = 41}, - [1173] = {.lex_state = 43}, - [1174] = {.lex_state = 43}, - [1175] = {.lex_state = 43}, - [1176] = {.lex_state = 43}, - [1177] = {.lex_state = 43}, - [1178] = {.lex_state = 43}, - [1179] = {.lex_state = 43}, - [1180] = {.lex_state = 23}, - [1181] = {.lex_state = 43}, - [1182] = {.lex_state = 43}, - [1183] = {.lex_state = 43}, - [1184] = {.lex_state = 43}, - [1185] = {.lex_state = 43}, - [1186] = {.lex_state = 43}, - [1187] = {.lex_state = 43}, - [1188] = {.lex_state = 41}, - [1189] = {.lex_state = 43}, - [1190] = {.lex_state = 43}, - [1191] = {.lex_state = 43}, - [1192] = {.lex_state = 43}, - [1193] = {.lex_state = 43}, - [1194] = {.lex_state = 43}, - [1195] = {.lex_state = 43}, - [1196] = {.lex_state = 43}, - [1197] = {.lex_state = 43}, - [1198] = {.lex_state = 43}, - [1199] = {.lex_state = 43}, - [1200] = {.lex_state = 43}, - [1201] = {.lex_state = 43}, - [1202] = {.lex_state = 43}, - [1203] = {.lex_state = 41}, - [1204] = {.lex_state = 41}, - [1205] = {.lex_state = 41}, - [1206] = {.lex_state = 41}, - [1207] = {.lex_state = 41}, - [1208] = {.lex_state = 41}, - [1209] = {.lex_state = 43}, - [1210] = {.lex_state = 41}, - [1211] = {.lex_state = 43}, - [1212] = {.lex_state = 41}, - [1213] = {.lex_state = 41}, - [1214] = {.lex_state = 41}, - [1215] = {.lex_state = 41}, - [1216] = {.lex_state = 41}, - [1217] = {.lex_state = 41}, - [1218] = {.lex_state = 43}, - [1219] = {.lex_state = 43}, - [1220] = {.lex_state = 41}, - [1221] = {.lex_state = 43}, - [1222] = {.lex_state = 41}, - [1223] = {.lex_state = 41}, - [1224] = {.lex_state = 41}, - [1225] = {.lex_state = 41}, - [1226] = {.lex_state = 41}, - [1227] = {.lex_state = 41}, - [1228] = {.lex_state = 41}, - [1229] = {.lex_state = 41}, - [1230] = {.lex_state = 41}, - [1231] = {.lex_state = 41}, - [1232] = {.lex_state = 43}, - [1233] = {.lex_state = 41}, - [1234] = {.lex_state = 41}, - [1235] = {.lex_state = 41}, - [1236] = {.lex_state = 41}, - [1237] = {.lex_state = 41}, - [1238] = {.lex_state = 41}, - [1239] = {.lex_state = 41}, - [1240] = {.lex_state = 41}, - [1241] = {.lex_state = 43}, - [1242] = {.lex_state = 43}, - [1243] = {.lex_state = 41}, - [1244] = {.lex_state = 43}, - [1245] = {.lex_state = 43}, - [1246] = {.lex_state = 43}, - [1247] = {.lex_state = 43}, - [1248] = {.lex_state = 43}, - [1249] = {.lex_state = 43}, - [1250] = {.lex_state = 41}, - [1251] = {.lex_state = 43}, - [1252] = {.lex_state = 43}, - [1253] = {.lex_state = 43}, - [1254] = {.lex_state = 43}, - [1255] = {.lex_state = 43}, - [1256] = {.lex_state = 43}, - [1257] = {.lex_state = 41}, - [1258] = {.lex_state = 41}, - [1259] = {.lex_state = 43}, - [1260] = {.lex_state = 43}, - [1261] = {.lex_state = 23}, - [1262] = {.lex_state = 23}, - [1263] = {.lex_state = 23}, - [1264] = {.lex_state = 23}, - [1265] = {.lex_state = 23}, - [1266] = {.lex_state = 23}, - [1267] = {.lex_state = 43}, - [1268] = {.lex_state = 23}, - [1269] = {.lex_state = 23}, - [1270] = {.lex_state = 23}, - [1271] = {.lex_state = 23}, - [1272] = {.lex_state = 23}, - [1273] = {.lex_state = 23}, - [1274] = {.lex_state = 23}, - [1275] = {.lex_state = 23}, - [1276] = {.lex_state = 23}, - [1277] = {.lex_state = 23}, - [1278] = {.lex_state = 23}, - [1279] = {.lex_state = 23}, - [1280] = {.lex_state = 23}, - [1281] = {.lex_state = 23}, - [1282] = {.lex_state = 23}, - [1283] = {.lex_state = 23}, - [1284] = {.lex_state = 23}, - [1285] = {.lex_state = 23}, - [1286] = {.lex_state = 23}, - [1287] = {.lex_state = 43}, - [1288] = {.lex_state = 23}, - [1289] = {.lex_state = 23}, - [1290] = {.lex_state = 23}, - [1291] = {.lex_state = 23}, - [1292] = {.lex_state = 23}, - [1293] = {.lex_state = 43}, - [1294] = {.lex_state = 43}, - [1295] = {.lex_state = 43}, - [1296] = {.lex_state = 43}, - [1297] = {.lex_state = 43}, - [1298] = {.lex_state = 43}, - [1299] = {.lex_state = 43}, - [1300] = {.lex_state = 43}, - [1301] = {.lex_state = 43}, - [1302] = {.lex_state = 43}, - [1303] = {.lex_state = 43}, - [1304] = {.lex_state = 43}, - [1305] = {.lex_state = 43}, - [1306] = {.lex_state = 43}, - [1307] = {.lex_state = 43}, - [1308] = {.lex_state = 43}, - [1309] = {.lex_state = 43}, - [1310] = {.lex_state = 43}, - [1311] = {.lex_state = 43}, - [1312] = {.lex_state = 43}, - [1313] = {.lex_state = 43}, - [1314] = {.lex_state = 43}, - [1315] = {.lex_state = 43}, - [1316] = {.lex_state = 43}, - [1317] = {.lex_state = 43}, - [1318] = {.lex_state = 42}, - [1319] = {.lex_state = 102}, - [1320] = {.lex_state = 43}, - [1321] = {.lex_state = 102}, - [1322] = {.lex_state = 102}, - [1323] = {.lex_state = 43}, - [1324] = {.lex_state = 42}, - [1325] = {.lex_state = 43}, - [1326] = {.lex_state = 102}, - [1327] = {.lex_state = 43}, - [1328] = {.lex_state = 43}, - [1329] = {.lex_state = 102}, - [1330] = {.lex_state = 43}, - [1331] = {.lex_state = 43}, - [1332] = {.lex_state = 102}, - [1333] = {.lex_state = 43}, - [1334] = {.lex_state = 102}, - [1335] = {.lex_state = 102}, - [1336] = {.lex_state = 0}, - [1337] = {.lex_state = 102}, - [1338] = {.lex_state = 102}, - [1339] = {.lex_state = 102}, - [1340] = {.lex_state = 0}, - [1341] = {.lex_state = 102}, - [1342] = {.lex_state = 102}, - [1343] = {.lex_state = 102}, - [1344] = {.lex_state = 102}, - [1345] = {.lex_state = 102}, - [1346] = {.lex_state = 102}, - [1347] = {.lex_state = 102}, - [1348] = {.lex_state = 43}, - [1349] = {.lex_state = 102}, - [1350] = {.lex_state = 102}, - [1351] = {.lex_state = 102}, - [1352] = {.lex_state = 102}, - [1353] = {.lex_state = 102}, - [1354] = {.lex_state = 102}, - [1355] = {.lex_state = 102}, - [1356] = {.lex_state = 102}, - [1357] = {.lex_state = 102}, - [1358] = {.lex_state = 102}, - [1359] = {.lex_state = 102}, - [1360] = {.lex_state = 102}, - [1361] = {.lex_state = 46}, - [1362] = {.lex_state = 102}, - [1363] = {.lex_state = 102}, - [1364] = {.lex_state = 46}, - [1365] = {.lex_state = 102}, - [1366] = {.lex_state = 46}, - [1367] = {.lex_state = 102}, - [1368] = {.lex_state = 102}, - [1369] = {.lex_state = 102}, - [1370] = {.lex_state = 102}, - [1371] = {.lex_state = 102}, - [1372] = {.lex_state = 102}, - [1373] = {.lex_state = 102}, - [1374] = {.lex_state = 102}, - [1375] = {.lex_state = 102}, - [1376] = {.lex_state = 46}, - [1377] = {.lex_state = 102}, - [1378] = {.lex_state = 102}, - [1379] = {.lex_state = 46}, - [1380] = {.lex_state = 102}, - [1381] = {.lex_state = 102}, - [1382] = {.lex_state = 0}, - [1383] = {.lex_state = 102}, - [1384] = {.lex_state = 102}, - [1385] = {.lex_state = 102}, - [1386] = {.lex_state = 102}, - [1387] = {.lex_state = 102}, - [1388] = {.lex_state = 102}, - [1389] = {.lex_state = 102}, - [1390] = {.lex_state = 0}, - [1391] = {.lex_state = 102}, - [1392] = {.lex_state = 0}, - [1393] = {.lex_state = 102}, - [1394] = {.lex_state = 102}, - [1395] = {.lex_state = 102}, - [1396] = {.lex_state = 102}, - [1397] = {.lex_state = 102}, - [1398] = {.lex_state = 102}, - [1399] = {.lex_state = 102}, - [1400] = {.lex_state = 102}, - [1401] = {.lex_state = 102}, - [1402] = {.lex_state = 102}, - [1403] = {.lex_state = 0}, - [1404] = {.lex_state = 102}, - [1405] = {.lex_state = 102}, - [1406] = {.lex_state = 0}, - [1407] = {.lex_state = 102}, - [1408] = {.lex_state = 43}, - [1409] = {.lex_state = 102}, - [1410] = {.lex_state = 102}, - [1411] = {.lex_state = 102}, - [1412] = {.lex_state = 102}, - [1413] = {.lex_state = 102}, - [1414] = {.lex_state = 0}, - [1415] = {.lex_state = 102}, - [1416] = {.lex_state = 102}, - [1417] = {.lex_state = 43}, - [1418] = {.lex_state = 102}, - [1419] = {.lex_state = 102}, - [1420] = {.lex_state = 102}, - [1421] = {.lex_state = 0}, - [1422] = {.lex_state = 0}, - [1423] = {.lex_state = 102}, - [1424] = {.lex_state = 43}, - [1425] = {.lex_state = 102}, - [1426] = {.lex_state = 102}, - [1427] = {.lex_state = 102}, - [1428] = {.lex_state = 102}, - [1429] = {.lex_state = 102}, - [1430] = {.lex_state = 102}, - [1431] = {.lex_state = 102}, - [1432] = {.lex_state = 43}, - [1433] = {.lex_state = 43}, - [1434] = {.lex_state = 102}, - [1435] = {.lex_state = 102}, - [1436] = {.lex_state = 37}, - [1437] = {.lex_state = 102}, - [1438] = {.lex_state = 102}, - [1439] = {.lex_state = 102}, - [1440] = {.lex_state = 102}, - [1441] = {.lex_state = 102}, - [1442] = {.lex_state = 102}, - [1443] = {.lex_state = 102}, - [1444] = {.lex_state = 102}, - [1445] = {.lex_state = 102}, - [1446] = {.lex_state = 0}, - [1447] = {.lex_state = 0}, - [1448] = {.lex_state = 26}, - [1449] = {.lex_state = 102}, - [1450] = {.lex_state = 26}, - [1451] = {.lex_state = 102}, - [1452] = {.lex_state = 37}, - [1453] = {.lex_state = 28}, - [1454] = {.lex_state = 26}, - [1455] = {.lex_state = 43}, - [1456] = {.lex_state = 43}, - [1457] = {.lex_state = 0}, - [1458] = {.lex_state = 0}, - [1459] = {.lex_state = 28}, - [1460] = {.lex_state = 0}, - [1461] = {.lex_state = 26}, - [1462] = {.lex_state = 0}, - [1463] = {.lex_state = 28}, - [1464] = {.lex_state = 28}, - [1465] = {.lex_state = 28}, - [1466] = {.lex_state = 28}, - [1467] = {.lex_state = 26}, - [1468] = {.lex_state = 0}, - [1469] = {.lex_state = 28}, - [1470] = {.lex_state = 0}, - [1471] = {.lex_state = 0}, - [1472] = {.lex_state = 28}, - [1473] = {.lex_state = 26}, - [1474] = {.lex_state = 28}, - [1475] = {.lex_state = 26}, - [1476] = {.lex_state = 0}, - [1477] = {.lex_state = 0}, - [1478] = {.lex_state = 43}, - [1479] = {.lex_state = 0}, - [1480] = {.lex_state = 0}, - [1481] = {.lex_state = 23}, - [1482] = {.lex_state = 0}, - [1483] = {.lex_state = 37}, - [1484] = {.lex_state = 43}, - [1485] = {.lex_state = 43}, - [1486] = {.lex_state = 0}, - [1487] = {.lex_state = 0}, - [1488] = {.lex_state = 43}, - [1489] = {.lex_state = 0}, - [1490] = {.lex_state = 37}, - [1491] = {.lex_state = 37}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 0}, - [1494] = {.lex_state = 0}, - [1495] = {.lex_state = 0}, - [1496] = {.lex_state = 0}, - [1497] = {.lex_state = 0}, - [1498] = {.lex_state = 0}, - [1499] = {.lex_state = 0}, - [1500] = {.lex_state = 0}, - [1501] = {.lex_state = 0}, - [1502] = {.lex_state = 0}, - [1503] = {.lex_state = 0}, - [1504] = {.lex_state = 0}, - [1505] = {.lex_state = 23}, - [1506] = {.lex_state = 0}, - [1507] = {.lex_state = 0}, - [1508] = {.lex_state = 37}, - [1509] = {.lex_state = 0}, - [1510] = {.lex_state = 43}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 0}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 0}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 0}, - [1517] = {.lex_state = 0}, - [1518] = {.lex_state = 0}, - [1519] = {.lex_state = 0}, - [1520] = {.lex_state = 0}, - [1521] = {.lex_state = 0}, - [1522] = {.lex_state = 0}, - [1523] = {.lex_state = 0}, - [1524] = {.lex_state = 0}, - [1525] = {.lex_state = 0}, - [1526] = {.lex_state = 0}, - [1527] = {.lex_state = 0}, - [1528] = {.lex_state = 0}, - [1529] = {.lex_state = 0}, - [1530] = {.lex_state = 0}, - [1531] = {.lex_state = 37}, - [1532] = {.lex_state = 43}, - [1533] = {.lex_state = 0}, - [1534] = {.lex_state = 0}, - [1535] = {.lex_state = 0}, - [1536] = {.lex_state = 0}, - [1537] = {.lex_state = 0}, - [1538] = {.lex_state = 0}, - [1539] = {.lex_state = 0}, - [1540] = {.lex_state = 0}, - [1541] = {.lex_state = 0}, - [1542] = {.lex_state = 0}, - [1543] = {.lex_state = 0}, - [1544] = {.lex_state = 0}, - [1545] = {.lex_state = 0}, - [1546] = {.lex_state = 0}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 0}, - [1549] = {.lex_state = 0}, - [1550] = {.lex_state = 0}, - [1551] = {.lex_state = 0}, - [1552] = {.lex_state = 37}, - [1553] = {.lex_state = 0}, - [1554] = {.lex_state = 0}, - [1555] = {.lex_state = 0}, - [1556] = {.lex_state = 37}, - [1557] = {.lex_state = 102}, - [1558] = {.lex_state = 0}, - [1559] = {.lex_state = 0}, - [1560] = {.lex_state = 0}, - [1561] = {.lex_state = 23}, - [1562] = {.lex_state = 0}, - [1563] = {.lex_state = 0}, - [1564] = {.lex_state = 0}, - [1565] = {.lex_state = 0}, - [1566] = {.lex_state = 23}, - [1567] = {.lex_state = 0}, - [1568] = {.lex_state = 102}, - [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 = 43}, - [1577] = {.lex_state = 0}, - [1578] = {.lex_state = 0}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 0}, - [1581] = {.lex_state = 0}, - [1582] = {.lex_state = 0}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 23}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 0}, - [1590] = {.lex_state = 29}, - [1591] = {.lex_state = 0}, - [1592] = {.lex_state = 43}, - [1593] = {.lex_state = 102}, - [1594] = {.lex_state = 29}, - [1595] = {.lex_state = 102}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 102}, - [1598] = {.lex_state = 102}, - [1599] = {.lex_state = 30}, - [1600] = {.lex_state = 0}, - [1601] = {.lex_state = 43}, - [1602] = {.lex_state = 0}, - [1603] = {.lex_state = 102}, - [1604] = {.lex_state = 29}, - [1605] = {.lex_state = 0}, - [1606] = {.lex_state = 0}, - [1607] = {.lex_state = 29}, - [1608] = {.lex_state = 37}, - [1609] = {.lex_state = 43}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 102}, - [1612] = {.lex_state = 102}, - [1613] = {.lex_state = 102}, - [1614] = {.lex_state = 29}, - [1615] = {.lex_state = 0}, - [1616] = {.lex_state = 0}, - [1617] = {.lex_state = 29}, - [1618] = {.lex_state = 102}, - [1619] = {.lex_state = 29}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 102}, - [1622] = {.lex_state = 102}, - [1623] = {.lex_state = 102}, - [1624] = {.lex_state = 0}, - [1625] = {.lex_state = 29}, - [1626] = {.lex_state = 102}, - [1627] = {.lex_state = 102}, - [1628] = {.lex_state = 102}, - [1629] = {.lex_state = 37}, - [1630] = {.lex_state = 0}, - [1631] = {.lex_state = 0}, - [1632] = {.lex_state = 29}, - [1633] = {.lex_state = 0}, - [1634] = {.lex_state = 29}, - [1635] = {.lex_state = 0}, - [1636] = {.lex_state = 43}, - [1637] = {.lex_state = 29}, - [1638] = {.lex_state = 29}, - [1639] = {.lex_state = 102}, - [1640] = {.lex_state = 29}, - [1641] = {.lex_state = 0}, - [1642] = {.lex_state = 0}, - [1643] = {.lex_state = 29}, - [1644] = {.lex_state = 29}, - [1645] = {.lex_state = 30}, - [1646] = {.lex_state = 29}, - [1647] = {.lex_state = 102}, - [1648] = {.lex_state = 102}, - [1649] = {.lex_state = 102}, - [1650] = {.lex_state = 29}, - [1651] = {.lex_state = 102}, - [1652] = {.lex_state = 43}, - [1653] = {.lex_state = 0}, - [1654] = {.lex_state = 0}, - [1655] = {.lex_state = 29}, - [1656] = {.lex_state = 0}, - [1657] = {.lex_state = 43}, - [1658] = {.lex_state = 102}, - [1659] = {.lex_state = 102}, - [1660] = {.lex_state = 0}, - [1661] = {.lex_state = 102}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 30}, - [1664] = {.lex_state = 0}, - [1665] = {.lex_state = 43}, - [1666] = {.lex_state = 29}, - [1667] = {.lex_state = 43}, - [1668] = {.lex_state = 29}, - [1669] = {.lex_state = 0}, - [1670] = {.lex_state = 29}, - [1671] = {.lex_state = 43}, - [1672] = {.lex_state = 0}, - [1673] = {.lex_state = 37}, - [1674] = {.lex_state = 102}, - [1675] = {.lex_state = 36}, - [1676] = {.lex_state = 0}, - [1677] = {.lex_state = 23}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 0}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 36}, - [1682] = {.lex_state = 0}, - [1683] = {.lex_state = 36}, - [1684] = {.lex_state = 0}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 36}, - [1687] = {.lex_state = 0}, - [1688] = {.lex_state = 36}, - [1689] = {.lex_state = 0}, - [1690] = {.lex_state = 102}, - [1691] = {.lex_state = 0}, - [1692] = {.lex_state = 43}, - [1693] = {.lex_state = 43}, - [1694] = {.lex_state = 43}, - [1695] = {.lex_state = 36}, - [1696] = {.lex_state = 0}, - [1697] = {.lex_state = 43}, - [1698] = {.lex_state = 0}, - [1699] = {.lex_state = 0}, - [1700] = {.lex_state = 0}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 36}, - [1703] = {.lex_state = 36}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 36}, - [1706] = {.lex_state = 0}, - [1707] = {.lex_state = 0}, - [1708] = {.lex_state = 23}, - [1709] = {.lex_state = 0}, - [1710] = {.lex_state = 0}, - [1711] = {.lex_state = 0}, - [1712] = {.lex_state = 36}, - [1713] = {.lex_state = 0}, - [1714] = {.lex_state = 0}, - [1715] = {.lex_state = 36}, - [1716] = {.lex_state = 0}, - [1717] = {.lex_state = 36}, - [1718] = {.lex_state = 0}, - [1719] = {.lex_state = 0}, - [1720] = {.lex_state = 0}, - [1721] = {.lex_state = 0}, - [1722] = {.lex_state = 0}, - [1723] = {.lex_state = 0}, - [1724] = {.lex_state = 0}, - [1725] = {.lex_state = 0}, - [1726] = {.lex_state = 36}, - [1727] = {.lex_state = 43}, - [1728] = {.lex_state = 23}, - [1729] = {.lex_state = 36}, - [1730] = {.lex_state = 102}, - [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 43}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 0}, - [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 0}, - [1738] = {.lex_state = 102}, - [1739] = {.lex_state = 36}, - [1740] = {.lex_state = 36}, - [1741] = {.lex_state = 23}, - [1742] = {.lex_state = 23}, - [1743] = {.lex_state = 43}, - [1744] = {.lex_state = 43}, - [1745] = {.lex_state = 43}, - [1746] = {.lex_state = 0}, - [1747] = {.lex_state = 43}, - [1748] = {.lex_state = 36}, - [1749] = {.lex_state = 23}, - [1750] = {.lex_state = 36}, - [1751] = {.lex_state = 23}, - [1752] = {.lex_state = 43}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 36}, - [1756] = {.lex_state = 23}, - [1757] = {.lex_state = 43}, - [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 23}, - [1760] = {.lex_state = 23}, - [1761] = {.lex_state = 23}, - [1762] = {.lex_state = 0}, - [1763] = {.lex_state = 43}, - [1764] = {.lex_state = 23}, - [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 36}, - [1767] = {.lex_state = 36}, - [1768] = {.lex_state = 23}, - [1769] = {.lex_state = 23}, - [1770] = {.lex_state = 23}, - [1771] = {.lex_state = 0}, - [1772] = {.lex_state = 0}, - [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, - [1775] = {.lex_state = 23}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, - [1778] = {.lex_state = 23}, - [1779] = {.lex_state = 36}, - [1780] = {.lex_state = 0}, - [1781] = {.lex_state = 36}, - [1782] = {.lex_state = 43}, - [1783] = {.lex_state = 0}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 0}, - [1786] = {.lex_state = 0}, - [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, - [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, - [1791] = {.lex_state = 23}, - [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 0}, - [1794] = {.lex_state = 0}, - [1795] = {.lex_state = 43}, - [1796] = {.lex_state = 43}, - [1797] = {.lex_state = 36}, - [1798] = {.lex_state = 23}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 0}, - [1801] = {.lex_state = 36}, - [1802] = {.lex_state = 43}, - [1803] = {.lex_state = 23}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, - [1806] = {.lex_state = 23}, - [1807] = {.lex_state = 23}, - [1808] = {.lex_state = 23}, - [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 36}, - [1811] = {.lex_state = 43}, - [1812] = {.lex_state = 36}, - [1813] = {.lex_state = 36}, - [1814] = {.lex_state = 0}, - [1815] = {.lex_state = 23}, - [1816] = {.lex_state = 0}, - [1817] = {.lex_state = 36}, - [1818] = {.lex_state = 0}, - [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 36}, - [1821] = {.lex_state = 0}, - [1822] = {.lex_state = 0}, - [1823] = {.lex_state = 0}, - [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 0}, - [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 0}, - [1830] = {.lex_state = 0}, - [1831] = {.lex_state = 0}, - [1832] = {.lex_state = 0}, - [1833] = {.lex_state = 0}, - [1834] = {.lex_state = 43}, - [1835] = {.lex_state = 43}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 36}, - [1838] = {.lex_state = 23}, - [1839] = {.lex_state = 43}, - [1840] = {.lex_state = 43}, - [1841] = {.lex_state = 43}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, - [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 0}, - [1846] = {.lex_state = 0}, - [1847] = {.lex_state = 36}, - [1848] = {.lex_state = 23}, - [1849] = {.lex_state = 43}, - [1850] = {.lex_state = 0}, - [1851] = {.lex_state = 43}, - [1852] = {.lex_state = 43}, - [1853] = {.lex_state = 43}, - [1854] = {.lex_state = 43}, - [1855] = {.lex_state = 0}, - [1856] = {.lex_state = 0}, - [1857] = {.lex_state = 0}, - [1858] = {.lex_state = 36}, - [1859] = {.lex_state = 36}, - [1860] = {.lex_state = 43}, - [1861] = {.lex_state = 43}, - [1862] = {.lex_state = 0}, - [1863] = {.lex_state = 36}, - [1864] = {.lex_state = 43}, - [1865] = {.lex_state = 23}, - [1866] = {.lex_state = 36}, - [1867] = {.lex_state = 43}, - [1868] = {.lex_state = 43}, - [1869] = {.lex_state = 36}, - [1870] = {.lex_state = 0}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 43}, - [1874] = {.lex_state = 36}, - [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 0}, - [1877] = {.lex_state = 0}, - [1878] = {.lex_state = 36}, - [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 0}, - [1881] = {.lex_state = 0}, - [1882] = {.lex_state = 43}, - [1883] = {.lex_state = 102}, - [1884] = {.lex_state = 0}, - [1885] = {.lex_state = 43}, - [1886] = {.lex_state = 0}, - [1887] = {.lex_state = 23}, - [1888] = {.lex_state = 0}, - [1889] = {.lex_state = 43}, - [1890] = {.lex_state = 0}, - [1891] = {.lex_state = 36}, - [1892] = {.lex_state = 36}, - [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 36}, - [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 0}, - [1897] = {.lex_state = 0}, - [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 23}, - [1900] = {.lex_state = 23}, - [1901] = {.lex_state = 23}, - [1902] = {.lex_state = 0}, - [1903] = {.lex_state = 43}, - [1904] = {.lex_state = 23}, - [1905] = {.lex_state = 0}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 0}, - [1909] = {.lex_state = 102}, - [1910] = {.lex_state = 0}, - [1911] = {.lex_state = 102}, - [1912] = {.lex_state = 43}, - [1913] = {.lex_state = 0}, - [1914] = {.lex_state = 0}, - [1915] = {.lex_state = 0}, - [1916] = {.lex_state = 102}, - [1917] = {.lex_state = 43}, - [1918] = {.lex_state = 43}, - [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, - [1921] = {.lex_state = 102}, - [1922] = {.lex_state = 0}, - [1923] = {.lex_state = 0}, - [1924] = {.lex_state = 0}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 102}, - [1927] = {.lex_state = 23}, - [1928] = {.lex_state = 102}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 102}, - [1932] = {.lex_state = 23}, - [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 43}, - [1935] = {.lex_state = 102}, - [1936] = {.lex_state = 102}, - [1937] = {.lex_state = 102}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [aux_sym_preproc_include_token1] = ACTIONS(1), - [aux_sym_preproc_def_token1] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [aux_sym_preproc_if_token1] = ACTIONS(1), - [aux_sym_preproc_if_token2] = ACTIONS(1), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1), - [aux_sym_preproc_else_token1] = ACTIONS(1), - [aux_sym_preproc_elif_token1] = ACTIONS(1), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1), - [sym_preproc_directive] = ACTIONS(1), - [anon_sym_LPAREN2] = ACTIONS(1), - [anon_sym_defined] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_typedef] = ACTIONS(1), - [anon_sym_extern] = ACTIONS(1), - [anon_sym___attribute__] = ACTIONS(1), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym___declspec] = ACTIONS(1), - [anon_sym___based] = ACTIONS(1), - [anon_sym___cdecl] = ACTIONS(1), - [anon_sym___clrcall] = ACTIONS(1), - [anon_sym___stdcall] = ACTIONS(1), - [anon_sym___fastcall] = ACTIONS(1), - [anon_sym___thiscall] = ACTIONS(1), - [anon_sym___vectorcall] = ACTIONS(1), - [sym_ms_restrict_modifier] = ACTIONS(1), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(1), - [sym_ms_signed_ptr_modifier] = ACTIONS(1), - [anon_sym__unaligned] = ACTIONS(1), - [anon_sym___unaligned] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_auto] = ACTIONS(1), - [anon_sym_register] = ACTIONS(1), - [anon_sym_inline] = ACTIONS(1), - [anon_sym_thread_local] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_constexpr] = ACTIONS(1), - [anon_sym_volatile] = ACTIONS(1), - [anon_sym_restrict] = ACTIONS(1), - [anon_sym___restrict__] = ACTIONS(1), - [anon_sym__Atomic] = ACTIONS(1), - [anon_sym__Noreturn] = ACTIONS(1), - [anon_sym_noreturn] = ACTIONS(1), - [anon_sym_signed] = ACTIONS(1), - [anon_sym_unsigned] = ACTIONS(1), - [anon_sym_long] = ACTIONS(1), - [anon_sym_short] = ACTIONS(1), - [sym_primitive_type] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_union] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_switch] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_default] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_goto] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_sizeof] = ACTIONS(1), - [anon_sym_offsetof] = ACTIONS(1), - [anon_sym__Generic] = ACTIONS(1), - [anon_sym_asm] = ACTIONS(1), - [anon_sym___asm__] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [sym_number_literal] = ACTIONS(1), - [anon_sym_L_SQUOTE] = ACTIONS(1), - [anon_sym_u_SQUOTE] = ACTIONS(1), - [anon_sym_U_SQUOTE] = ACTIONS(1), - [anon_sym_u8_SQUOTE] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_L_DQUOTE] = ACTIONS(1), - [anon_sym_u_DQUOTE] = ACTIONS(1), - [anon_sym_U_DQUOTE] = ACTIONS(1), - [anon_sym_u8_DQUOTE] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_true] = ACTIONS(1), - [sym_false] = ACTIONS(1), - [anon_sym_NULL] = ACTIONS(1), - [anon_sym_nullptr] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - }, - [1] = { - [sym_translation_unit] = STATE(1905), - [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(817), - [sym__declaration_specifiers] = STATE(1311), - [sym__function_declaration_specifiers] = STATE(1310), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(804), - [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(960), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1123), - [sym__expression_not_binary] = STATE(1124), - [sym_conditional_expression] = STATE(1124), - [sym_assignment_expression] = STATE(1124), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(1124), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(1124), - [sym_cast_expression] = STATE(1124), - [sym_sizeof_expression] = STATE(1124), - [sym_offsetof_expression] = STATE(1124), - [sym_generic_expression] = STATE(1124), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(1124), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(1124), - [sym_concatenated_string] = STATE(1124), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(1124), - [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [ts_builtin_sym_end] = ACTIONS(5), - [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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [2] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1729), - [sym_preproc_elif] = STATE(1729), - [sym_preproc_elifdef] = STATE(1729), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [3] = { - [sym_preproc_include] = STATE(2), - [sym_preproc_def] = STATE(2), - [sym_preproc_function_def] = STATE(2), - [sym_preproc_call] = STATE(2), - [sym_preproc_if] = STATE(2), - [sym_preproc_ifdef] = STATE(2), - [sym_preproc_else] = STATE(1755), - [sym_preproc_elif] = STATE(1755), - [sym_preproc_elifdef] = STATE(1755), - [sym_function_definition] = STATE(2), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(2), - [sym_labeled_statement] = STATE(2), - [sym_expression_statement] = STATE(2), - [sym_if_statement] = STATE(2), - [sym_switch_statement] = STATE(2), - [sym_case_statement] = STATE(2), - [sym_while_statement] = STATE(2), - [sym_do_statement] = STATE(2), - [sym_for_statement] = STATE(2), - [sym_return_statement] = STATE(2), - [sym_break_statement] = STATE(2), - [sym_continue_statement] = STATE(2), - [sym_goto_statement] = STATE(2), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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(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(1869), - [sym_preproc_elif] = STATE(1869), - [sym_preproc_elifdef] = STATE(1869), - [sym_function_definition] = STATE(9), - [sym_declaration] = STATE(9), - [sym_type_definition] = STATE(9), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(9), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(9), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(9), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(9), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [5] = { - [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(1859), - [sym_preproc_elif] = STATE(1859), - [sym_preproc_elifdef] = STATE(1859), - [sym_function_definition] = STATE(11), - [sym_declaration] = STATE(11), - [sym_type_definition] = STATE(11), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(11), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(11), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(11), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(11), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [6] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1837), - [sym_preproc_elif] = STATE(1837), - [sym_preproc_elifdef] = STATE(1837), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [7] = { - [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(1750), - [sym_preproc_elif] = STATE(1750), - [sym_preproc_elifdef] = STATE(1750), - [sym_function_definition] = STATE(8), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [8] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1781), - [sym_preproc_elif] = STATE(1781), - [sym_preproc_elifdef] = STATE(1781), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), +static inline bool sym_identifier_character_set_5(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(103); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(108); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(101) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(35) + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(35) + if (lookahead == '\r') SKIP(1) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(38) + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(38) + if (lookahead == '\r') SKIP(3) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 5: + if (lookahead == '\n') SKIP(37) + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(37) + if (lookahead == '\r') SKIP(5) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(40) + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(40) + if (lookahead == '\r') SKIP(7) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(44) + END_STATE(); + case 10: + if (lookahead == '\n') SKIP(44) + if (lookahead == '\r') SKIP(9) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 11: + if (lookahead == '\n') SKIP(45) + END_STATE(); + case 12: + if (lookahead == '\n') SKIP(45) + if (lookahead == '\r') SKIP(11) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 13: + if (lookahead == '\n') SKIP(43) + END_STATE(); + case 14: + if (lookahead == '\n') SKIP(43) + if (lookahead == '\r') SKIP(13) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 15: + if (lookahead == '\n') SKIP(48) + END_STATE(); + case 16: + if (lookahead == '\n') SKIP(48) + if (lookahead == '\r') SKIP(15) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 17: + if (lookahead == '\n') SKIP(42) + END_STATE(); + case 18: + if (lookahead == '\n') SKIP(42) + if (lookahead == '\r') SKIP(17) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 19: + if (lookahead == '\n') SKIP(41) + END_STATE(); + case 20: + if (lookahead == '\n') SKIP(41) + if (lookahead == '\r') SKIP(19) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 21: + if (lookahead == '\n') SKIP(23) + END_STATE(); + case 22: + if (lookahead == '\n') SKIP(23) + if (lookahead == '\r') SKIP(21) + END_STATE(); + case 23: + if (lookahead == '\n') ADVANCE(105); + if (lookahead == '!') ADVANCE(58); + if (lookahead == '%') ADVANCE(185); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(176); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '/') ADVANCE(183); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(59); + if (lookahead == '>') ADVANCE(199); + if (lookahead == '\\') SKIP(22) + if (lookahead == '^') ADVANCE(191); + if (lookahead == '|') ADVANCE(190); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(23) + END_STATE(); + case 24: + if (lookahead == '\n') SKIP(46) + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(46) + if (lookahead == '\r') SKIP(24) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 26: + if (lookahead == '\n') ADVANCE(106); + if (lookahead == '(') ADVANCE(108); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (lookahead != 0) ADVANCE(127); + END_STATE(); + case 27: + if (lookahead == '\n') ADVANCE(106); + if (lookahead == '/') ADVANCE(126); + if (lookahead == '\\') ADVANCE(124); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (lookahead != 0) ADVANCE(127); + END_STATE(); + case 28: + if (lookahead == '\n') SKIP(47) + if (lookahead == '"') ADVANCE(265); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '\\') ADVANCE(29); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(269); + if (lookahead != 0) ADVANCE(270); + END_STATE(); + case 29: + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(271); + if (lookahead == 'U') ADVANCE(99); + if (lookahead == 'u') ADVANCE(91); + if (lookahead == 'x') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (lookahead != 0) ADVANCE(271); + END_STATE(); + case 30: + if (lookahead == '\n') SKIP(56) + if (lookahead == '/') ADVANCE(259); + if (lookahead == '\\') ADVANCE(258); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(260); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(257); + END_STATE(); + case 31: + if (lookahead == '\n') SKIP(36) + END_STATE(); + case 32: + if (lookahead == '\n') SKIP(36) + if (lookahead == '\r') SKIP(31) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 33: + if (lookahead == '\n') SKIP(39) + END_STATE(); + case 34: + if (lookahead == '\n') SKIP(39) + if (lookahead == '\r') SKIP(33) + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 35: + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(35) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 36: + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(74); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(214); + if (lookahead == '\\') ADVANCE(32); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 37: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(57); + if (lookahead == ';') ADVANCE(208); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(6); + if (lookahead == ']') ADVANCE(64); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(37) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 38: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(71); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '=') ADVANCE(217); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(216); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 39: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(67); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ';') ADVANCE(208); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(34); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(39) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 40: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(69); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ';') ADVANCE(208); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(8); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(40) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 41: + if (lookahead == '!') ADVANCE(168); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '+') ADVANCE(180); + if (lookahead == '-') ADVANCE(175); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == 'L') ADVANCE(285); + if (lookahead == 'U') ADVANCE(286); + if (lookahead == '\\') ADVANCE(20); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(287); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 42: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(179); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(184); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(278); + if (lookahead == 'U') ADVANCE(280); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(18); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(282); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(42) + END_STATE(); + case 43: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(72); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(179); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(184); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(14); + if (lookahead == ']') ADVANCE(64); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(289); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + END_STATE(); + case 44: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(66); + if (lookahead == '%') ADVANCE(185); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(176); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(171); + if (lookahead == '.') ADVANCE(54); + if (lookahead == '/') ADVANCE(183); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(203); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(199); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(10); + if (lookahead == '^') ADVANCE(191); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(289); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(190); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(44) + END_STATE(); + case 45: + if (lookahead == '!') ADVANCE(58); + if (lookahead == '#') ADVANCE(70); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(179); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(174); + if (lookahead == '.') ADVANCE(233); + if (lookahead == '/') ADVANCE(184); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(12); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(289); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(45) + END_STATE(); + case 46: + if (lookahead == '"') ADVANCE(265); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '<') ADVANCE(60); + if (lookahead == 'L') ADVANCE(278); + if (lookahead == 'U') ADVANCE(280); + if (lookahead == '\\') ADVANCE(25); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(282); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(46) + END_STATE(); + case 47: + if (lookahead == '"') ADVANCE(265); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '\\') ADVANCE(29); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(47) + END_STATE(); + case 48: + if (lookahead == '#') ADVANCE(68); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '[') ADVANCE(63); + if (lookahead == '\\') ADVANCE(16); + if (sym_identifier_character_set_4(lookahead)) ADVANCE(289); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(48) + END_STATE(); + case 49: + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); + END_STATE(); + case 50: + if (lookahead == '*') ADVANCE(50); + if (lookahead == '/') ADVANCE(290); + if (lookahead != 0) ADVANCE(51); + END_STATE(); + case 51: + if (lookahead == '*') ADVANCE(50); + if (lookahead != 0) ADVANCE(51); + END_STATE(); + case 52: + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(239); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 53: + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 54: + if (lookahead == '.') ADVANCE(55); + END_STATE(); + case 55: + if (lookahead == '.') ADVANCE(109); + END_STATE(); + case 56: + if (lookahead == '/') ADVANCE(49); + if (lookahead == '\\') ADVANCE(29); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(56) + END_STATE(); + case 57: + if (lookahead == ':') ADVANCE(209); + END_STATE(); + case 58: + if (lookahead == '=') ADVANCE(197); + END_STATE(); + case 59: + if (lookahead == '=') ADVANCE(196); + END_STATE(); + case 60: + if (lookahead == '>') ADVANCE(275); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(60); + END_STATE(); + case 61: + if (lookahead == '>') ADVANCE(276); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(60); + END_STATE(); + case 62: + if (lookahead == 'U') ADVANCE(98); + if (lookahead == 'u') ADVANCE(90); + END_STATE(); + case 63: + if (lookahead == '[') ADVANCE(210); + END_STATE(); + case 64: + if (lookahead == ']') ADVANCE(211); + END_STATE(); + case 65: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'e') ADVANCE(160); + if (lookahead == 'i') ADVANCE(146); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(65); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 66: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'e') ADVANCE(160); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(66); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 67: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'i') ADVANCE(146); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(67); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 68: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'e') ADVANCE(163); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(68); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 69: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'i') ADVANCE(146); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(69); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 70: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'e') ADVANCE(162); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 71: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'i') ADVANCE(146); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(71); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 72: + if (lookahead == 'd') ADVANCE(138); + if (lookahead == 'i') ADVANCE(147); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(72); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 73: + if (lookahead == 'd') ADVANCE(76); + END_STATE(); + case 74: + if (lookahead == 'e') ADVANCE(77); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(74); + END_STATE(); + case 75: + if (lookahead == 'f') ADVANCE(113); + END_STATE(); + case 76: + if (lookahead == 'i') ADVANCE(75); + END_STATE(); + case 77: + if (lookahead == 'n') ADVANCE(73); + END_STATE(); + case 78: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 79: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + END_STATE(); + case 80: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 81: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(289); + END_STATE(); + case 82: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); + END_STATE(); + case 83: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); + END_STATE(); + case 84: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); + END_STATE(); + case 85: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(271); + END_STATE(); + case 86: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(81); + END_STATE(); + case 87: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(85); + END_STATE(); + case 88: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(86); + END_STATE(); + case 89: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(87); + END_STATE(); + case 90: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(88); + END_STATE(); + case 91: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(89); + END_STATE(); + case 92: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(90); + END_STATE(); + case 93: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(91); + END_STATE(); + case 94: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(92); + END_STATE(); + case 95: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); + END_STATE(); + case 96: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(94); + END_STATE(); + case 97: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(95); + END_STATE(); + case 98: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(96); + END_STATE(); + case 99: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(97); + END_STATE(); + case 100: + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(291); + if (lookahead == '\r') ADVANCE(295); + if (lookahead == '\\') ADVANCE(293); + END_STATE(); + case 101: + if (eof) ADVANCE(103); + if (lookahead == '!') ADVANCE(169); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(65); + if (lookahead == '%') ADVANCE(186); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(182); + if (lookahead == '+') ADVANCE(177); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(172); + if (lookahead == '.') ADVANCE(234); + if (lookahead == '/') ADVANCE(184); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(218); + if (lookahead == '>') ADVANCE(198); + if (lookahead == '?') ADVANCE(220); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == ']') ADVANCE(216); + if (lookahead == '^') ADVANCE(192); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '|') ADVANCE(189); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(101) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 102: + if (eof) ADVANCE(103); + if (lookahead == '!') ADVANCE(168); + if (lookahead == '"') ADVANCE(265); + if (lookahead == '#') ADVANCE(71); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(256); + if (lookahead == '(') ADVANCE(167); + if (lookahead == ')') ADVANCE(111); + if (lookahead == '*') ADVANCE(181); + if (lookahead == '+') ADVANCE(178); + if (lookahead == ',') ADVANCE(110); + if (lookahead == '-') ADVANCE(173); + if (lookahead == '.') ADVANCE(235); + if (lookahead == '/') ADVANCE(49); + if (lookahead == '0') ADVANCE(240); + if (lookahead == ':') ADVANCE(219); + if (lookahead == ';') ADVANCE(208); + if (lookahead == '=') ADVANCE(217); + if (lookahead == 'L') ADVANCE(277); + if (lookahead == 'U') ADVANCE(279); + if (lookahead == '[') ADVANCE(215); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(216); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(289); + if (lookahead == 'u') ADVANCE(281); + if (lookahead == '{') ADVANCE(212); + if (lookahead == '}') ADVANCE(213); + if (lookahead == '~') ADVANCE(170); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(102) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 103: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 104: + ACCEPT_TOKEN(aux_sym_preproc_include_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(105); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(106); + if (lookahead == '\\') ADVANCE(124); + END_STATE(); + case 107: + ACCEPT_TOKEN(aux_sym_preproc_def_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 112: + ACCEPT_TOKEN(aux_sym_preproc_if_token1); + if (lookahead == 'd') ADVANCE(142); + if (lookahead == 'n') ADVANCE(136); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 113: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + END_STATE(); + case 114: + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 115: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 116: + ACCEPT_TOKEN(aux_sym_preproc_ifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 117: + ACCEPT_TOKEN(aux_sym_preproc_else_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 118: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (lookahead == 'd') ADVANCE(144); + if (lookahead == 'n') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 119: + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 120: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 121: + ACCEPT_TOKEN(aux_sym_preproc_elifdef_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 122: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(51); + if (lookahead == '*') ADVANCE(122); + if (lookahead == '/') ADVANCE(290); + if (lookahead == '\\') ADVANCE(128); + if (lookahead != 0) ADVANCE(123); + END_STATE(); + case 123: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') ADVANCE(51); + if (lookahead == '*') ADVANCE(122); + if (lookahead == '\\') ADVANCE(128); + if (lookahead != 0) ADVANCE(123); + END_STATE(); + case 124: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(27) + if (lookahead == '\r') ADVANCE(125); + if (lookahead == '\\') ADVANCE(129); + if (lookahead != 0) ADVANCE(127); + END_STATE(); + case 125: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\n') SKIP(27) + if (lookahead == '\\') ADVANCE(129); + if (lookahead != 0) ADVANCE(127); + END_STATE(); + case 126: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '*') ADVANCE(123); + if (lookahead == '/') ADVANCE(292); + if (lookahead == '\\') ADVANCE(129); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(127); + END_STATE(); + case 127: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '\\') ADVANCE(129); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(127); + END_STATE(); + case 128: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '*' && + lookahead != '\\') ADVANCE(123); + if (lookahead == '\r') ADVANCE(131); + if (lookahead == '*') ADVANCE(122); + if (lookahead == '\\') ADVANCE(128); + END_STATE(); + case 129: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(127); + if (lookahead == '\r') ADVANCE(132); + if (lookahead == '\\') ADVANCE(129); + END_STATE(); + case 130: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(292); + if (lookahead == '\r') ADVANCE(296); + if (lookahead == '\\') ADVANCE(294); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '*' && + lookahead != '\\') ADVANCE(123); + if (lookahead == '*') ADVANCE(122); + if (lookahead == '\\') ADVANCE(128); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(127); + if (lookahead == '\\') ADVANCE(129); + END_STATE(); + case 133: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'c') ADVANCE(161); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 134: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(158); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 135: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(141); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 136: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(143); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 137: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'd') ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(148); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 139: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(117); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(104); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(151); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(152); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(153); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'e') ADVANCE(154); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(112); + if (lookahead == 'n') ADVANCE(133); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 147: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(112); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 148: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(156); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 149: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(118); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 150: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 151: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(115); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 152: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(116); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(120); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 154: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(121); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 155: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'f') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(164); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 157: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(149); + if (lookahead == 's') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 158: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 159: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'i') ADVANCE(155); + if (lookahead == 's') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 160: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(157); + if (lookahead == 'n') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 161: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 162: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'l') ADVANCE(159); + if (lookahead == 'n') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 163: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 164: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'n') ADVANCE(140); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 165: + ACCEPT_TOKEN(sym_preproc_directive); + if (lookahead == 'u') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 166: + ACCEPT_TOKEN(sym_preproc_directive); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_LPAREN2); + END_STATE(); + case 168: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 169: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(197); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 171: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 172: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(236); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(231); + if (lookahead == '=') ADVANCE(225); + if (lookahead == '>') ADVANCE(236); + END_STATE(); + case 175: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (lookahead == '=') ADVANCE(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(232); + if (lookahead == '=') ADVANCE(224); + END_STATE(); + case 180: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '.') ADVANCE(79); + if (lookahead == '0') ADVANCE(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(221); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); + if (lookahead == '=') ADVANCE(222); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 186: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(223); + END_STATE(); + case 187: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 188: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 189: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(230); + if (lookahead == '|') ADVANCE(187); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '|') ADVANCE(187); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(229); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(188); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(188); + if (lookahead == '=') ADVANCE(228); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(207); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(206); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(205); + if (lookahead == '=') ADVANCE(201); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(204); + if (lookahead == '=') ADVANCE(201); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(226); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(227); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 209: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 210: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(210); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(196); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + END_STATE(); + case 235: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + END_STATE(); + case 236: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 237: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(79); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + END_STATE(); + case 238: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(248); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'b') ADVANCE(247); + if (lookahead == 'x') ADVANCE(83); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(246); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + END_STATE(); + case 239: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(80); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(248); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(246); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + END_STATE(); + case 240: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(78); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'b') ADVANCE(53); + if (lookahead == 'x') ADVANCE(52); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 241: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(78); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'b') ADVANCE(78); + if (lookahead == 'x') ADVANCE(83); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 242: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(78); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'P' || + lookahead == 'e' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); + END_STATE(); + case 243: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(84); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(243); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(243); + END_STATE(); + case 244: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(82); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(245); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == '+' || + lookahead == '-') ADVANCE(84); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(244); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); + END_STATE(); + case 245: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(82); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(245); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(244); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); + END_STATE(); + case 246: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(83); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(248); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == '+' || + lookahead == '-') ADVANCE(84); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(246); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + END_STATE(); + case 247: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(83); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(248); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(246); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(239); + END_STATE(); + case 248: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '\'') ADVANCE(83); + if (lookahead == '.') ADVANCE(249); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(248); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(246); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(248); + END_STATE(); + case 249: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(245); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(244); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'D') || + ('a' <= lookahead && lookahead <= 'd')) ADVANCE(245); + END_STATE(); + case 250: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(243); + if (lookahead == 'L' || + lookahead == 'U' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + if (lookahead == '+' || + lookahead == '-') ADVANCE(84); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'E') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(243); + END_STATE(); + case 251: + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == 'F' || + lookahead == 'L' || + lookahead == 'U' || + lookahead == 'f' || + lookahead == 'l' || + lookahead == 'u') ADVANCE(251); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_L_SQUOTE); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_u_SQUOTE); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_U_SQUOTE); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_u8_SQUOTE); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 257: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + END_STATE(); + case 258: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\n') ADVANCE(272); + if (lookahead == '\r') ADVANCE(271); + if (lookahead == 'U') ADVANCE(99); + if (lookahead == 'u') ADVANCE(91); + if (lookahead == 'x') ADVANCE(87); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); + if (lookahead != 0) ADVANCE(271); + END_STATE(); + case 259: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '/') ADVANCE(291); + END_STATE(); + case 260: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '\\') ADVANCE(29); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_L_DQUOTE); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_u_DQUOTE); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_U_DQUOTE); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_u8_DQUOTE); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 266: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(268); + if (lookahead == '/') ADVANCE(270); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(270); + END_STATE(); + case 267: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(267); + if (lookahead == '/') ADVANCE(270); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(268); + END_STATE(); + case 268: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(267); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(268); + END_STATE(); + case 269: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(266); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(269); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(270); + END_STATE(); + case 270: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\') ADVANCE(270); + END_STATE(); + case 271: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(29); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(271); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_system_lib_string); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_system_lib_string); + if (lookahead == '>') ADVANCE(275); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(60); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(261); + if (lookahead == '\'') ADVANCE(252); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(261); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(263); + if (lookahead == '\'') ADVANCE(254); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(263); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(262); + if (lookahead == '\'') ADVANCE(253); + if (lookahead == '8') ADVANCE(283); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(262); + if (lookahead == '8') ADVANCE(284); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '\'') ADVANCE(255); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '"') ADVANCE(264); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(252); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 286: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(254); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(253); + if (lookahead == '8') ADVANCE(288); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\'') ADVANCE(255); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '\\') ADVANCE(62); + if (sym_identifier_character_set_5(lookahead)) ADVANCE(289); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_comment); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(100); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(291); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\\') ADVANCE(130); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(292); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(291); + if (lookahead == '\r') ADVANCE(295); + if (lookahead == '\\') ADVANCE(293); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '\\') ADVANCE(292); + if (lookahead == '\r') ADVANCE(296); + if (lookahead == '\\') ADVANCE(294); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(291); + if (lookahead == '\\') ADVANCE(100); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\\') ADVANCE(292); + if (lookahead == '\\') ADVANCE(130); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (lookahead == 'F') ADVANCE(1); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '\\') SKIP(4) + if (lookahead == '_') ADVANCE(5); + if (lookahead == 'a') ADVANCE(6); + if (lookahead == 'b') ADVANCE(7); + if (lookahead == 'c') ADVANCE(8); + if (lookahead == 'd') ADVANCE(9); + if (lookahead == 'e') ADVANCE(10); + if (lookahead == 'f') ADVANCE(11); + if (lookahead == 'g') ADVANCE(12); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'l') ADVANCE(14); + if (lookahead == 'm') ADVANCE(15); + if (lookahead == 'n') ADVANCE(16); + if (lookahead == 'o') ADVANCE(17); + if (lookahead == 'p') ADVANCE(18); + if (lookahead == 'r') ADVANCE(19); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 't') ADVANCE(21); + if (lookahead == 'u') ADVANCE(22); + if (lookahead == 'v') ADVANCE(23); + if (lookahead == 'w') ADVANCE(24); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'A') ADVANCE(25); + END_STATE(); + case 2: + if (lookahead == 'U') ADVANCE(26); + END_STATE(); + case 3: + if (lookahead == 'R') ADVANCE(27); + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(28) + END_STATE(); + case 5: + if (lookahead == 'A') ADVANCE(29); + if (lookahead == 'G') ADVANCE(30); + if (lookahead == 'N') ADVANCE(31); + if (lookahead == '_') ADVANCE(32); + if (lookahead == 'u') ADVANCE(33); + END_STATE(); + case 6: + if (lookahead == 's') ADVANCE(34); + if (lookahead == 'u') ADVANCE(35); + END_STATE(); + case 7: + if (lookahead == 'o') ADVANCE(36); + if (lookahead == 'r') ADVANCE(37); + END_STATE(); + case 8: + if (lookahead == 'a') ADVANCE(38); + if (lookahead == 'h') ADVANCE(39); + if (lookahead == 'o') ADVANCE(40); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(41); + if (lookahead == 'o') ADVANCE(42); + END_STATE(); + case 10: + if (lookahead == 'l') ADVANCE(43); + if (lookahead == 'n') ADVANCE(44); + if (lookahead == 'x') ADVANCE(45); + END_STATE(); + case 11: + if (lookahead == 'a') ADVANCE(46); + if (lookahead == 'l') ADVANCE(47); + if (lookahead == 'o') ADVANCE(48); + END_STATE(); + case 12: + if (lookahead == 'o') ADVANCE(49); + END_STATE(); + case 13: + if (lookahead == 'f') ADVANCE(50); + if (lookahead == 'n') ADVANCE(51); + END_STATE(); + case 14: + if (lookahead == 'o') ADVANCE(52); + END_STATE(); + case 15: + if (lookahead == 'a') ADVANCE(53); + END_STATE(); + case 16: + if (lookahead == 'o') ADVANCE(54); + if (lookahead == 'u') ADVANCE(55); + END_STATE(); + case 17: + if (lookahead == 'f') ADVANCE(56); + END_STATE(); + case 18: + if (lookahead == 't') ADVANCE(57); + END_STATE(); + case 19: + if (lookahead == 'e') ADVANCE(58); + 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); + END_STATE(); + case 21: + if (lookahead == 'h') ADVANCE(64); + if (lookahead == 'r') ADVANCE(65); + if (lookahead == 'y') ADVANCE(66); + END_STATE(); + case 22: + if (lookahead == 'i') ADVANCE(67); + if (lookahead == 'n') ADVANCE(68); + END_STATE(); + case 23: + if (lookahead == 'o') ADVANCE(69); + END_STATE(); + case 24: + if (lookahead == 'h') ADVANCE(70); + END_STATE(); + case 25: + if (lookahead == 'L') ADVANCE(71); + END_STATE(); + case 26: + if (lookahead == 'L') ADVANCE(72); + END_STATE(); + case 27: + if (lookahead == 'U') ADVANCE(73); + END_STATE(); + case 28: + if (lookahead == '\n') SKIP(0) + END_STATE(); + case 29: + if (lookahead == 't') ADVANCE(74); + END_STATE(); + case 30: + if (lookahead == 'e') ADVANCE(75); + END_STATE(); + case 31: + if (lookahead == 'o') ADVANCE(76); + 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); + END_STATE(); + case 33: + if (lookahead == 'n') ADVANCE(87); + END_STATE(); + case 34: + if (lookahead == 'm') ADVANCE(88); + END_STATE(); + case 35: + if (lookahead == 't') ADVANCE(89); + END_STATE(); + case 36: + if (lookahead == 'o') ADVANCE(90); + END_STATE(); + case 37: + if (lookahead == 'e') ADVANCE(91); + END_STATE(); + case 38: + if (lookahead == 's') ADVANCE(92); + END_STATE(); + case 39: + if (lookahead == 'a') ADVANCE(93); + END_STATE(); + case 40: + if (lookahead == 'n') ADVANCE(94); + END_STATE(); + case 41: + if (lookahead == 'f') ADVANCE(95); + END_STATE(); + case 42: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'u') ADVANCE(96); + END_STATE(); + case 43: + if (lookahead == 's') ADVANCE(97); + END_STATE(); + case 44: + if (lookahead == 'u') ADVANCE(98); + END_STATE(); + case 45: + if (lookahead == 't') ADVANCE(99); + END_STATE(); + case 46: + if (lookahead == 'l') ADVANCE(100); + END_STATE(); + case 47: + if (lookahead == 'o') ADVANCE(101); + END_STATE(); + case 48: + if (lookahead == 'r') ADVANCE(102); + END_STATE(); + case 49: + if (lookahead == 't') ADVANCE(103); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 51: + if (lookahead == 'l') ADVANCE(104); + if (lookahead == 't') ADVANCE(105); + END_STATE(); + case 52: + if (lookahead == 'n') ADVANCE(106); + END_STATE(); + case 53: + if (lookahead == 'x') ADVANCE(107); + END_STATE(); + case 54: + if (lookahead == 'r') ADVANCE(108); + END_STATE(); + case 55: + if (lookahead == 'l') ADVANCE(109); + END_STATE(); + case 56: + if (lookahead == 'f') ADVANCE(110); + END_STATE(); + case 57: + if (lookahead == 'r') ADVANCE(111); + END_STATE(); + case 58: + if (lookahead == 'g') ADVANCE(112); + if (lookahead == 's') ADVANCE(113); + if (lookahead == 't') ADVANCE(114); + END_STATE(); + case 59: + if (lookahead == 'o') ADVANCE(115); + END_STATE(); + case 60: + if (lookahead == 'g') ADVANCE(116); + if (lookahead == 'z') ADVANCE(117); + END_STATE(); + case 61: + if (lookahead == 'i') ADVANCE(118); + END_STATE(); + case 62: + if (lookahead == 'a') ADVANCE(119); + if (lookahead == 'r') ADVANCE(120); + END_STATE(); + case 63: + if (lookahead == 'i') ADVANCE(121); + END_STATE(); + case 64: + if (lookahead == 'r') ADVANCE(122); + END_STATE(); + case 65: + if (lookahead == 'u') ADVANCE(123); + END_STATE(); + case 66: + if (lookahead == 'p') ADVANCE(124); + END_STATE(); + case 67: + if (lookahead == 'n') ADVANCE(125); + END_STATE(); + case 68: + if (lookahead == 'i') ADVANCE(126); + if (lookahead == 's') ADVANCE(127); + END_STATE(); + case 69: + if (lookahead == 'i') ADVANCE(128); + if (lookahead == 'l') ADVANCE(129); + END_STATE(); + case 70: + if (lookahead == 'i') ADVANCE(130); + END_STATE(); + case 71: + if (lookahead == 'S') ADVANCE(131); + END_STATE(); + case 72: + if (lookahead == 'L') ADVANCE(132); + END_STATE(); + case 73: + if (lookahead == 'E') ADVANCE(133); + END_STATE(); + case 74: + if (lookahead == 'o') ADVANCE(134); + END_STATE(); + case 75: + if (lookahead == 'n') ADVANCE(135); + END_STATE(); + case 76: + if (lookahead == 'r') ADVANCE(136); + END_STATE(); + case 77: + if (lookahead == 's') ADVANCE(137); + if (lookahead == 't') ADVANCE(138); + END_STATE(); + case 78: + if (lookahead == 'a') ADVANCE(139); + END_STATE(); + case 79: + if (lookahead == 'd') ADVANCE(140); + if (lookahead == 'l') ADVANCE(141); + END_STATE(); + case 80: + if (lookahead == 'e') ADVANCE(142); + END_STATE(); + case 81: + if (lookahead == 'a') ADVANCE(143); + END_STATE(); + case 82: + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 83: + if (lookahead == 'p') ADVANCE(145); + if (lookahead == 't') ADVANCE(146); + END_STATE(); + case 84: + if (lookahead == 'h') ADVANCE(147); + END_STATE(); + case 85: + if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'p') ADVANCE(149); + END_STATE(); + case 86: + if (lookahead == 'e') ADVANCE(150); + END_STATE(); + case 87: + if (lookahead == 'a') ADVANCE(151); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_asm); + END_STATE(); + case 89: + if (lookahead == 'o') ADVANCE(152); + END_STATE(); + case 90: + if (lookahead == 'l') ADVANCE(153); + END_STATE(); + case 91: + if (lookahead == 'a') ADVANCE(154); + END_STATE(); + case 92: + if (lookahead == 'e') ADVANCE(155); + END_STATE(); + case 93: + if (lookahead == 'r') ADVANCE(156); + END_STATE(); + case 94: + if (lookahead == 's') ADVANCE(157); + if (lookahead == 't') ADVANCE(158); + END_STATE(); + case 95: + if (lookahead == 'a') ADVANCE(159); + if (lookahead == 'i') ADVANCE(160); + END_STATE(); + case 96: + if (lookahead == 'b') ADVANCE(161); + END_STATE(); + case 97: + if (lookahead == 'e') ADVANCE(162); + END_STATE(); + case 98: + if (lookahead == 'm') ADVANCE(163); + END_STATE(); + case 99: + if (lookahead == 'e') ADVANCE(164); + END_STATE(); + case 100: + if (lookahead == 's') ADVANCE(165); + END_STATE(); + case 101: + if (lookahead == 'a') ADVANCE(166); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 103: + if (lookahead == 'o') ADVANCE(167); + END_STATE(); + case 104: + if (lookahead == 'i') ADVANCE(168); + 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); + END_STATE(); + case 106: + if (lookahead == 'g') ADVANCE(174); + END_STATE(); + case 107: + if (lookahead == '_') ADVANCE(175); + END_STATE(); + case 108: + if (lookahead == 'e') ADVANCE(176); + END_STATE(); + case 109: + if (lookahead == 'l') ADVANCE(177); + END_STATE(); + case 110: + if (lookahead == 's') ADVANCE(178); + END_STATE(); + case 111: + if (lookahead == 'd') ADVANCE(179); + END_STATE(); + case 112: + if (lookahead == 'i') ADVANCE(180); + END_STATE(); + case 113: + if (lookahead == 't') ADVANCE(181); + END_STATE(); + case 114: + if (lookahead == 'u') ADVANCE(182); + END_STATE(); + case 115: + if (lookahead == 'r') ADVANCE(183); + END_STATE(); + case 116: + if (lookahead == 'n') ADVANCE(184); + END_STATE(); + case 117: + if (lookahead == 'e') ADVANCE(185); + END_STATE(); + case 118: + if (lookahead == 'z') ADVANCE(186); + END_STATE(); + case 119: + if (lookahead == 't') ADVANCE(187); + END_STATE(); + case 120: + if (lookahead == 'u') ADVANCE(188); + END_STATE(); + case 121: + if (lookahead == 't') ADVANCE(189); + END_STATE(); + case 122: + if (lookahead == 'e') ADVANCE(190); + END_STATE(); + case 123: + if (lookahead == 'e') ADVANCE(133); + END_STATE(); + case 124: + if (lookahead == 'e') ADVANCE(191); + END_STATE(); + case 125: + if (lookahead == 't') ADVANCE(192); + END_STATE(); + case 126: + if (lookahead == 'o') ADVANCE(193); + END_STATE(); + case 127: + if (lookahead == 'i') ADVANCE(194); + END_STATE(); + case 128: + if (lookahead == 'd') ADVANCE(153); + END_STATE(); + case 129: + if (lookahead == 'a') ADVANCE(195); + END_STATE(); + case 130: + if (lookahead == 'l') ADVANCE(196); + END_STATE(); + case 131: + if (lookahead == 'E') ADVANCE(197); + END_STATE(); + case 132: + ACCEPT_TOKEN(anon_sym_NULL); + END_STATE(); + case 133: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 134: + if (lookahead == 'm') ADVANCE(198); + END_STATE(); + case 135: + if (lookahead == 'e') ADVANCE(199); + END_STATE(); + case 136: + if (lookahead == 'e') ADVANCE(200); + END_STATE(); + case 137: + if (lookahead == 'm') ADVANCE(201); + END_STATE(); + case 138: + if (lookahead == 't') ADVANCE(202); + END_STATE(); + case 139: + if (lookahead == 's') ADVANCE(203); + END_STATE(); + case 140: + if (lookahead == 'e') ADVANCE(204); + END_STATE(); + case 141: + if (lookahead == 'r') ADVANCE(205); + END_STATE(); + case 142: + if (lookahead == 'c') ADVANCE(206); + END_STATE(); + case 143: + if (lookahead == 's') ADVANCE(207); + END_STATE(); + case 144: + if (lookahead == 's') ADVANCE(208); + END_STATE(); + case 145: + if (lookahead == 't') ADVANCE(209); + END_STATE(); + case 146: + if (lookahead == 'd') ADVANCE(210); + END_STATE(); + case 147: + if (lookahead == 'i') ADVANCE(211); + END_STATE(); + case 148: + if (lookahead == 'a') ADVANCE(212); + END_STATE(); + case 149: + if (lookahead == 't') ADVANCE(213); + END_STATE(); + case 150: + if (lookahead == 'c') ADVANCE(214); + END_STATE(); + case 151: + if (lookahead == 'l') ADVANCE(215); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_auto); + END_STATE(); + case 153: + ACCEPT_TOKEN(sym_primitive_type); + END_STATE(); + case 154: + if (lookahead == 'k') ADVANCE(216); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 156: + ACCEPT_TOKEN(sym_primitive_type); + if (lookahead == '1') ADVANCE(217); + if (lookahead == '3') ADVANCE(218); + if (lookahead == '6') ADVANCE(219); + if (lookahead == '8') ADVANCE(220); + if (lookahead == 'p') ADVANCE(221); + END_STATE(); + case 157: + if (lookahead == 't') ADVANCE(222); + END_STATE(); + case 158: + if (lookahead == 'i') ADVANCE(223); + END_STATE(); + case 159: + if (lookahead == 'u') ADVANCE(224); + END_STATE(); + case 160: + if (lookahead == 'n') ADVANCE(225); + END_STATE(); + case 161: + if (lookahead == 'l') ADVANCE(226); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_enum); + END_STATE(); + case 164: + if (lookahead == 'r') ADVANCE(227); + END_STATE(); + case 165: + if (lookahead == 'e') ADVANCE(197); + END_STATE(); + case 166: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_goto); + END_STATE(); + case 168: + if (lookahead == 'n') ADVANCE(228); + END_STATE(); + case 169: + if (lookahead == '6') ADVANCE(229); + END_STATE(); + case 170: + if (lookahead == '2') ADVANCE(230); + END_STATE(); + case 171: + if (lookahead == '4') ADVANCE(231); + END_STATE(); + case 172: + if (lookahead == '_') ADVANCE(232); + END_STATE(); + case 173: + if (lookahead == 't') ADVANCE(233); + END_STATE(); + case 174: + ACCEPT_TOKEN(anon_sym_long); + END_STATE(); + case 175: + if (lookahead == 'a') ADVANCE(234); + END_STATE(); + case 176: + if (lookahead == 't') ADVANCE(235); + END_STATE(); + case 177: + if (lookahead == 'p') ADVANCE(236); + END_STATE(); + case 178: + if (lookahead == 'e') ADVANCE(237); + END_STATE(); + case 179: + if (lookahead == 'i') ADVANCE(238); + END_STATE(); + case 180: + if (lookahead == 's') ADVANCE(239); + END_STATE(); + case 181: + if (lookahead == 'r') ADVANCE(240); + END_STATE(); + case 182: + if (lookahead == 'r') ADVANCE(241); + END_STATE(); + case 183: + if (lookahead == 't') ADVANCE(242); + END_STATE(); + case 184: + if (lookahead == 'e') ADVANCE(243); + END_STATE(); + case 185: + if (lookahead == '_') ADVANCE(244); + if (lookahead == 'o') ADVANCE(245); + END_STATE(); + case 186: + if (lookahead == 'e') ADVANCE(246); + END_STATE(); + case 187: + if (lookahead == 'i') ADVANCE(247); + END_STATE(); + case 188: + if (lookahead == 'c') ADVANCE(248); + END_STATE(); + case 189: + if (lookahead == 'c') ADVANCE(249); + END_STATE(); + case 190: + if (lookahead == 'a') ADVANCE(250); + END_STATE(); + case 191: + if (lookahead == 'd') ADVANCE(251); + END_STATE(); + case 192: + if (lookahead == '1') ADVANCE(252); + if (lookahead == '3') ADVANCE(253); + if (lookahead == '6') ADVANCE(254); + if (lookahead == '8') ADVANCE(255); + if (lookahead == 'p') ADVANCE(256); + END_STATE(); + case 193: + if (lookahead == 'n') ADVANCE(257); + END_STATE(); + case 194: + if (lookahead == 'g') ADVANCE(258); + END_STATE(); + case 195: + if (lookahead == 't') ADVANCE(259); + END_STATE(); + case 196: + if (lookahead == 'e') ADVANCE(260); + END_STATE(); + case 197: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 198: + if (lookahead == 'i') ADVANCE(261); + END_STATE(); + case 199: + if (lookahead == 'r') ADVANCE(262); + END_STATE(); + case 200: + if (lookahead == 't') ADVANCE(263); + END_STATE(); + case 201: + if (lookahead == '_') ADVANCE(264); + END_STATE(); + case 202: + if (lookahead == 'r') ADVANCE(265); + END_STATE(); + case 203: + if (lookahead == 'e') ADVANCE(266); + END_STATE(); + case 204: + if (lookahead == 'c') ADVANCE(267); + END_STATE(); + case 205: + if (lookahead == 'c') ADVANCE(268); + END_STATE(); + case 206: + if (lookahead == 'l') ADVANCE(269); + END_STATE(); + case 207: + if (lookahead == 't') ADVANCE(270); + END_STATE(); + case 208: + if (lookahead == 't') ADVANCE(271); + END_STATE(); + case 209: + if (lookahead == 'r') ADVANCE(272); + END_STATE(); + case 210: + if (lookahead == 'c') ADVANCE(273); + END_STATE(); + case 211: + if (lookahead == 's') ADVANCE(274); + END_STATE(); + case 212: + if (lookahead == 'l') ADVANCE(275); + END_STATE(); + case 213: + if (lookahead == 'r') ADVANCE(276); + END_STATE(); + case 214: + if (lookahead == 't') ADVANCE(277); + END_STATE(); + case 215: + if (lookahead == 'i') ADVANCE(278); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 217: + if (lookahead == '6') ADVANCE(279); + END_STATE(); + case 218: + if (lookahead == '2') ADVANCE(280); + END_STATE(); + case 219: + if (lookahead == '4') ADVANCE(281); + END_STATE(); + case 220: + if (lookahead == '_') ADVANCE(282); + END_STATE(); + case 221: + if (lookahead == 't') ADVANCE(283); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_const); + if (lookahead == 'e') ADVANCE(284); + END_STATE(); + case 223: + if (lookahead == 'n') ADVANCE(285); + END_STATE(); + case 224: + if (lookahead == 'l') ADVANCE(286); + END_STATE(); + case 225: + if (lookahead == 'e') ADVANCE(287); + END_STATE(); + case 226: + if (lookahead == 'e') ADVANCE(153); + END_STATE(); + case 227: + if (lookahead == 'n') ADVANCE(288); + END_STATE(); + case 228: + if (lookahead == 'e') ADVANCE(289); + END_STATE(); + case 229: + if (lookahead == '_') ADVANCE(290); + END_STATE(); + case 230: + if (lookahead == '_') ADVANCE(291); + END_STATE(); + case 231: + if (lookahead == '_') ADVANCE(292); + END_STATE(); + case 232: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 233: + if (lookahead == 'r') ADVANCE(293); + END_STATE(); + case 234: + if (lookahead == 'l') ADVANCE(294); + END_STATE(); + case 235: + if (lookahead == 'u') ADVANCE(295); + END_STATE(); + case 236: + if (lookahead == 't') ADVANCE(296); + END_STATE(); + case 237: + if (lookahead == 't') ADVANCE(297); + END_STATE(); + case 238: + if (lookahead == 'f') ADVANCE(298); + END_STATE(); + case 239: + if (lookahead == 't') ADVANCE(299); + END_STATE(); + case 240: + if (lookahead == 'i') ADVANCE(300); + END_STATE(); + case 241: + if (lookahead == 'n') ADVANCE(301); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_short); + END_STATE(); + case 243: + if (lookahead == 'd') ADVANCE(302); + END_STATE(); + case 244: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 245: + if (lookahead == 'f') ADVANCE(303); + END_STATE(); + case 246: + if (lookahead == '_') ADVANCE(304); + END_STATE(); + case 247: + if (lookahead == 'c') ADVANCE(305); + END_STATE(); + case 248: + if (lookahead == 't') ADVANCE(306); + END_STATE(); + case 249: + if (lookahead == 'h') ADVANCE(307); + END_STATE(); + case 250: + if (lookahead == 'd') ADVANCE(308); + END_STATE(); + case 251: + if (lookahead == 'e') ADVANCE(309); + END_STATE(); + case 252: + if (lookahead == '6') ADVANCE(310); + END_STATE(); + case 253: + if (lookahead == '2') ADVANCE(311); + END_STATE(); + case 254: + if (lookahead == '4') ADVANCE(312); + END_STATE(); + case 255: + if (lookahead == '_') ADVANCE(313); + END_STATE(); + case 256: + if (lookahead == 't') ADVANCE(314); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_union); + END_STATE(); + case 258: + if (lookahead == 'n') ADVANCE(315); + END_STATE(); + case 259: + if (lookahead == 'i') ADVANCE(316); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 261: + if (lookahead == 'c') ADVANCE(317); + END_STATE(); + case 262: + if (lookahead == 'i') ADVANCE(318); + END_STATE(); + case 263: + if (lookahead == 'u') ADVANCE(319); + END_STATE(); + case 264: + if (lookahead == '_') ADVANCE(320); + END_STATE(); + case 265: + if (lookahead == 'i') ADVANCE(321); + END_STATE(); + case 266: + if (lookahead == 'd') ADVANCE(322); + END_STATE(); + case 267: + if (lookahead == 'l') ADVANCE(323); + END_STATE(); + case 268: + if (lookahead == 'a') ADVANCE(324); + END_STATE(); + case 269: + if (lookahead == 's') ADVANCE(325); + END_STATE(); + case 270: + if (lookahead == 'c') ADVANCE(326); + END_STATE(); + case 271: + if (lookahead == 'r') ADVANCE(327); + END_STATE(); + case 272: + ACCEPT_TOKEN(sym_ms_signed_ptr_modifier); + END_STATE(); + case 273: + if (lookahead == 'a') ADVANCE(328); + END_STATE(); + case 274: + if (lookahead == 'c') ADVANCE(329); + END_STATE(); + case 275: + if (lookahead == 'i') ADVANCE(330); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_ms_unsigned_ptr_modifier); + END_STATE(); + case 277: + if (lookahead == 'o') ADVANCE(331); + END_STATE(); + case 278: + if (lookahead == 'g') ADVANCE(332); + END_STATE(); + case 279: + if (lookahead == '_') ADVANCE(333); + END_STATE(); + case 280: + if (lookahead == '_') ADVANCE(334); + END_STATE(); + case 281: + if (lookahead == '_') ADVANCE(335); + END_STATE(); + case 282: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 283: + if (lookahead == 'r') ADVANCE(336); + END_STATE(); + case 284: + if (lookahead == 'x') ADVANCE(337); + END_STATE(); + case 285: + if (lookahead == 'u') ADVANCE(338); + END_STATE(); + case 286: + if (lookahead == 't') ADVANCE(339); + END_STATE(); + case 287: + if (lookahead == 'd') ADVANCE(340); + END_STATE(); + case 288: + ACCEPT_TOKEN(anon_sym_extern); + END_STATE(); + case 289: + ACCEPT_TOKEN(anon_sym_inline); + END_STATE(); + case 290: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 291: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 292: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 293: + if (lookahead == '_') ADVANCE(341); + END_STATE(); + case 294: + if (lookahead == 'i') ADVANCE(342); + END_STATE(); + case 295: + if (lookahead == 'r') ADVANCE(343); + END_STATE(); + case 296: + if (lookahead == 'r') ADVANCE(344); + END_STATE(); + case 297: + if (lookahead == 'o') ADVANCE(345); + END_STATE(); + case 298: + if (lookahead == 'f') ADVANCE(346); + END_STATE(); + case 299: + if (lookahead == 'e') ADVANCE(347); + END_STATE(); + case 300: + if (lookahead == 'c') ADVANCE(348); + END_STATE(); + case 301: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 302: + ACCEPT_TOKEN(anon_sym_signed); + END_STATE(); + case 303: + ACCEPT_TOKEN(anon_sym_sizeof); + END_STATE(); + case 304: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 305: + ACCEPT_TOKEN(anon_sym_static); + END_STATE(); + case 306: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 307: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 308: + if (lookahead == '_') ADVANCE(349); + END_STATE(); + case 309: + if (lookahead == 'f') ADVANCE(350); + END_STATE(); + case 310: + if (lookahead == '_') ADVANCE(351); + END_STATE(); + case 311: + if (lookahead == '_') ADVANCE(352); + END_STATE(); + case 312: + if (lookahead == '_') ADVANCE(353); + END_STATE(); + case 313: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 314: + if (lookahead == 'r') ADVANCE(354); + END_STATE(); + case 315: + if (lookahead == 'e') ADVANCE(355); + END_STATE(); + case 316: + if (lookahead == 'l') ADVANCE(356); + END_STATE(); + case 317: + ACCEPT_TOKEN(anon_sym__Atomic); + END_STATE(); + case 318: + if (lookahead == 'c') ADVANCE(357); + END_STATE(); + case 319: + if (lookahead == 'r') ADVANCE(358); + END_STATE(); + case 320: + ACCEPT_TOKEN(anon_sym___asm__); + END_STATE(); + case 321: + if (lookahead == 'b') ADVANCE(359); + END_STATE(); + case 322: + ACCEPT_TOKEN(anon_sym___based); + END_STATE(); + case 323: + ACCEPT_TOKEN(anon_sym___cdecl); + END_STATE(); + case 324: + if (lookahead == 'l') ADVANCE(360); + END_STATE(); + case 325: + if (lookahead == 'p') ADVANCE(361); + END_STATE(); + case 326: + if (lookahead == 'a') ADVANCE(362); + END_STATE(); + case 327: + if (lookahead == 'i') ADVANCE(363); + END_STATE(); + case 328: + if (lookahead == 'l') ADVANCE(364); + END_STATE(); + case 329: + if (lookahead == 'a') ADVANCE(365); + END_STATE(); + case 330: + if (lookahead == 'g') ADVANCE(366); + END_STATE(); + case 331: + if (lookahead == 'r') ADVANCE(367); + END_STATE(); + case 332: + if (lookahead == 'n') ADVANCE(368); + END_STATE(); + case 333: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 334: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 335: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 336: + if (lookahead == '_') ADVANCE(369); + END_STATE(); + case 337: + if (lookahead == 'p') ADVANCE(370); + END_STATE(); + case 338: + if (lookahead == 'e') ADVANCE(371); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_default); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_defined); + END_STATE(); + case 341: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 342: + if (lookahead == 'g') ADVANCE(372); + END_STATE(); + case 343: + if (lookahead == 'n') ADVANCE(373); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_nullptr); + if (lookahead == '_') ADVANCE(374); + END_STATE(); + case 345: + if (lookahead == 'f') ADVANCE(375); + END_STATE(); + case 346: + if (lookahead == '_') ADVANCE(376); + END_STATE(); + case 347: + if (lookahead == 'r') ADVANCE(377); + END_STATE(); + case 348: + if (lookahead == 't') ADVANCE(378); + END_STATE(); + case 349: + if (lookahead == 'l') ADVANCE(379); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_typedef); + END_STATE(); + case 351: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 352: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 353: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 354: + if (lookahead == '_') ADVANCE(380); + END_STATE(); + case 355: + if (lookahead == 'd') ADVANCE(381); + END_STATE(); + case 356: + if (lookahead == 'e') ADVANCE(382); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym__Generic); + END_STATE(); + case 358: + if (lookahead == 'n') ADVANCE(383); + END_STATE(); + case 359: + if (lookahead == 'u') ADVANCE(384); + END_STATE(); + case 360: + if (lookahead == 'l') ADVANCE(385); + END_STATE(); + case 361: + if (lookahead == 'e') ADVANCE(386); + END_STATE(); + case 362: + if (lookahead == 'l') ADVANCE(387); + END_STATE(); + case 363: + if (lookahead == 'c') ADVANCE(388); + END_STATE(); + case 364: + if (lookahead == 'l') ADVANCE(389); + END_STATE(); + case 365: + if (lookahead == 'l') ADVANCE(390); + END_STATE(); + case 366: + if (lookahead == 'n') ADVANCE(391); + END_STATE(); + case 367: + if (lookahead == 'c') ADVANCE(392); + END_STATE(); + case 368: + if (lookahead == 'e') ADVANCE(393); + END_STATE(); + case 369: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 370: + if (lookahead == 'r') ADVANCE(394); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 372: + if (lookahead == 'n') ADVANCE(395); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_noreturn); + END_STATE(); + case 374: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_offsetof); + END_STATE(); + case 376: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_register); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_restrict); + END_STATE(); + case 379: + if (lookahead == 'o') ADVANCE(396); + END_STATE(); + case 380: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_unsigned); + END_STATE(); + case 382: + ACCEPT_TOKEN(anon_sym_volatile); + END_STATE(); + case 383: + ACCEPT_TOKEN(anon_sym__Noreturn); + END_STATE(); + case 384: + if (lookahead == 't') ADVANCE(397); + END_STATE(); + case 385: + ACCEPT_TOKEN(anon_sym___clrcall); + END_STATE(); + case 386: + if (lookahead == 'c') ADVANCE(398); + END_STATE(); + case 387: + if (lookahead == 'l') ADVANCE(399); + END_STATE(); + case 388: + if (lookahead == 't') ADVANCE(400); + END_STATE(); + case 389: + ACCEPT_TOKEN(anon_sym___stdcall); + END_STATE(); + case 390: + if (lookahead == 'l') ADVANCE(401); + END_STATE(); + case 391: + if (lookahead == 'e') ADVANCE(402); + END_STATE(); + case 392: + if (lookahead == 'a') ADVANCE(403); + END_STATE(); + case 393: + if (lookahead == 'd') ADVANCE(404); + END_STATE(); + case 394: + ACCEPT_TOKEN(anon_sym_constexpr); + END_STATE(); + case 395: + if (lookahead == '_') ADVANCE(405); + END_STATE(); + case 396: + if (lookahead == 'c') ADVANCE(406); + END_STATE(); + case 397: + if (lookahead == 'e') ADVANCE(407); + END_STATE(); + case 398: + ACCEPT_TOKEN(anon_sym___declspec); + END_STATE(); + case 399: + ACCEPT_TOKEN(anon_sym___fastcall); + END_STATE(); + case 400: + ACCEPT_TOKEN(sym_ms_restrict_modifier); + if (lookahead == '_') ADVANCE(408); + END_STATE(); + case 401: + ACCEPT_TOKEN(anon_sym___thiscall); + END_STATE(); + case 402: + if (lookahead == 'd') ADVANCE(409); + END_STATE(); + case 403: + if (lookahead == 'l') ADVANCE(410); + END_STATE(); + case 404: + ACCEPT_TOKEN(anon_sym__unaligned); + END_STATE(); + case 405: + if (lookahead == 't') ADVANCE(153); + END_STATE(); + case 406: + if (lookahead == 'a') ADVANCE(411); + END_STATE(); + case 407: + if (lookahead == '_') ADVANCE(412); + END_STATE(); + case 408: + if (lookahead == '_') ADVANCE(413); + END_STATE(); + case 409: + ACCEPT_TOKEN(anon_sym___unaligned); + END_STATE(); + case 410: + if (lookahead == 'l') ADVANCE(414); + END_STATE(); + case 411: + if (lookahead == 'l') ADVANCE(415); + END_STATE(); + case 412: + if (lookahead == '_') ADVANCE(416); + END_STATE(); + case 413: + ACCEPT_TOKEN(anon_sym___restrict__); + END_STATE(); + case 414: + ACCEPT_TOKEN(anon_sym___vectorcall); + END_STATE(); + case 415: + ACCEPT_TOKEN(anon_sym_thread_local); + END_STATE(); + case 416: + ACCEPT_TOKEN(anon_sym___attribute__); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0}, + [1] = {.lex_state = 102}, + [2] = {.lex_state = 37}, + [3] = {.lex_state = 37}, + [4] = {.lex_state = 37}, + [5] = {.lex_state = 37}, + [6] = {.lex_state = 37}, + [7] = {.lex_state = 37}, + [8] = {.lex_state = 37}, + [9] = {.lex_state = 37}, + [10] = {.lex_state = 37}, + [11] = {.lex_state = 37}, + [12] = {.lex_state = 40}, + [13] = {.lex_state = 40}, + [14] = {.lex_state = 40}, + [15] = {.lex_state = 40}, + [16] = {.lex_state = 40}, + [17] = {.lex_state = 40}, + [18] = {.lex_state = 40}, + [19] = {.lex_state = 40}, + [20] = {.lex_state = 40}, + [21] = {.lex_state = 40}, + [22] = {.lex_state = 40}, + [23] = {.lex_state = 40}, + [24] = {.lex_state = 40}, + [25] = {.lex_state = 37}, + [26] = {.lex_state = 40}, + [27] = {.lex_state = 40}, + [28] = {.lex_state = 102}, + [29] = {.lex_state = 102}, + [30] = {.lex_state = 102}, + [31] = {.lex_state = 102}, + [32] = {.lex_state = 102}, + [33] = {.lex_state = 102}, + [34] = {.lex_state = 102}, + [35] = {.lex_state = 102}, + [36] = {.lex_state = 102}, + [37] = {.lex_state = 102}, + [38] = {.lex_state = 102}, + [39] = {.lex_state = 102}, + [40] = {.lex_state = 102}, + [41] = {.lex_state = 39}, + [42] = {.lex_state = 102}, + [43] = {.lex_state = 102}, + [44] = {.lex_state = 102}, + [45] = {.lex_state = 102}, + [46] = {.lex_state = 102}, + [47] = {.lex_state = 102}, + [48] = {.lex_state = 39}, + [49] = {.lex_state = 102}, + [50] = {.lex_state = 39}, + [51] = {.lex_state = 102}, + [52] = {.lex_state = 102}, + [53] = {.lex_state = 102}, + [54] = {.lex_state = 37}, + [55] = {.lex_state = 37}, + [56] = {.lex_state = 37}, + [57] = {.lex_state = 37}, + [58] = {.lex_state = 37}, + [59] = {.lex_state = 40}, + [60] = {.lex_state = 40}, + [61] = {.lex_state = 40}, + [62] = {.lex_state = 40}, + [63] = {.lex_state = 40}, + [64] = {.lex_state = 102}, + [65] = {.lex_state = 102}, + [66] = {.lex_state = 39}, + [67] = {.lex_state = 102}, + [68] = {.lex_state = 39}, + [69] = {.lex_state = 39}, + [70] = {.lex_state = 102}, + [71] = {.lex_state = 102}, + [72] = {.lex_state = 39}, + [73] = {.lex_state = 102}, + [74] = {.lex_state = 102}, + [75] = {.lex_state = 39}, + [76] = {.lex_state = 102}, + [77] = {.lex_state = 102}, + [78] = {.lex_state = 102}, + [79] = {.lex_state = 102}, + [80] = {.lex_state = 102}, + [81] = {.lex_state = 102}, + [82] = {.lex_state = 102}, + [83] = {.lex_state = 102}, + [84] = {.lex_state = 102}, + [85] = {.lex_state = 102}, + [86] = {.lex_state = 102}, + [87] = {.lex_state = 102}, + [88] = {.lex_state = 102}, + [89] = {.lex_state = 102}, + [90] = {.lex_state = 36}, + [91] = {.lex_state = 37}, + [92] = {.lex_state = 37}, + [93] = {.lex_state = 37}, + [94] = {.lex_state = 37}, + [95] = {.lex_state = 37}, + [96] = {.lex_state = 37}, + [97] = {.lex_state = 37}, + [98] = {.lex_state = 37}, + [99] = {.lex_state = 37}, + [100] = {.lex_state = 37}, + [101] = {.lex_state = 37}, + [102] = {.lex_state = 37}, + [103] = {.lex_state = 37}, + [104] = {.lex_state = 37}, + [105] = {.lex_state = 37}, + [106] = {.lex_state = 37}, + [107] = {.lex_state = 37}, + [108] = {.lex_state = 37}, + [109] = {.lex_state = 37}, + [110] = {.lex_state = 37}, + [111] = {.lex_state = 37}, + [112] = {.lex_state = 37}, + [113] = {.lex_state = 37}, + [114] = {.lex_state = 37}, + [115] = {.lex_state = 37}, + [116] = {.lex_state = 37}, + [117] = {.lex_state = 37}, + [118] = {.lex_state = 37}, + [119] = {.lex_state = 37}, + [120] = {.lex_state = 37}, + [121] = {.lex_state = 37}, + [122] = {.lex_state = 37}, + [123] = {.lex_state = 37}, + [124] = {.lex_state = 37}, + [125] = {.lex_state = 37}, + [126] = {.lex_state = 37}, + [127] = {.lex_state = 37}, + [128] = {.lex_state = 37}, + [129] = {.lex_state = 37}, + [130] = {.lex_state = 37}, + [131] = {.lex_state = 37}, + [132] = {.lex_state = 37}, + [133] = {.lex_state = 37}, + [134] = {.lex_state = 37}, + [135] = {.lex_state = 37}, + [136] = {.lex_state = 37}, + [137] = {.lex_state = 37}, + [138] = {.lex_state = 37}, + [139] = {.lex_state = 37}, + [140] = {.lex_state = 37}, + [141] = {.lex_state = 37}, + [142] = {.lex_state = 37}, + [143] = {.lex_state = 40}, + [144] = {.lex_state = 37}, + [145] = {.lex_state = 37}, + [146] = {.lex_state = 37}, + [147] = {.lex_state = 37}, + [148] = {.lex_state = 37}, + [149] = {.lex_state = 37}, + [150] = {.lex_state = 37}, + [151] = {.lex_state = 37}, + [152] = {.lex_state = 37}, + [153] = {.lex_state = 37}, + [154] = {.lex_state = 40}, + [155] = {.lex_state = 40}, + [156] = {.lex_state = 40}, + [157] = {.lex_state = 40}, + [158] = {.lex_state = 40}, + [159] = {.lex_state = 40}, + [160] = {.lex_state = 102}, + [161] = {.lex_state = 40}, + [162] = {.lex_state = 40}, + [163] = {.lex_state = 40}, + [164] = {.lex_state = 40}, + [165] = {.lex_state = 40}, + [166] = {.lex_state = 102}, + [167] = {.lex_state = 40}, + [168] = {.lex_state = 40}, + [169] = {.lex_state = 40}, + [170] = {.lex_state = 40}, + [171] = {.lex_state = 40}, + [172] = {.lex_state = 40}, + [173] = {.lex_state = 40}, + [174] = {.lex_state = 40}, + [175] = {.lex_state = 40}, + [176] = {.lex_state = 40}, + [177] = {.lex_state = 40}, + [178] = {.lex_state = 40}, + [179] = {.lex_state = 40}, + [180] = {.lex_state = 40}, + [181] = {.lex_state = 40}, + [182] = {.lex_state = 40}, + [183] = {.lex_state = 40}, + [184] = {.lex_state = 40}, + [185] = {.lex_state = 40}, + [186] = {.lex_state = 40}, + [187] = {.lex_state = 40}, + [188] = {.lex_state = 40}, + [189] = {.lex_state = 40}, + [190] = {.lex_state = 40}, + [191] = {.lex_state = 40}, + [192] = {.lex_state = 40}, + [193] = {.lex_state = 40}, + [194] = {.lex_state = 40}, + [195] = {.lex_state = 40}, + [196] = {.lex_state = 40}, + [197] = {.lex_state = 102}, + [198] = {.lex_state = 40}, + [199] = {.lex_state = 40}, + [200] = {.lex_state = 40}, + [201] = {.lex_state = 40}, + [202] = {.lex_state = 40}, + [203] = {.lex_state = 40}, + [204] = {.lex_state = 39}, + [205] = {.lex_state = 40}, + [206] = {.lex_state = 102}, + [207] = {.lex_state = 36}, + [208] = {.lex_state = 40}, + [209] = {.lex_state = 40}, + [210] = {.lex_state = 40}, + [211] = {.lex_state = 40}, + [212] = {.lex_state = 40}, + [213] = {.lex_state = 40}, + [214] = {.lex_state = 40}, + [215] = {.lex_state = 40}, + [216] = {.lex_state = 40}, + [217] = {.lex_state = 40}, + [218] = {.lex_state = 40}, + [219] = {.lex_state = 40}, + [220] = {.lex_state = 40}, + [221] = {.lex_state = 102}, + [222] = {.lex_state = 102}, + [223] = {.lex_state = 39}, + [224] = {.lex_state = 39}, + [225] = {.lex_state = 39}, + [226] = {.lex_state = 39}, + [227] = {.lex_state = 39}, + [228] = {.lex_state = 39}, + [229] = {.lex_state = 39}, + [230] = {.lex_state = 39}, + [231] = {.lex_state = 102}, + [232] = {.lex_state = 39}, + [233] = {.lex_state = 39}, + [234] = {.lex_state = 102}, + [235] = {.lex_state = 102}, + [236] = {.lex_state = 39}, + [237] = {.lex_state = 39}, + [238] = {.lex_state = 39}, + [239] = {.lex_state = 102}, + [240] = {.lex_state = 102}, + [241] = {.lex_state = 102}, + [242] = {.lex_state = 102}, + [243] = {.lex_state = 102}, + [244] = {.lex_state = 102}, + [245] = {.lex_state = 39}, + [246] = {.lex_state = 102}, + [247] = {.lex_state = 39}, + [248] = {.lex_state = 102}, + [249] = {.lex_state = 102}, + [250] = {.lex_state = 102}, + [251] = {.lex_state = 102}, + [252] = {.lex_state = 102}, + [253] = {.lex_state = 39}, + [254] = {.lex_state = 39}, + [255] = {.lex_state = 39}, + [256] = {.lex_state = 39}, + [257] = {.lex_state = 102}, + [258] = {.lex_state = 102}, + [259] = {.lex_state = 39}, + [260] = {.lex_state = 102}, + [261] = {.lex_state = 39}, + [262] = {.lex_state = 39}, + [263] = {.lex_state = 102}, + [264] = {.lex_state = 102}, + [265] = {.lex_state = 102}, + [266] = {.lex_state = 39}, + [267] = {.lex_state = 102}, + [268] = {.lex_state = 39}, + [269] = {.lex_state = 102}, + [270] = {.lex_state = 39}, + [271] = {.lex_state = 102}, + [272] = {.lex_state = 39}, + [273] = {.lex_state = 39}, + [274] = {.lex_state = 39}, + [275] = {.lex_state = 39}, + [276] = {.lex_state = 39}, + [277] = {.lex_state = 39}, + [278] = {.lex_state = 102}, + [279] = {.lex_state = 39}, + [280] = {.lex_state = 39}, + [281] = {.lex_state = 102}, + [282] = {.lex_state = 39}, + [283] = {.lex_state = 39}, + [284] = {.lex_state = 102}, + [285] = {.lex_state = 102}, + [286] = {.lex_state = 102}, + [287] = {.lex_state = 102}, + [288] = {.lex_state = 102}, + [289] = {.lex_state = 102}, + [290] = {.lex_state = 102}, + [291] = {.lex_state = 39}, + [292] = {.lex_state = 102}, + [293] = {.lex_state = 39}, + [294] = {.lex_state = 102}, + [295] = {.lex_state = 102}, + [296] = {.lex_state = 102}, + [297] = {.lex_state = 39}, + [298] = {.lex_state = 39}, + [299] = {.lex_state = 102}, + [300] = {.lex_state = 102}, + [301] = {.lex_state = 102}, + [302] = {.lex_state = 102}, + [303] = {.lex_state = 102}, + [304] = {.lex_state = 102}, + [305] = {.lex_state = 102}, + [306] = {.lex_state = 102}, + [307] = {.lex_state = 102}, + [308] = {.lex_state = 102}, + [309] = {.lex_state = 102}, + [310] = {.lex_state = 102}, + [311] = {.lex_state = 102}, + [312] = {.lex_state = 102}, + [313] = {.lex_state = 102}, + [314] = {.lex_state = 102}, + [315] = {.lex_state = 102}, + [316] = {.lex_state = 102}, + [317] = {.lex_state = 102}, + [318] = {.lex_state = 102}, + [319] = {.lex_state = 102}, + [320] = {.lex_state = 102}, + [321] = {.lex_state = 102}, + [322] = {.lex_state = 102}, + [323] = {.lex_state = 102}, + [324] = {.lex_state = 102}, + [325] = {.lex_state = 102}, + [326] = {.lex_state = 102}, + [327] = {.lex_state = 102}, + [328] = {.lex_state = 102}, + [329] = {.lex_state = 102}, + [330] = {.lex_state = 102}, + [331] = {.lex_state = 102}, + [332] = {.lex_state = 102}, + [333] = {.lex_state = 102}, + [334] = {.lex_state = 102}, + [335] = {.lex_state = 102}, + [336] = {.lex_state = 102}, + [337] = {.lex_state = 102}, + [338] = {.lex_state = 102}, + [339] = {.lex_state = 102}, + [340] = {.lex_state = 102}, + [341] = {.lex_state = 102}, + [342] = {.lex_state = 102}, + [343] = {.lex_state = 102}, + [344] = {.lex_state = 102}, + [345] = {.lex_state = 102}, + [346] = {.lex_state = 102}, + [347] = {.lex_state = 102}, + [348] = {.lex_state = 102}, + [349] = {.lex_state = 102}, + [350] = {.lex_state = 102}, + [351] = {.lex_state = 102}, + [352] = {.lex_state = 102}, + [353] = {.lex_state = 102}, + [354] = {.lex_state = 102}, + [355] = {.lex_state = 102}, + [356] = {.lex_state = 102}, + [357] = {.lex_state = 102}, + [358] = {.lex_state = 102}, + [359] = {.lex_state = 102}, + [360] = {.lex_state = 102}, + [361] = {.lex_state = 102}, + [362] = {.lex_state = 102}, + [363] = {.lex_state = 102}, + [364] = {.lex_state = 102}, + [365] = {.lex_state = 102}, + [366] = {.lex_state = 102}, + [367] = {.lex_state = 102}, + [368] = {.lex_state = 102}, + [369] = {.lex_state = 102}, + [370] = {.lex_state = 102}, + [371] = {.lex_state = 102}, + [372] = {.lex_state = 102}, + [373] = {.lex_state = 102}, + [374] = {.lex_state = 102}, + [375] = {.lex_state = 102}, + [376] = {.lex_state = 102}, + [377] = {.lex_state = 102}, + [378] = {.lex_state = 102}, + [379] = {.lex_state = 102}, + [380] = {.lex_state = 102}, + [381] = {.lex_state = 102}, + [382] = {.lex_state = 102}, + [383] = {.lex_state = 102}, + [384] = {.lex_state = 102}, + [385] = {.lex_state = 102}, + [386] = {.lex_state = 102}, + [387] = {.lex_state = 102}, + [388] = {.lex_state = 102}, + [389] = {.lex_state = 102}, + [390] = {.lex_state = 102}, + [391] = {.lex_state = 102}, + [392] = {.lex_state = 102}, + [393] = {.lex_state = 102}, + [394] = {.lex_state = 102}, + [395] = {.lex_state = 102}, + [396] = {.lex_state = 102}, + [397] = {.lex_state = 102}, + [398] = {.lex_state = 102}, + [399] = {.lex_state = 102}, + [400] = {.lex_state = 102}, + [401] = {.lex_state = 102}, + [402] = {.lex_state = 39}, + [403] = {.lex_state = 102}, + [404] = {.lex_state = 102}, + [405] = {.lex_state = 102}, + [406] = {.lex_state = 102}, + [407] = {.lex_state = 102}, + [408] = {.lex_state = 102}, + [409] = {.lex_state = 102}, + [410] = {.lex_state = 102}, + [411] = {.lex_state = 102}, + [412] = {.lex_state = 102}, + [413] = {.lex_state = 102}, + [414] = {.lex_state = 102}, + [415] = {.lex_state = 102}, + [416] = {.lex_state = 102}, + [417] = {.lex_state = 102}, + [418] = {.lex_state = 102}, + [419] = {.lex_state = 102}, + [420] = {.lex_state = 102}, + [421] = {.lex_state = 102}, + [422] = {.lex_state = 102}, + [423] = {.lex_state = 102}, + [424] = {.lex_state = 102}, + [425] = {.lex_state = 102}, + [426] = {.lex_state = 102}, + [427] = {.lex_state = 102}, + [428] = {.lex_state = 102}, + [429] = {.lex_state = 102}, + [430] = {.lex_state = 102}, + [431] = {.lex_state = 102}, + [432] = {.lex_state = 102}, + [433] = {.lex_state = 102}, + [434] = {.lex_state = 102}, + [435] = {.lex_state = 102}, + [436] = {.lex_state = 102}, + [437] = {.lex_state = 102}, + [438] = {.lex_state = 102}, + [439] = {.lex_state = 102}, + [440] = {.lex_state = 102}, + [441] = {.lex_state = 102}, + [442] = {.lex_state = 102}, + [443] = {.lex_state = 102}, + [444] = {.lex_state = 102}, + [445] = {.lex_state = 102}, + [446] = {.lex_state = 102}, + [447] = {.lex_state = 102}, + [448] = {.lex_state = 102}, + [449] = {.lex_state = 102}, + [450] = {.lex_state = 102}, + [451] = {.lex_state = 102}, + [452] = {.lex_state = 102}, + [453] = {.lex_state = 39}, + [454] = {.lex_state = 39}, + [455] = {.lex_state = 39}, + [456] = {.lex_state = 39}, + [457] = {.lex_state = 39}, + [458] = {.lex_state = 39}, + [459] = {.lex_state = 39}, + [460] = {.lex_state = 39}, + [461] = {.lex_state = 39}, + [462] = {.lex_state = 39}, + [463] = {.lex_state = 39}, + [464] = {.lex_state = 39}, + [465] = {.lex_state = 39}, + [466] = {.lex_state = 102}, + [467] = {.lex_state = 39}, + [468] = {.lex_state = 39}, + [469] = {.lex_state = 39}, + [470] = {.lex_state = 39}, + [471] = {.lex_state = 39}, + [472] = {.lex_state = 39}, + [473] = {.lex_state = 39}, + [474] = {.lex_state = 39}, + [475] = {.lex_state = 102}, + [476] = {.lex_state = 102}, + [477] = {.lex_state = 102}, + [478] = {.lex_state = 102}, + [479] = {.lex_state = 102}, + [480] = {.lex_state = 102}, + [481] = {.lex_state = 102}, + [482] = {.lex_state = 102}, + [483] = {.lex_state = 102}, + [484] = {.lex_state = 102}, + [485] = {.lex_state = 102}, + [486] = {.lex_state = 102}, + [487] = {.lex_state = 102}, + [488] = {.lex_state = 102}, + [489] = {.lex_state = 102}, + [490] = {.lex_state = 102}, + [491] = {.lex_state = 102}, + [492] = {.lex_state = 102}, + [493] = {.lex_state = 102}, + [494] = {.lex_state = 102}, + [495] = {.lex_state = 102}, + [496] = {.lex_state = 102}, + [497] = {.lex_state = 102}, + [498] = {.lex_state = 102}, + [499] = {.lex_state = 102}, + [500] = {.lex_state = 102}, + [501] = {.lex_state = 102}, + [502] = {.lex_state = 102}, + [503] = {.lex_state = 102}, + [504] = {.lex_state = 102}, + [505] = {.lex_state = 102}, + [506] = {.lex_state = 102}, + [507] = {.lex_state = 102}, + [508] = {.lex_state = 102}, + [509] = {.lex_state = 102}, + [510] = {.lex_state = 102}, + [511] = {.lex_state = 102}, + [512] = {.lex_state = 102}, + [513] = {.lex_state = 102}, + [514] = {.lex_state = 102}, + [515] = {.lex_state = 102}, + [516] = {.lex_state = 102}, + [517] = {.lex_state = 102}, + [518] = {.lex_state = 102}, + [519] = {.lex_state = 102}, + [520] = {.lex_state = 102}, + [521] = {.lex_state = 102}, + [522] = {.lex_state = 102}, + [523] = {.lex_state = 102}, + [524] = {.lex_state = 36}, + [525] = {.lex_state = 102}, + [526] = {.lex_state = 102}, + [527] = {.lex_state = 36}, + [528] = {.lex_state = 102}, + [529] = {.lex_state = 102}, + [530] = {.lex_state = 102}, + [531] = {.lex_state = 102}, + [532] = {.lex_state = 102}, + [533] = {.lex_state = 102}, + [534] = {.lex_state = 102}, + [535] = {.lex_state = 102}, + [536] = {.lex_state = 102}, + [537] = {.lex_state = 102}, + [538] = {.lex_state = 102}, + [539] = {.lex_state = 102}, + [540] = {.lex_state = 102}, + [541] = {.lex_state = 44}, + [542] = {.lex_state = 44}, + [543] = {.lex_state = 44}, + [544] = {.lex_state = 44}, + [545] = {.lex_state = 44}, + [546] = {.lex_state = 44}, + [547] = {.lex_state = 44}, + [548] = {.lex_state = 44}, + [549] = {.lex_state = 44}, + [550] = {.lex_state = 102}, + [551] = {.lex_state = 102}, + [552] = {.lex_state = 102}, + [553] = {.lex_state = 44}, + [554] = {.lex_state = 45}, + [555] = {.lex_state = 45}, + [556] = {.lex_state = 45}, + [557] = {.lex_state = 45}, + [558] = {.lex_state = 45}, + [559] = {.lex_state = 45}, + [560] = {.lex_state = 45}, + [561] = {.lex_state = 45}, + [562] = {.lex_state = 45}, + [563] = {.lex_state = 45}, + [564] = {.lex_state = 45}, + [565] = {.lex_state = 45}, + [566] = {.lex_state = 45}, + [567] = {.lex_state = 45}, + [568] = {.lex_state = 45}, + [569] = {.lex_state = 45}, + [570] = {.lex_state = 45}, + [571] = {.lex_state = 45}, + [572] = {.lex_state = 45}, + [573] = {.lex_state = 45}, + [574] = {.lex_state = 45}, + [575] = {.lex_state = 45}, + [576] = {.lex_state = 45}, + [577] = {.lex_state = 43}, + [578] = {.lex_state = 43}, + [579] = {.lex_state = 48}, + [580] = {.lex_state = 102}, + [581] = {.lex_state = 102}, + [582] = {.lex_state = 48}, + [583] = {.lex_state = 48}, + [584] = {.lex_state = 43}, + [585] = {.lex_state = 102}, + [586] = {.lex_state = 102}, + [587] = {.lex_state = 102}, + [588] = {.lex_state = 102}, + [589] = {.lex_state = 102}, + [590] = {.lex_state = 102}, + [591] = {.lex_state = 102}, + [592] = {.lex_state = 102}, + [593] = {.lex_state = 102}, + [594] = {.lex_state = 102}, + [595] = {.lex_state = 102}, + [596] = {.lex_state = 102}, + [597] = {.lex_state = 102}, + [598] = {.lex_state = 44}, + [599] = {.lex_state = 102}, + [600] = {.lex_state = 102}, + [601] = {.lex_state = 102}, + [602] = {.lex_state = 102}, + [603] = {.lex_state = 102}, + [604] = {.lex_state = 102}, + [605] = {.lex_state = 102}, + [606] = {.lex_state = 102}, + [607] = {.lex_state = 102}, + [608] = {.lex_state = 102}, + [609] = {.lex_state = 102}, + [610] = {.lex_state = 102}, + [611] = {.lex_state = 102}, + [612] = {.lex_state = 102}, + [613] = {.lex_state = 102}, + [614] = {.lex_state = 102}, + [615] = {.lex_state = 102}, + [616] = {.lex_state = 102}, + [617] = {.lex_state = 102}, + [618] = {.lex_state = 102}, + [619] = {.lex_state = 102}, + [620] = {.lex_state = 102}, + [621] = {.lex_state = 102}, + [622] = {.lex_state = 102}, + [623] = {.lex_state = 102}, + [624] = {.lex_state = 102}, + [625] = {.lex_state = 102}, + [626] = {.lex_state = 102}, + [627] = {.lex_state = 102}, + [628] = {.lex_state = 102}, + [629] = {.lex_state = 102}, + [630] = {.lex_state = 102}, + [631] = {.lex_state = 102}, + [632] = {.lex_state = 102}, + [633] = {.lex_state = 102}, + [634] = {.lex_state = 102}, + [635] = {.lex_state = 102}, + [636] = {.lex_state = 102}, + [637] = {.lex_state = 102}, + [638] = {.lex_state = 102}, + [639] = {.lex_state = 102}, + [640] = {.lex_state = 102}, + [641] = {.lex_state = 102}, + [642] = {.lex_state = 102}, + [643] = {.lex_state = 102}, + [644] = {.lex_state = 102}, + [645] = {.lex_state = 102}, + [646] = {.lex_state = 102}, + [647] = {.lex_state = 102}, + [648] = {.lex_state = 102}, + [649] = {.lex_state = 102}, + [650] = {.lex_state = 102}, + [651] = {.lex_state = 102}, + [652] = {.lex_state = 102}, + [653] = {.lex_state = 102}, + [654] = {.lex_state = 102}, + [655] = {.lex_state = 102}, + [656] = {.lex_state = 102}, + [657] = {.lex_state = 102}, + [658] = {.lex_state = 102}, + [659] = {.lex_state = 102}, + [660] = {.lex_state = 102}, + [661] = {.lex_state = 102}, + [662] = {.lex_state = 102}, + [663] = {.lex_state = 102}, + [664] = {.lex_state = 102}, + [665] = {.lex_state = 102}, + [666] = {.lex_state = 102}, + [667] = {.lex_state = 102}, + [668] = {.lex_state = 102}, + [669] = {.lex_state = 102}, + [670] = {.lex_state = 102}, + [671] = {.lex_state = 102}, + [672] = {.lex_state = 102}, + [673] = {.lex_state = 102}, + [674] = {.lex_state = 102}, + [675] = {.lex_state = 102}, + [676] = {.lex_state = 102}, + [677] = {.lex_state = 44}, + [678] = {.lex_state = 102}, + [679] = {.lex_state = 102}, + [680] = {.lex_state = 44}, + [681] = {.lex_state = 102}, + [682] = {.lex_state = 102}, + [683] = {.lex_state = 102}, + [684] = {.lex_state = 102}, + [685] = {.lex_state = 102}, + [686] = {.lex_state = 102}, + [687] = {.lex_state = 102}, + [688] = {.lex_state = 102}, + [689] = {.lex_state = 102}, + [690] = {.lex_state = 102}, + [691] = {.lex_state = 102}, + [692] = {.lex_state = 102}, + [693] = {.lex_state = 102}, + [694] = {.lex_state = 102}, + [695] = {.lex_state = 102}, + [696] = {.lex_state = 102}, + [697] = {.lex_state = 102}, + [698] = {.lex_state = 102}, + [699] = {.lex_state = 102}, + [700] = {.lex_state = 102}, + [701] = {.lex_state = 102}, + [702] = {.lex_state = 102}, + [703] = {.lex_state = 102}, + [704] = {.lex_state = 102}, + [705] = {.lex_state = 102}, + [706] = {.lex_state = 102}, + [707] = {.lex_state = 102}, + [708] = {.lex_state = 102}, + [709] = {.lex_state = 102}, + [710] = {.lex_state = 102}, + [711] = {.lex_state = 102}, + [712] = {.lex_state = 102}, + [713] = {.lex_state = 102}, + [714] = {.lex_state = 102}, + [715] = {.lex_state = 102}, + [716] = {.lex_state = 102}, + [717] = {.lex_state = 44}, + [718] = {.lex_state = 102}, + [719] = {.lex_state = 102}, + [720] = {.lex_state = 102}, + [721] = {.lex_state = 102}, + [722] = {.lex_state = 102}, + [723] = {.lex_state = 102}, + [724] = {.lex_state = 102}, + [725] = {.lex_state = 102}, + [726] = {.lex_state = 102}, + [727] = {.lex_state = 102}, + [728] = {.lex_state = 102}, + [729] = {.lex_state = 102}, + [730] = {.lex_state = 102}, + [731] = {.lex_state = 102}, + [732] = {.lex_state = 102}, + [733] = {.lex_state = 102}, + [734] = {.lex_state = 102}, + [735] = {.lex_state = 102}, + [736] = {.lex_state = 102}, + [737] = {.lex_state = 102}, + [738] = {.lex_state = 102}, + [739] = {.lex_state = 102}, + [740] = {.lex_state = 102}, + [741] = {.lex_state = 102}, + [742] = {.lex_state = 102}, + [743] = {.lex_state = 102}, + [744] = {.lex_state = 102}, + [745] = {.lex_state = 102}, + [746] = {.lex_state = 44}, + [747] = {.lex_state = 102}, + [748] = {.lex_state = 44}, + [749] = {.lex_state = 102}, + [750] = {.lex_state = 102}, + [751] = {.lex_state = 102}, + [752] = {.lex_state = 102}, + [753] = {.lex_state = 42}, + [754] = {.lex_state = 42}, + [755] = {.lex_state = 42}, + [756] = {.lex_state = 42}, + [757] = {.lex_state = 42}, + [758] = {.lex_state = 45}, + [759] = {.lex_state = 44}, + [760] = {.lex_state = 44}, + [761] = {.lex_state = 45}, + [762] = {.lex_state = 102}, + [763] = {.lex_state = 102}, + [764] = {.lex_state = 102}, + [765] = {.lex_state = 45}, + [766] = {.lex_state = 45}, + [767] = {.lex_state = 45}, + [768] = {.lex_state = 45}, + [769] = {.lex_state = 45}, + [770] = {.lex_state = 43}, + [771] = {.lex_state = 45}, + [772] = {.lex_state = 45}, + [773] = {.lex_state = 45}, + [774] = {.lex_state = 45}, + [775] = {.lex_state = 45}, + [776] = {.lex_state = 45}, + [777] = {.lex_state = 45}, + [778] = {.lex_state = 45}, + [779] = {.lex_state = 45}, + [780] = {.lex_state = 43}, + [781] = {.lex_state = 45}, + [782] = {.lex_state = 45}, + [783] = {.lex_state = 45}, + [784] = {.lex_state = 45}, + [785] = {.lex_state = 45}, + [786] = {.lex_state = 45}, + [787] = {.lex_state = 45}, + [788] = {.lex_state = 45}, + [789] = {.lex_state = 45}, + [790] = {.lex_state = 45}, + [791] = {.lex_state = 45}, + [792] = {.lex_state = 45}, + [793] = {.lex_state = 45}, + [794] = {.lex_state = 45}, + [795] = {.lex_state = 45}, + [796] = {.lex_state = 45}, + [797] = {.lex_state = 45}, + [798] = {.lex_state = 45}, + [799] = {.lex_state = 45}, + [800] = {.lex_state = 45}, + [801] = {.lex_state = 45}, + [802] = {.lex_state = 45}, + [803] = {.lex_state = 45}, + [804] = {.lex_state = 45}, + [805] = {.lex_state = 43}, + [806] = {.lex_state = 45}, + [807] = {.lex_state = 45}, + [808] = {.lex_state = 45}, + [809] = {.lex_state = 45}, + [810] = {.lex_state = 45}, + [811] = {.lex_state = 45}, + [812] = {.lex_state = 44}, + [813] = {.lex_state = 102}, + [814] = {.lex_state = 44}, + [815] = {.lex_state = 44}, + [816] = {.lex_state = 44}, + [817] = {.lex_state = 44}, + [818] = {.lex_state = 44}, + [819] = {.lex_state = 44}, + [820] = {.lex_state = 45}, + [821] = {.lex_state = 102}, + [822] = {.lex_state = 45}, + [823] = {.lex_state = 45}, + [824] = {.lex_state = 45}, + [825] = {.lex_state = 45}, + [826] = {.lex_state = 45}, + [827] = {.lex_state = 45}, + [828] = {.lex_state = 45}, + [829] = {.lex_state = 45}, + [830] = {.lex_state = 45}, + [831] = {.lex_state = 45}, + [832] = {.lex_state = 45}, + [833] = {.lex_state = 45}, + [834] = {.lex_state = 45}, + [835] = {.lex_state = 45}, + [836] = {.lex_state = 45}, + [837] = {.lex_state = 45}, + [838] = {.lex_state = 45}, + [839] = {.lex_state = 45}, + [840] = {.lex_state = 44}, + [841] = {.lex_state = 45}, + [842] = {.lex_state = 45}, + [843] = {.lex_state = 45}, + [844] = {.lex_state = 45}, + [845] = {.lex_state = 45}, + [846] = {.lex_state = 45}, + [847] = {.lex_state = 45}, + [848] = {.lex_state = 45}, + [849] = {.lex_state = 45}, + [850] = {.lex_state = 44}, + [851] = {.lex_state = 44}, + [852] = {.lex_state = 44}, + [853] = {.lex_state = 44}, + [854] = {.lex_state = 44}, + [855] = {.lex_state = 44}, + [856] = {.lex_state = 44}, + [857] = {.lex_state = 44}, + [858] = {.lex_state = 44}, + [859] = {.lex_state = 44}, + [860] = {.lex_state = 44}, + [861] = {.lex_state = 44}, + [862] = {.lex_state = 44}, + [863] = {.lex_state = 44}, + [864] = {.lex_state = 44}, + [865] = {.lex_state = 44}, + [866] = {.lex_state = 44}, + [867] = {.lex_state = 44}, + [868] = {.lex_state = 44}, + [869] = {.lex_state = 44}, + [870] = {.lex_state = 44}, + [871] = {.lex_state = 44}, + [872] = {.lex_state = 44}, + [873] = {.lex_state = 44}, + [874] = {.lex_state = 44}, + [875] = {.lex_state = 44}, + [876] = {.lex_state = 45}, + [877] = {.lex_state = 45}, + [878] = {.lex_state = 45}, + [879] = {.lex_state = 45}, + [880] = {.lex_state = 45}, + [881] = {.lex_state = 45}, + [882] = {.lex_state = 44}, + [883] = {.lex_state = 45}, + [884] = {.lex_state = 45}, + [885] = {.lex_state = 45}, + [886] = {.lex_state = 45}, + [887] = {.lex_state = 45}, + [888] = {.lex_state = 45}, + [889] = {.lex_state = 45}, + [890] = {.lex_state = 45}, + [891] = {.lex_state = 45}, + [892] = {.lex_state = 45}, + [893] = {.lex_state = 45}, + [894] = {.lex_state = 45}, + [895] = {.lex_state = 45}, + [896] = {.lex_state = 45}, + [897] = {.lex_state = 45}, + [898] = {.lex_state = 45}, + [899] = {.lex_state = 45}, + [900] = {.lex_state = 45}, + [901] = {.lex_state = 44}, + [902] = {.lex_state = 44}, + [903] = {.lex_state = 44}, + [904] = {.lex_state = 44}, + [905] = {.lex_state = 44}, + [906] = {.lex_state = 48}, + [907] = {.lex_state = 48}, + [908] = {.lex_state = 43}, + [909] = {.lex_state = 43}, + [910] = {.lex_state = 45}, + [911] = {.lex_state = 43}, + [912] = {.lex_state = 48}, + [913] = {.lex_state = 48}, + [914] = {.lex_state = 45}, + [915] = {.lex_state = 48}, + [916] = {.lex_state = 42}, + [917] = {.lex_state = 48}, + [918] = {.lex_state = 48}, + [919] = {.lex_state = 48}, + [920] = {.lex_state = 42}, + [921] = {.lex_state = 43}, + [922] = {.lex_state = 42}, + [923] = {.lex_state = 43}, + [924] = {.lex_state = 48}, + [925] = {.lex_state = 48}, + [926] = {.lex_state = 44}, + [927] = {.lex_state = 48}, + [928] = {.lex_state = 48}, + [929] = {.lex_state = 43}, + [930] = {.lex_state = 48}, + [931] = {.lex_state = 43}, + [932] = {.lex_state = 45}, + [933] = {.lex_state = 43}, + [934] = {.lex_state = 44}, + [935] = {.lex_state = 43}, + [936] = {.lex_state = 45}, + [937] = {.lex_state = 48}, + [938] = {.lex_state = 43}, + [939] = {.lex_state = 48}, + [940] = {.lex_state = 48}, + [941] = {.lex_state = 48}, + [942] = {.lex_state = 43}, + [943] = {.lex_state = 43}, + [944] = {.lex_state = 43}, + [945] = {.lex_state = 44}, + [946] = {.lex_state = 45}, + [947] = {.lex_state = 44}, + [948] = {.lex_state = 45}, + [949] = {.lex_state = 43}, + [950] = {.lex_state = 43}, + [951] = {.lex_state = 42}, + [952] = {.lex_state = 43}, + [953] = {.lex_state = 42}, + [954] = {.lex_state = 45}, + [955] = {.lex_state = 43}, + [956] = {.lex_state = 45}, + [957] = {.lex_state = 43}, + [958] = {.lex_state = 43}, + [959] = {.lex_state = 43}, + [960] = {.lex_state = 43}, + [961] = {.lex_state = 45}, + [962] = {.lex_state = 43}, + [963] = {.lex_state = 45}, + [964] = {.lex_state = 45}, + [965] = {.lex_state = 48}, + [966] = {.lex_state = 44}, + [967] = {.lex_state = 48}, + [968] = {.lex_state = 48}, + [969] = {.lex_state = 48}, + [970] = {.lex_state = 43}, + [971] = {.lex_state = 48}, + [972] = {.lex_state = 48}, + [973] = {.lex_state = 45}, + [974] = {.lex_state = 48}, + [975] = {.lex_state = 45}, + [976] = {.lex_state = 43}, + [977] = {.lex_state = 102}, + [978] = {.lex_state = 102}, + [979] = {.lex_state = 102}, + [980] = {.lex_state = 102}, + [981] = {.lex_state = 44}, + [982] = {.lex_state = 44}, + [983] = {.lex_state = 44}, + [984] = {.lex_state = 44}, + [985] = {.lex_state = 45}, + [986] = {.lex_state = 44}, + [987] = {.lex_state = 44}, + [988] = {.lex_state = 44}, + [989] = {.lex_state = 45}, + [990] = {.lex_state = 44}, + [991] = {.lex_state = 44}, + [992] = {.lex_state = 45}, + [993] = {.lex_state = 44}, + [994] = {.lex_state = 44}, + [995] = {.lex_state = 44}, + [996] = {.lex_state = 44}, + [997] = {.lex_state = 44}, + [998] = {.lex_state = 44}, + [999] = {.lex_state = 44}, + [1000] = {.lex_state = 44}, + [1001] = {.lex_state = 44}, + [1002] = {.lex_state = 44}, + [1003] = {.lex_state = 44}, + [1004] = {.lex_state = 44}, + [1005] = {.lex_state = 44}, + [1006] = {.lex_state = 45}, + [1007] = {.lex_state = 45}, + [1008] = {.lex_state = 44}, + [1009] = {.lex_state = 44}, + [1010] = {.lex_state = 45}, + [1011] = {.lex_state = 45}, + [1012] = {.lex_state = 45}, + [1013] = {.lex_state = 45}, + [1014] = {.lex_state = 45}, + [1015] = {.lex_state = 45}, + [1016] = {.lex_state = 45}, + [1017] = {.lex_state = 45}, + [1018] = {.lex_state = 45}, + [1019] = {.lex_state = 45}, + [1020] = {.lex_state = 45}, + [1021] = {.lex_state = 45}, + [1022] = {.lex_state = 44}, + [1023] = {.lex_state = 45}, + [1024] = {.lex_state = 45}, + [1025] = {.lex_state = 45}, + [1026] = {.lex_state = 45}, + [1027] = {.lex_state = 45}, + [1028] = {.lex_state = 45}, + [1029] = {.lex_state = 45}, + [1030] = {.lex_state = 45}, + [1031] = {.lex_state = 45}, + [1032] = {.lex_state = 45}, + [1033] = {.lex_state = 45}, + [1034] = {.lex_state = 45}, + [1035] = {.lex_state = 45}, + [1036] = {.lex_state = 45}, + [1037] = {.lex_state = 45}, + [1038] = {.lex_state = 45}, + [1039] = {.lex_state = 45}, + [1040] = {.lex_state = 45}, + [1041] = {.lex_state = 45}, + [1042] = {.lex_state = 45}, + [1043] = {.lex_state = 45}, + [1044] = {.lex_state = 45}, + [1045] = {.lex_state = 45}, + [1046] = {.lex_state = 45}, + [1047] = {.lex_state = 45}, + [1048] = {.lex_state = 45}, + [1049] = {.lex_state = 45}, + [1050] = {.lex_state = 45}, + [1051] = {.lex_state = 45}, + [1052] = {.lex_state = 45}, + [1053] = {.lex_state = 45}, + [1054] = {.lex_state = 45}, + [1055] = {.lex_state = 45}, + [1056] = {.lex_state = 45}, + [1057] = {.lex_state = 45}, + [1058] = {.lex_state = 45}, + [1059] = {.lex_state = 45}, + [1060] = {.lex_state = 45}, + [1061] = {.lex_state = 45}, + [1062] = {.lex_state = 45}, + [1063] = {.lex_state = 45}, + [1064] = {.lex_state = 45}, + [1065] = {.lex_state = 45}, + [1066] = {.lex_state = 45}, + [1067] = {.lex_state = 45}, + [1068] = {.lex_state = 45}, + [1069] = {.lex_state = 45}, + [1070] = {.lex_state = 45}, + [1071] = {.lex_state = 45}, + [1072] = {.lex_state = 45}, + [1073] = {.lex_state = 45}, + [1074] = {.lex_state = 45}, + [1075] = {.lex_state = 45}, + [1076] = {.lex_state = 45}, + [1077] = {.lex_state = 45}, + [1078] = {.lex_state = 45}, + [1079] = {.lex_state = 45}, + [1080] = {.lex_state = 45}, + [1081] = {.lex_state = 45}, + [1082] = {.lex_state = 45}, + [1083] = {.lex_state = 45}, + [1084] = {.lex_state = 45}, + [1085] = {.lex_state = 45}, + [1086] = {.lex_state = 45}, + [1087] = {.lex_state = 45}, + [1088] = {.lex_state = 45}, + [1089] = {.lex_state = 45}, + [1090] = {.lex_state = 44}, + [1091] = {.lex_state = 45}, + [1092] = {.lex_state = 44}, + [1093] = {.lex_state = 45}, + [1094] = {.lex_state = 44}, + [1095] = {.lex_state = 45}, + [1096] = {.lex_state = 45}, + [1097] = {.lex_state = 44}, + [1098] = {.lex_state = 45}, + [1099] = {.lex_state = 45}, + [1100] = {.lex_state = 44}, + [1101] = {.lex_state = 45}, + [1102] = {.lex_state = 45}, + [1103] = {.lex_state = 44}, + [1104] = {.lex_state = 45}, + [1105] = {.lex_state = 45}, + [1106] = {.lex_state = 45}, + [1107] = {.lex_state = 45}, + [1108] = {.lex_state = 45}, + [1109] = {.lex_state = 44}, + [1110] = {.lex_state = 45}, + [1111] = {.lex_state = 45}, + [1112] = {.lex_state = 45}, + [1113] = {.lex_state = 44}, + [1114] = {.lex_state = 45}, + [1115] = {.lex_state = 44}, + [1116] = {.lex_state = 44}, + [1117] = {.lex_state = 44}, + [1118] = {.lex_state = 45}, + [1119] = {.lex_state = 45}, + [1120] = {.lex_state = 45}, + [1121] = {.lex_state = 45}, + [1122] = {.lex_state = 45}, + [1123] = {.lex_state = 45}, + [1124] = {.lex_state = 45}, + [1125] = {.lex_state = 45}, + [1126] = {.lex_state = 45}, + [1127] = {.lex_state = 45}, + [1128] = {.lex_state = 45}, + [1129] = {.lex_state = 45}, + [1130] = {.lex_state = 45}, + [1131] = {.lex_state = 45}, + [1132] = {.lex_state = 45}, + [1133] = {.lex_state = 45}, + [1134] = {.lex_state = 45}, + [1135] = {.lex_state = 45}, + [1136] = {.lex_state = 45}, + [1137] = {.lex_state = 45}, + [1138] = {.lex_state = 44}, + [1139] = {.lex_state = 45}, + [1140] = {.lex_state = 44}, + [1141] = {.lex_state = 44}, + [1142] = {.lex_state = 44}, + [1143] = {.lex_state = 44}, + [1144] = {.lex_state = 44}, + [1145] = {.lex_state = 44}, + [1146] = {.lex_state = 44}, + [1147] = {.lex_state = 44}, + [1148] = {.lex_state = 44}, + [1149] = {.lex_state = 44}, + [1150] = {.lex_state = 44}, + [1151] = {.lex_state = 44}, + [1152] = {.lex_state = 44}, + [1153] = {.lex_state = 44}, + [1154] = {.lex_state = 44}, + [1155] = {.lex_state = 44}, + [1156] = {.lex_state = 44}, + [1157] = {.lex_state = 44}, + [1158] = {.lex_state = 44}, + [1159] = {.lex_state = 44}, + [1160] = {.lex_state = 44}, + [1161] = {.lex_state = 44}, + [1162] = {.lex_state = 44}, + [1163] = {.lex_state = 44}, + [1164] = {.lex_state = 44}, + [1165] = {.lex_state = 44}, + [1166] = {.lex_state = 45}, + [1167] = {.lex_state = 44}, + [1168] = {.lex_state = 44}, + [1169] = {.lex_state = 44}, + [1170] = {.lex_state = 44}, + [1171] = {.lex_state = 44}, + [1172] = {.lex_state = 44}, + [1173] = {.lex_state = 45}, + [1174] = {.lex_state = 44}, + [1175] = {.lex_state = 44}, + [1176] = {.lex_state = 44}, + [1177] = {.lex_state = 44}, + [1178] = {.lex_state = 44}, + [1179] = {.lex_state = 44}, + [1180] = {.lex_state = 44}, + [1181] = {.lex_state = 44}, + [1182] = {.lex_state = 44}, + [1183] = {.lex_state = 44}, + [1184] = {.lex_state = 44}, + [1185] = {.lex_state = 44}, + [1186] = {.lex_state = 44}, + [1187] = {.lex_state = 44}, + [1188] = {.lex_state = 44}, + [1189] = {.lex_state = 44}, + [1190] = {.lex_state = 44}, + [1191] = {.lex_state = 44}, + [1192] = {.lex_state = 44}, + [1193] = {.lex_state = 44}, + [1194] = {.lex_state = 44}, + [1195] = {.lex_state = 44}, + [1196] = {.lex_state = 44}, + [1197] = {.lex_state = 44}, + [1198] = {.lex_state = 44}, + [1199] = {.lex_state = 44}, + [1200] = {.lex_state = 41}, + [1201] = {.lex_state = 44}, + [1202] = {.lex_state = 44}, + [1203] = {.lex_state = 44}, + [1204] = {.lex_state = 44}, + [1205] = {.lex_state = 44}, + [1206] = {.lex_state = 44}, + [1207] = {.lex_state = 44}, + [1208] = {.lex_state = 41}, + [1209] = {.lex_state = 44}, + [1210] = {.lex_state = 44}, + [1211] = {.lex_state = 44}, + [1212] = {.lex_state = 44}, + [1213] = {.lex_state = 44}, + [1214] = {.lex_state = 44}, + [1215] = {.lex_state = 44}, + [1216] = {.lex_state = 44}, + [1217] = {.lex_state = 44}, + [1218] = {.lex_state = 44}, + [1219] = {.lex_state = 44}, + [1220] = {.lex_state = 44}, + [1221] = {.lex_state = 23}, + [1222] = {.lex_state = 44}, + [1223] = {.lex_state = 44}, + [1224] = {.lex_state = 44}, + [1225] = {.lex_state = 44}, + [1226] = {.lex_state = 44}, + [1227] = {.lex_state = 44}, + [1228] = {.lex_state = 44}, + [1229] = {.lex_state = 44}, + [1230] = {.lex_state = 41}, + [1231] = {.lex_state = 44}, + [1232] = {.lex_state = 41}, + [1233] = {.lex_state = 44}, + [1234] = {.lex_state = 41}, + [1235] = {.lex_state = 41}, + [1236] = {.lex_state = 41}, + [1237] = {.lex_state = 44}, + [1238] = {.lex_state = 44}, + [1239] = {.lex_state = 41}, + [1240] = {.lex_state = 41}, + [1241] = {.lex_state = 41}, + [1242] = {.lex_state = 41}, + [1243] = {.lex_state = 41}, + [1244] = {.lex_state = 41}, + [1245] = {.lex_state = 41}, + [1246] = {.lex_state = 41}, + [1247] = {.lex_state = 41}, + [1248] = {.lex_state = 44}, + [1249] = {.lex_state = 41}, + [1250] = {.lex_state = 44}, + [1251] = {.lex_state = 44}, + [1252] = {.lex_state = 41}, + [1253] = {.lex_state = 41}, + [1254] = {.lex_state = 41}, + [1255] = {.lex_state = 44}, + [1256] = {.lex_state = 41}, + [1257] = {.lex_state = 41}, + [1258] = {.lex_state = 41}, + [1259] = {.lex_state = 41}, + [1260] = {.lex_state = 44}, + [1261] = {.lex_state = 41}, + [1262] = {.lex_state = 41}, + [1263] = {.lex_state = 44}, + [1264] = {.lex_state = 41}, + [1265] = {.lex_state = 44}, + [1266] = {.lex_state = 41}, + [1267] = {.lex_state = 41}, + [1268] = {.lex_state = 41}, + [1269] = {.lex_state = 44}, + [1270] = {.lex_state = 41}, + [1271] = {.lex_state = 44}, + [1272] = {.lex_state = 41}, + [1273] = {.lex_state = 44}, + [1274] = {.lex_state = 41}, + [1275] = {.lex_state = 41}, + [1276] = {.lex_state = 41}, + [1277] = {.lex_state = 44}, + [1278] = {.lex_state = 44}, + [1279] = {.lex_state = 44}, + [1280] = {.lex_state = 44}, + [1281] = {.lex_state = 41}, + [1282] = {.lex_state = 44}, + [1283] = {.lex_state = 44}, + [1284] = {.lex_state = 44}, + [1285] = {.lex_state = 41}, + [1286] = {.lex_state = 41}, + [1287] = {.lex_state = 44}, + [1288] = {.lex_state = 44}, + [1289] = {.lex_state = 44}, + [1290] = {.lex_state = 23}, + [1291] = {.lex_state = 23}, + [1292] = {.lex_state = 23}, + [1293] = {.lex_state = 44}, + [1294] = {.lex_state = 23}, + [1295] = {.lex_state = 23}, + [1296] = {.lex_state = 23}, + [1297] = {.lex_state = 23}, + [1298] = {.lex_state = 23}, + [1299] = {.lex_state = 23}, + [1300] = {.lex_state = 23}, + [1301] = {.lex_state = 23}, + [1302] = {.lex_state = 23}, + [1303] = {.lex_state = 23}, + [1304] = {.lex_state = 23}, + [1305] = {.lex_state = 23}, + [1306] = {.lex_state = 23}, + [1307] = {.lex_state = 23}, + [1308] = {.lex_state = 23}, + [1309] = {.lex_state = 23}, + [1310] = {.lex_state = 23}, + [1311] = {.lex_state = 23}, + [1312] = {.lex_state = 23}, + [1313] = {.lex_state = 23}, + [1314] = {.lex_state = 44}, + [1315] = {.lex_state = 23}, + [1316] = {.lex_state = 23}, + [1317] = {.lex_state = 23}, + [1318] = {.lex_state = 23}, + [1319] = {.lex_state = 23}, + [1320] = {.lex_state = 23}, + [1321] = {.lex_state = 23}, + [1322] = {.lex_state = 44}, + [1323] = {.lex_state = 44}, + [1324] = {.lex_state = 44}, + [1325] = {.lex_state = 44}, + [1326] = {.lex_state = 44}, + [1327] = {.lex_state = 44}, + [1328] = {.lex_state = 44}, + [1329] = {.lex_state = 44}, + [1330] = {.lex_state = 44}, + [1331] = {.lex_state = 44}, + [1332] = {.lex_state = 44}, + [1333] = {.lex_state = 44}, + [1334] = {.lex_state = 44}, + [1335] = {.lex_state = 44}, + [1336] = {.lex_state = 44}, + [1337] = {.lex_state = 44}, + [1338] = {.lex_state = 44}, + [1339] = {.lex_state = 44}, + [1340] = {.lex_state = 44}, + [1341] = {.lex_state = 44}, + [1342] = {.lex_state = 44}, + [1343] = {.lex_state = 44}, + [1344] = {.lex_state = 44}, + [1345] = {.lex_state = 44}, + [1346] = {.lex_state = 102}, + [1347] = {.lex_state = 102}, + [1348] = {.lex_state = 44}, + [1349] = {.lex_state = 44}, + [1350] = {.lex_state = 44}, + [1351] = {.lex_state = 44}, + [1352] = {.lex_state = 44}, + [1353] = {.lex_state = 44}, + [1354] = {.lex_state = 102}, + [1355] = {.lex_state = 44}, + [1356] = {.lex_state = 102}, + [1357] = {.lex_state = 102}, + [1358] = {.lex_state = 44}, + [1359] = {.lex_state = 42}, + [1360] = {.lex_state = 44}, + [1361] = {.lex_state = 44}, + [1362] = {.lex_state = 44}, + [1363] = {.lex_state = 102}, + [1364] = {.lex_state = 44}, + [1365] = {.lex_state = 42}, + [1366] = {.lex_state = 44}, + [1367] = {.lex_state = 44}, + [1368] = {.lex_state = 44}, + [1369] = {.lex_state = 44}, + [1370] = {.lex_state = 44}, + [1371] = {.lex_state = 44}, + [1372] = {.lex_state = 44}, + [1373] = {.lex_state = 44}, + [1374] = {.lex_state = 44}, + [1375] = {.lex_state = 44}, + [1376] = {.lex_state = 44}, + [1377] = {.lex_state = 102}, + [1378] = {.lex_state = 44}, + [1379] = {.lex_state = 44}, + [1380] = {.lex_state = 102}, + [1381] = {.lex_state = 102}, + [1382] = {.lex_state = 44}, + [1383] = {.lex_state = 102}, + [1384] = {.lex_state = 44}, + [1385] = {.lex_state = 44}, + [1386] = {.lex_state = 102}, + [1387] = {.lex_state = 102}, + [1388] = {.lex_state = 0}, + [1389] = {.lex_state = 102}, + [1390] = {.lex_state = 102}, + [1391] = {.lex_state = 102}, + [1392] = {.lex_state = 0}, + [1393] = {.lex_state = 102}, + [1394] = {.lex_state = 44}, + [1395] = {.lex_state = 102}, + [1396] = {.lex_state = 102}, + [1397] = {.lex_state = 102}, + [1398] = {.lex_state = 102}, + [1399] = {.lex_state = 102}, + [1400] = {.lex_state = 102}, + [1401] = {.lex_state = 46}, + [1402] = {.lex_state = 102}, + [1403] = {.lex_state = 102}, + [1404] = {.lex_state = 102}, + [1405] = {.lex_state = 46}, + [1406] = {.lex_state = 102}, + [1407] = {.lex_state = 102}, + [1408] = {.lex_state = 102}, + [1409] = {.lex_state = 102}, + [1410] = {.lex_state = 102}, + [1411] = {.lex_state = 102}, + [1412] = {.lex_state = 102}, + [1413] = {.lex_state = 102}, + [1414] = {.lex_state = 102}, + [1415] = {.lex_state = 102}, + [1416] = {.lex_state = 46}, + [1417] = {.lex_state = 46}, + [1418] = {.lex_state = 102}, + [1419] = {.lex_state = 102}, + [1420] = {.lex_state = 46}, + [1421] = {.lex_state = 102}, + [1422] = {.lex_state = 102}, + [1423] = {.lex_state = 102}, + [1424] = {.lex_state = 102}, + [1425] = {.lex_state = 102}, + [1426] = {.lex_state = 0}, + [1427] = {.lex_state = 102}, + [1428] = {.lex_state = 44}, + [1429] = {.lex_state = 0}, + [1430] = {.lex_state = 102}, + [1431] = {.lex_state = 44}, + [1432] = {.lex_state = 102}, + [1433] = {.lex_state = 44}, + [1434] = {.lex_state = 44}, + [1435] = {.lex_state = 102}, + [1436] = {.lex_state = 44}, + [1437] = {.lex_state = 44}, + [1438] = {.lex_state = 102}, + [1439] = {.lex_state = 0}, + [1440] = {.lex_state = 102}, + [1441] = {.lex_state = 102}, + [1442] = {.lex_state = 102}, + [1443] = {.lex_state = 44}, + [1444] = {.lex_state = 102}, + [1445] = {.lex_state = 44}, + [1446] = {.lex_state = 102}, + [1447] = {.lex_state = 102}, + [1448] = {.lex_state = 102}, + [1449] = {.lex_state = 102}, + [1450] = {.lex_state = 102}, + [1451] = {.lex_state = 0}, + [1452] = {.lex_state = 102}, + [1453] = {.lex_state = 102}, + [1454] = {.lex_state = 0}, + [1455] = {.lex_state = 102}, + [1456] = {.lex_state = 102}, + [1457] = {.lex_state = 0}, + [1458] = {.lex_state = 102}, + [1459] = {.lex_state = 102}, + [1460] = {.lex_state = 102}, + [1461] = {.lex_state = 102}, + [1462] = {.lex_state = 102}, + [1463] = {.lex_state = 44}, + [1464] = {.lex_state = 44}, + [1465] = {.lex_state = 0}, + [1466] = {.lex_state = 102}, + [1467] = {.lex_state = 102}, + [1468] = {.lex_state = 102}, + [1469] = {.lex_state = 102}, + [1470] = {.lex_state = 102}, + [1471] = {.lex_state = 102}, + [1472] = {.lex_state = 102}, + [1473] = {.lex_state = 102}, + [1474] = {.lex_state = 44}, + [1475] = {.lex_state = 102}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 44}, + [1478] = {.lex_state = 102}, + [1479] = {.lex_state = 102}, + [1480] = {.lex_state = 44}, + [1481] = {.lex_state = 44}, + [1482] = {.lex_state = 102}, + [1483] = {.lex_state = 44}, + [1484] = {.lex_state = 44}, + [1485] = {.lex_state = 44}, + [1486] = {.lex_state = 44}, + [1487] = {.lex_state = 44}, + [1488] = {.lex_state = 102}, + [1489] = {.lex_state = 102}, + [1490] = {.lex_state = 102}, + [1491] = {.lex_state = 102}, + [1492] = {.lex_state = 102}, + [1493] = {.lex_state = 44}, + [1494] = {.lex_state = 44}, + [1495] = {.lex_state = 44}, + [1496] = {.lex_state = 44}, + [1497] = {.lex_state = 102}, + [1498] = {.lex_state = 102}, + [1499] = {.lex_state = 37}, + [1500] = {.lex_state = 102}, + [1501] = {.lex_state = 44}, + [1502] = {.lex_state = 102}, + [1503] = {.lex_state = 44}, + [1504] = {.lex_state = 102}, + [1505] = {.lex_state = 26}, + [1506] = {.lex_state = 26}, + [1507] = {.lex_state = 26}, + [1508] = {.lex_state = 44}, + [1509] = {.lex_state = 28}, + [1510] = {.lex_state = 0}, + [1511] = {.lex_state = 0}, + [1512] = {.lex_state = 0}, + [1513] = {.lex_state = 0}, + [1514] = {.lex_state = 102}, + [1515] = {.lex_state = 44}, + [1516] = {.lex_state = 28}, + [1517] = {.lex_state = 28}, + [1518] = {.lex_state = 26}, + [1519] = {.lex_state = 28}, + [1520] = {.lex_state = 26}, + [1521] = {.lex_state = 0}, + [1522] = {.lex_state = 0}, + [1523] = {.lex_state = 26}, + [1524] = {.lex_state = 37}, + [1525] = {.lex_state = 28}, + [1526] = {.lex_state = 44}, + [1527] = {.lex_state = 28}, + [1528] = {.lex_state = 26}, + [1529] = {.lex_state = 0}, + [1530] = {.lex_state = 0}, + [1531] = {.lex_state = 28}, + [1532] = {.lex_state = 0}, + [1533] = {.lex_state = 26}, + [1534] = {.lex_state = 26}, + [1535] = {.lex_state = 23}, + [1536] = {.lex_state = 23}, + [1537] = {.lex_state = 0}, + [1538] = {.lex_state = 0}, + [1539] = {.lex_state = 0}, + [1540] = {.lex_state = 0}, + [1541] = {.lex_state = 0}, + [1542] = {.lex_state = 0}, + [1543] = {.lex_state = 0}, + [1544] = {.lex_state = 0}, + [1545] = {.lex_state = 0}, + [1546] = {.lex_state = 0}, + [1547] = {.lex_state = 0}, + [1548] = {.lex_state = 0}, + [1549] = {.lex_state = 102}, + [1550] = {.lex_state = 0}, + [1551] = {.lex_state = 44}, + [1552] = {.lex_state = 0}, + [1553] = {.lex_state = 0}, + [1554] = {.lex_state = 0}, + [1555] = {.lex_state = 0}, + [1556] = {.lex_state = 0}, + [1557] = {.lex_state = 23}, + [1558] = {.lex_state = 102}, + [1559] = {.lex_state = 0}, + [1560] = {.lex_state = 0}, + [1561] = {.lex_state = 0}, + [1562] = {.lex_state = 0}, + [1563] = {.lex_state = 44}, + [1564] = {.lex_state = 0}, + [1565] = {.lex_state = 0}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 0}, + [1568] = {.lex_state = 0}, + [1569] = {.lex_state = 0}, + [1570] = {.lex_state = 37}, + [1571] = {.lex_state = 0}, + [1572] = {.lex_state = 0}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 0}, + [1575] = {.lex_state = 0}, + [1576] = {.lex_state = 37}, + [1577] = {.lex_state = 0}, + [1578] = {.lex_state = 44}, + [1579] = {.lex_state = 0}, + [1580] = {.lex_state = 0}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 0}, + [1583] = {.lex_state = 23}, + [1584] = {.lex_state = 0}, + [1585] = {.lex_state = 0}, + [1586] = {.lex_state = 0}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 0}, + [1589] = {.lex_state = 0}, + [1590] = {.lex_state = 0}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 0}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 0}, + [1595] = {.lex_state = 37}, + [1596] = {.lex_state = 44}, + [1597] = {.lex_state = 0}, + [1598] = {.lex_state = 0}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 44}, + [1601] = {.lex_state = 37}, + [1602] = {.lex_state = 0}, + [1603] = {.lex_state = 0}, + [1604] = {.lex_state = 0}, + [1605] = {.lex_state = 44}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 0}, + [1608] = {.lex_state = 23}, + [1609] = {.lex_state = 0}, + [1610] = {.lex_state = 0}, + [1611] = {.lex_state = 44}, + [1612] = {.lex_state = 0}, + [1613] = {.lex_state = 0}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 37}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 0}, + [1618] = {.lex_state = 0}, + [1619] = {.lex_state = 37}, + [1620] = {.lex_state = 0}, + [1621] = {.lex_state = 0}, + [1622] = {.lex_state = 0}, + [1623] = {.lex_state = 0}, + [1624] = {.lex_state = 0}, + [1625] = {.lex_state = 0}, + [1626] = {.lex_state = 0}, + [1627] = {.lex_state = 0}, + [1628] = {.lex_state = 0}, + [1629] = {.lex_state = 0}, + [1630] = {.lex_state = 37}, + [1631] = {.lex_state = 0}, + [1632] = {.lex_state = 0}, + [1633] = {.lex_state = 44}, + [1634] = {.lex_state = 0}, + [1635] = {.lex_state = 0}, + [1636] = {.lex_state = 44}, + [1637] = {.lex_state = 0}, + [1638] = {.lex_state = 0}, + [1639] = {.lex_state = 102}, + [1640] = {.lex_state = 0}, + [1641] = {.lex_state = 102}, + [1642] = {.lex_state = 0}, + [1643] = {.lex_state = 27}, + [1644] = {.lex_state = 37}, + [1645] = {.lex_state = 27}, + [1646] = {.lex_state = 27}, + [1647] = {.lex_state = 30}, + [1648] = {.lex_state = 102}, + [1649] = {.lex_state = 102}, + [1650] = {.lex_state = 102}, + [1651] = {.lex_state = 44}, + [1652] = {.lex_state = 0}, + [1653] = {.lex_state = 102}, + [1654] = {.lex_state = 102}, + [1655] = {.lex_state = 30}, + [1656] = {.lex_state = 0}, + [1657] = {.lex_state = 0}, + [1658] = {.lex_state = 102}, + [1659] = {.lex_state = 44}, + [1660] = {.lex_state = 27}, + [1661] = {.lex_state = 27}, + [1662] = {.lex_state = 102}, + [1663] = {.lex_state = 102}, + [1664] = {.lex_state = 102}, + [1665] = {.lex_state = 44}, + [1666] = {.lex_state = 37}, + [1667] = {.lex_state = 102}, + [1668] = {.lex_state = 0}, + [1669] = {.lex_state = 0}, + [1670] = {.lex_state = 102}, + [1671] = {.lex_state = 102}, + [1672] = {.lex_state = 102}, + [1673] = {.lex_state = 102}, + [1674] = {.lex_state = 44}, + [1675] = {.lex_state = 37}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 0}, + [1678] = {.lex_state = 102}, + [1679] = {.lex_state = 102}, + [1680] = {.lex_state = 27}, + [1681] = {.lex_state = 0}, + [1682] = {.lex_state = 102}, + [1683] = {.lex_state = 27}, + [1684] = {.lex_state = 102}, + [1685] = {.lex_state = 27}, + [1686] = {.lex_state = 27}, + [1687] = {.lex_state = 102}, + [1688] = {.lex_state = 27}, + [1689] = {.lex_state = 44}, + [1690] = {.lex_state = 44}, + [1691] = {.lex_state = 44}, + [1692] = {.lex_state = 0}, + [1693] = {.lex_state = 27}, + [1694] = {.lex_state = 0}, + [1695] = {.lex_state = 0}, + [1696] = {.lex_state = 0}, + [1697] = {.lex_state = 27}, + [1698] = {.lex_state = 27}, + [1699] = {.lex_state = 44}, + [1700] = {.lex_state = 102}, + [1701] = {.lex_state = 27}, + [1702] = {.lex_state = 27}, + [1703] = {.lex_state = 30}, + [1704] = {.lex_state = 27}, + [1705] = {.lex_state = 0}, + [1706] = {.lex_state = 27}, + [1707] = {.lex_state = 27}, + [1708] = {.lex_state = 27}, + [1709] = {.lex_state = 44}, + [1710] = {.lex_state = 27}, + [1711] = {.lex_state = 102}, + [1712] = {.lex_state = 102}, + [1713] = {.lex_state = 0}, + [1714] = {.lex_state = 27}, + [1715] = {.lex_state = 23}, + [1716] = {.lex_state = 0}, + [1717] = {.lex_state = 23}, + [1718] = {.lex_state = 0}, + [1719] = {.lex_state = 23}, + [1720] = {.lex_state = 23}, + [1721] = {.lex_state = 23}, + [1722] = {.lex_state = 0}, + [1723] = {.lex_state = 23}, + [1724] = {.lex_state = 23}, + [1725] = {.lex_state = 23}, + [1726] = {.lex_state = 44}, + [1727] = {.lex_state = 44}, + [1728] = {.lex_state = 44}, + [1729] = {.lex_state = 36}, + [1730] = {.lex_state = 44}, + [1731] = {.lex_state = 36}, + [1732] = {.lex_state = 0}, + [1733] = {.lex_state = 0}, + [1734] = {.lex_state = 36}, + [1735] = {.lex_state = 36}, + [1736] = {.lex_state = 0}, + [1737] = {.lex_state = 23}, + [1738] = {.lex_state = 0}, + [1739] = {.lex_state = 23}, + [1740] = {.lex_state = 23}, + [1741] = {.lex_state = 23}, + [1742] = {.lex_state = 0}, + [1743] = {.lex_state = 44}, + [1744] = {.lex_state = 36}, + [1745] = {.lex_state = 36}, + [1746] = {.lex_state = 23}, + [1747] = {.lex_state = 36}, + [1748] = {.lex_state = 23}, + [1749] = {.lex_state = 23}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 0}, + [1752] = {.lex_state = 44}, + [1753] = {.lex_state = 0}, + [1754] = {.lex_state = 0}, + [1755] = {.lex_state = 0}, + [1756] = {.lex_state = 44}, + [1757] = {.lex_state = 36}, + [1758] = {.lex_state = 44}, + [1759] = {.lex_state = 0}, + [1760] = {.lex_state = 0}, + [1761] = {.lex_state = 0}, + [1762] = {.lex_state = 0}, + [1763] = {.lex_state = 0}, + [1764] = {.lex_state = 0}, + [1765] = {.lex_state = 0}, + [1766] = {.lex_state = 0}, + [1767] = {.lex_state = 0}, + [1768] = {.lex_state = 36}, + [1769] = {.lex_state = 0}, + [1770] = {.lex_state = 23}, + [1771] = {.lex_state = 0}, + [1772] = {.lex_state = 0}, + [1773] = {.lex_state = 0}, + [1774] = {.lex_state = 0}, + [1775] = {.lex_state = 0}, + [1776] = {.lex_state = 0}, + [1777] = {.lex_state = 36}, + [1778] = {.lex_state = 23}, + [1779] = {.lex_state = 0}, + [1780] = {.lex_state = 0}, + [1781] = {.lex_state = 44}, + [1782] = {.lex_state = 0}, + [1783] = {.lex_state = 36}, + [1784] = {.lex_state = 0}, + [1785] = {.lex_state = 0}, + [1786] = {.lex_state = 0}, + [1787] = {.lex_state = 0}, + [1788] = {.lex_state = 44}, + [1789] = {.lex_state = 0}, + [1790] = {.lex_state = 36}, + [1791] = {.lex_state = 0}, + [1792] = {.lex_state = 0}, + [1793] = {.lex_state = 0}, + [1794] = {.lex_state = 0}, + [1795] = {.lex_state = 36}, + [1796] = {.lex_state = 102}, + [1797] = {.lex_state = 44}, + [1798] = {.lex_state = 44}, + [1799] = {.lex_state = 0}, + [1800] = {.lex_state = 0}, + [1801] = {.lex_state = 0}, + [1802] = {.lex_state = 23}, + [1803] = {.lex_state = 0}, + [1804] = {.lex_state = 0}, + [1805] = {.lex_state = 0}, + [1806] = {.lex_state = 0}, + [1807] = {.lex_state = 44}, + [1808] = {.lex_state = 44}, + [1809] = {.lex_state = 102}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 0}, + [1812] = {.lex_state = 0}, + [1813] = {.lex_state = 0}, + [1814] = {.lex_state = 0}, + [1815] = {.lex_state = 0}, + [1816] = {.lex_state = 44}, + [1817] = {.lex_state = 0}, + [1818] = {.lex_state = 23}, + [1819] = {.lex_state = 0}, + [1820] = {.lex_state = 23}, + [1821] = {.lex_state = 0}, + [1822] = {.lex_state = 36}, + [1823] = {.lex_state = 36}, + [1824] = {.lex_state = 23}, + [1825] = {.lex_state = 0}, + [1826] = {.lex_state = 44}, + [1827] = {.lex_state = 0}, + [1828] = {.lex_state = 0}, + [1829] = {.lex_state = 0}, + [1830] = {.lex_state = 0}, + [1831] = {.lex_state = 44}, + [1832] = {.lex_state = 0}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 0}, + [1835] = {.lex_state = 0}, + [1836] = {.lex_state = 0}, + [1837] = {.lex_state = 0}, + [1838] = {.lex_state = 0}, + [1839] = {.lex_state = 0}, + [1840] = {.lex_state = 0}, + [1841] = {.lex_state = 102}, + [1842] = {.lex_state = 102}, + [1843] = {.lex_state = 0}, + [1844] = {.lex_state = 44}, + [1845] = {.lex_state = 0}, + [1846] = {.lex_state = 36}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 23}, + [1849] = {.lex_state = 0}, + [1850] = {.lex_state = 0}, + [1851] = {.lex_state = 0}, + [1852] = {.lex_state = 23}, + [1853] = {.lex_state = 0}, + [1854] = {.lex_state = 0}, + [1855] = {.lex_state = 0}, + [1856] = {.lex_state = 23}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 44}, + [1859] = {.lex_state = 44}, + [1860] = {.lex_state = 36}, + [1861] = {.lex_state = 36}, + [1862] = {.lex_state = 0}, + [1863] = {.lex_state = 36}, + [1864] = {.lex_state = 36}, + [1865] = {.lex_state = 44}, + [1866] = {.lex_state = 44}, + [1867] = {.lex_state = 0}, + [1868] = {.lex_state = 44}, + [1869] = {.lex_state = 36}, + [1870] = {.lex_state = 23}, + [1871] = {.lex_state = 0}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 44}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 0}, + [1876] = {.lex_state = 36}, + [1877] = {.lex_state = 36}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 23}, + [1880] = {.lex_state = 0}, + [1881] = {.lex_state = 36}, + [1882] = {.lex_state = 23}, + [1883] = {.lex_state = 0}, + [1884] = {.lex_state = 0}, + [1885] = {.lex_state = 0}, + [1886] = {.lex_state = 36}, + [1887] = {.lex_state = 0}, + [1888] = {.lex_state = 0}, + [1889] = {.lex_state = 0}, + [1890] = {.lex_state = 36}, + [1891] = {.lex_state = 0}, + [1892] = {.lex_state = 0}, + [1893] = {.lex_state = 23}, + [1894] = {.lex_state = 0}, + [1895] = {.lex_state = 44}, + [1896] = {.lex_state = 44}, + [1897] = {.lex_state = 44}, + [1898] = {.lex_state = 36}, + [1899] = {.lex_state = 23}, + [1900] = {.lex_state = 23}, + [1901] = {.lex_state = 44}, + [1902] = {.lex_state = 102}, + [1903] = {.lex_state = 44}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 36}, + [1907] = {.lex_state = 0}, + [1908] = {.lex_state = 0}, + [1909] = {.lex_state = 36}, + [1910] = {.lex_state = 44}, + [1911] = {.lex_state = 0}, + [1912] = {.lex_state = 44}, + [1913] = {.lex_state = 44}, + [1914] = {.lex_state = 44}, + [1915] = {.lex_state = 23}, + [1916] = {.lex_state = 102}, + [1917] = {.lex_state = 36}, + [1918] = {.lex_state = 0}, + [1919] = {.lex_state = 36}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 0}, + [1922] = {.lex_state = 0}, + [1923] = {.lex_state = 0}, + [1924] = {.lex_state = 0}, + [1925] = {.lex_state = 44}, + [1926] = {.lex_state = 0}, + [1927] = {.lex_state = 0}, + [1928] = {.lex_state = 0}, + [1929] = {.lex_state = 0}, + [1930] = {.lex_state = 0}, + [1931] = {.lex_state = 0}, + [1932] = {.lex_state = 0}, + [1933] = {.lex_state = 0}, + [1934] = {.lex_state = 0}, + [1935] = {.lex_state = 0}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 44}, + [1938] = {.lex_state = 0}, + [1939] = {.lex_state = 102}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 23}, + [1943] = {.lex_state = 36}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 44}, + [1946] = {.lex_state = 44}, + [1947] = {.lex_state = 102}, + [1948] = {.lex_state = 36}, + [1949] = {.lex_state = 23}, + [1950] = {.lex_state = 0}, + [1951] = {.lex_state = 36}, + [1952] = {.lex_state = 0}, + [1953] = {.lex_state = 36}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 23}, + [1956] = {.lex_state = 0}, + [1957] = {.lex_state = 102}, + [1958] = {.lex_state = 44}, + [1959] = {.lex_state = 0}, + [1960] = {.lex_state = 44}, + [1961] = {.lex_state = 0}, + [1962] = {.lex_state = 0}, + [1963] = {.lex_state = 0}, + [1964] = {.lex_state = 44}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 0}, + [1967] = {.lex_state = 0}, + [1968] = {.lex_state = 0}, + [1969] = {.lex_state = 0}, + [1970] = {.lex_state = 36}, + [1971] = {.lex_state = 0}, + [1972] = {.lex_state = 36}, + [1973] = {.lex_state = 36}, + [1974] = {.lex_state = 0}, + [1975] = {.lex_state = 0}, + [1976] = {.lex_state = 0}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 36}, + [1979] = {.lex_state = 44}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 36}, + [1982] = {.lex_state = 102}, + [1983] = {.lex_state = 36}, + [1984] = {.lex_state = 0}, + [1985] = {.lex_state = 0}, + [1986] = {.lex_state = 0}, + [1987] = {.lex_state = 102}, + [1988] = {.lex_state = 0}, + [1989] = {.lex_state = 0}, + [1990] = {.lex_state = 0}, + [1991] = {.lex_state = 44}, + [1992] = {.lex_state = 36}, + [1993] = {.lex_state = 0}, + [1994] = {.lex_state = 0}, + [1995] = {.lex_state = 44}, + [1996] = {.lex_state = 102}, + [1997] = {.lex_state = 102}, + [1998] = {.lex_state = 102}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [aux_sym_preproc_include_token1] = ACTIONS(1), + [aux_sym_preproc_def_token1] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [aux_sym_preproc_if_token1] = ACTIONS(1), + [aux_sym_preproc_if_token2] = ACTIONS(1), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1), + [aux_sym_preproc_else_token1] = ACTIONS(1), + [aux_sym_preproc_elif_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1), + [sym_preproc_directive] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), + [anon_sym_defined] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_typedef] = ACTIONS(1), + [anon_sym_extern] = ACTIONS(1), + [anon_sym___attribute__] = ACTIONS(1), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1), + [anon_sym___declspec] = ACTIONS(1), + [anon_sym___based] = ACTIONS(1), + [anon_sym___cdecl] = ACTIONS(1), + [anon_sym___clrcall] = ACTIONS(1), + [anon_sym___stdcall] = ACTIONS(1), + [anon_sym___fastcall] = ACTIONS(1), + [anon_sym___thiscall] = ACTIONS(1), + [anon_sym___vectorcall] = ACTIONS(1), + [sym_ms_restrict_modifier] = ACTIONS(1), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(1), + [sym_ms_signed_ptr_modifier] = ACTIONS(1), + [anon_sym__unaligned] = ACTIONS(1), + [anon_sym___unaligned] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_static] = ACTIONS(1), + [anon_sym_auto] = ACTIONS(1), + [anon_sym_register] = ACTIONS(1), + [anon_sym_inline] = ACTIONS(1), + [anon_sym_thread_local] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_constexpr] = ACTIONS(1), + [anon_sym_volatile] = ACTIONS(1), + [anon_sym_restrict] = ACTIONS(1), + [anon_sym___restrict__] = ACTIONS(1), + [anon_sym__Atomic] = ACTIONS(1), + [anon_sym__Noreturn] = ACTIONS(1), + [anon_sym_noreturn] = ACTIONS(1), + [anon_sym_signed] = ACTIONS(1), + [anon_sym_unsigned] = ACTIONS(1), + [anon_sym_long] = ACTIONS(1), + [anon_sym_short] = ACTIONS(1), + [sym_primitive_type] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [anon_sym_union] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_default] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_goto] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_DASH_DASH] = ACTIONS(1), + [anon_sym_PLUS_PLUS] = ACTIONS(1), + [anon_sym_sizeof] = ACTIONS(1), + [anon_sym_offsetof] = ACTIONS(1), + [anon_sym__Generic] = ACTIONS(1), + [anon_sym_asm] = ACTIONS(1), + [anon_sym___asm__] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [sym_number_literal] = ACTIONS(1), + [anon_sym_L_SQUOTE] = ACTIONS(1), + [anon_sym_u_SQUOTE] = ACTIONS(1), + [anon_sym_U_SQUOTE] = ACTIONS(1), + [anon_sym_u8_SQUOTE] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_L_DQUOTE] = ACTIONS(1), + [anon_sym_u_DQUOTE] = ACTIONS(1), + [anon_sym_U_DQUOTE] = ACTIONS(1), + [anon_sym_u8_DQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [anon_sym_NULL] = ACTIONS(1), + [anon_sym_nullptr] = ACTIONS(1), [sym_comment] = ACTIONS(3), }, - [9] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1878), - [sym_preproc_elif] = STATE(1878), - [sym_preproc_elifdef] = STATE(1878), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(817), + [1] = { + [sym_translation_unit] = STATE(1850), + [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(819), + [sym__declaration_specifiers] = STATE(1343), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(52), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(984), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1173), + [sym__expression_not_binary] = STATE(1166), + [sym_conditional_expression] = STATE(1166), + [sym_assignment_expression] = STATE(1166), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(1166), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(1166), + [sym_cast_expression] = STATE(1166), + [sym_sizeof_expression] = STATE(1166), + [sym_offsetof_expression] = STATE(1166), + [sym_generic_expression] = STATE(1166), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(1166), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(1166), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(1166), + [sym_concatenated_string] = STATE(1166), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(1166), + [sym__empty_declaration] = STATE(52), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_translation_unit_repeat1] = STATE(52), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [ts_builtin_sym_end] = ACTIONS(5), + [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), @@ -16023,9 +14863,8 @@ 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_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(29), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), @@ -16035,7 +14874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(123), + [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -16057,17 +14896,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -16075,7 +14914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(83), [anon_sym_asm] = ACTIONS(85), [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), + [sym_number_literal] = ACTIONS(87), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), [anon_sym_U_SQUOTE] = ACTIONS(89), @@ -16086,89 +14925,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), [anon_sym_NULL] = ACTIONS(95), [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [10] = { - [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(1894), - [sym_preproc_elif] = STATE(1894), - [sym_preproc_elifdef] = STATE(1894), - [sym_function_definition] = STATE(6), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(817), + [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(1890), + [sym_preproc_elif] = STATE(1890), + [sym_preproc_elifdef] = STATE(1890), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [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_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), @@ -16252,83 +15089,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [11] = { - [sym_preproc_include] = STATE(24), - [sym_preproc_def] = STATE(24), - [sym_preproc_function_def] = STATE(24), - [sym_preproc_call] = STATE(24), - [sym_preproc_if] = STATE(24), - [sym_preproc_ifdef] = STATE(24), - [sym_preproc_else] = STATE(1810), - [sym_preproc_elif] = STATE(1810), - [sym_preproc_elifdef] = STATE(1810), - [sym_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(817), + [3] = { + [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(1823), + [sym_preproc_elif] = STATE(1823), + [sym_preproc_elifdef] = STATE(1823), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), - [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(24), - [sym_labeled_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_switch_statement] = STATE(24), - [sym_case_statement] = STATE(24), - [sym_while_statement] = STATE(24), - [sym_do_statement] = STATE(24), - [sym_for_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_break_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [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_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), @@ -16393,420 +15228,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [12] = { - [sym_preproc_include] = STATE(13), - [sym_preproc_def] = STATE(13), - [sym_preproc_function_def] = STATE(13), - [sym_preproc_call] = STATE(13), - [sym_preproc_if] = STATE(13), - [sym_preproc_ifdef] = STATE(13), - [sym_preproc_else] = STATE(1779), - [sym_preproc_elif] = STATE(1779), - [sym_function_definition] = STATE(13), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(13), - [sym_labeled_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_if_statement] = STATE(13), - [sym_switch_statement] = STATE(13), - [sym_case_statement] = STATE(13), - [sym_while_statement] = STATE(13), - [sym_do_statement] = STATE(13), - [sym_for_statement] = STATE(13), - [sym_return_statement] = STATE(13), - [sym_break_statement] = STATE(13), - [sym_continue_statement] = STATE(13), - [sym_goto_statement] = STATE(13), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [13] = { - [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(1681), - [sym_preproc_elif] = STATE(1681), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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), - }, - [14] = { - [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(1892), - [sym_preproc_elif] = STATE(1892), - [sym_function_definition] = STATE(15), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [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(1886), + [sym_preproc_elif] = STATE(1886), + [sym_preproc_elifdef] = STATE(1886), + [sym_function_definition] = STATE(7), + [sym_declaration] = STATE(7), + [sym_type_definition] = STATE(7), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(7), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(7), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(7), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(7), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -16814,9 +15336,9 @@ 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_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), @@ -16826,7 +15348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -16848,17 +15370,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -16883,87 +15405,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [15] = { - [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(1675), - [sym_preproc_elif] = STATE(1675), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [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(1768), + [sym_preproc_elif] = STATE(1768), + [sym_preproc_elifdef] = STATE(1768), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -16971,9 +15494,9 @@ 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_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), @@ -16983,7 +15506,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17005,17 +15528,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17040,87 +15563,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [16] = { - [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(1717), - [sym_preproc_elif] = STATE(1717), - [sym_function_definition] = STATE(20), - [sym_declaration] = STATE(20), - [sym_type_definition] = STATE(20), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(20), - [sym_attribute_specifier] = STATE(817), + [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(1745), + [sym_preproc_elif] = STATE(1745), + [sym_preproc_elifdef] = STATE(1745), + [sym_function_definition] = STATE(8), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(20), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(20), - [sym_labeled_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_switch_statement] = STATE(20), - [sym_case_statement] = STATE(20), - [sym_while_statement] = STATE(20), - [sym_do_statement] = STATE(20), - [sym_for_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_break_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_goto_statement] = STATE(20), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(20), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(20), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -17128,9 +15652,9 @@ 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_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), @@ -17140,7 +15664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17162,17 +15686,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17197,87 +15721,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [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(1812), - [sym_preproc_elif] = STATE(1812), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [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(1953), + [sym_preproc_elif] = STATE(1953), + [sym_preproc_elifdef] = STATE(1953), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -17285,9 +15810,9 @@ 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_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), @@ -17297,7 +15822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17319,17 +15844,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17354,87 +15879,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [18] = { - [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(1813), - [sym_preproc_elif] = STATE(1813), - [sym_function_definition] = STATE(19), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(817), + [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(1734), + [sym_preproc_elif] = STATE(1734), + [sym_preproc_elifdef] = STATE(1734), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -17442,9 +15968,9 @@ 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_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), @@ -17454,7 +15980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17476,17 +16002,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17511,87 +16037,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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(1767), - [sym_preproc_elif] = STATE(1767), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [9] = { + [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(1795), + [sym_preproc_elif] = STATE(1795), + [sym_preproc_elifdef] = STATE(1795), + [sym_function_definition] = STATE(5), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(5), + [sym_labeled_statement] = STATE(5), + [sym_expression_statement] = STATE(5), + [sym_if_statement] = STATE(5), + [sym_switch_statement] = STATE(5), + [sym_case_statement] = STATE(5), + [sym_while_statement] = STATE(5), + [sym_do_statement] = STATE(5), + [sym_for_statement] = STATE(5), + [sym_return_statement] = STATE(5), + [sym_break_statement] = STATE(5), + [sym_continue_statement] = STATE(5), + [sym_goto_statement] = STATE(5), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -17599,9 +16126,9 @@ 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_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), @@ -17611,7 +16138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17633,17 +16160,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17668,87 +16195,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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(1688), - [sym_preproc_elif] = STATE(1688), - [sym_function_definition] = STATE(27), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [10] = { + [sym_preproc_include] = STATE(2), + [sym_preproc_def] = STATE(2), + [sym_preproc_function_def] = STATE(2), + [sym_preproc_call] = STATE(2), + [sym_preproc_if] = STATE(2), + [sym_preproc_ifdef] = STATE(2), + [sym_preproc_else] = STATE(1909), + [sym_preproc_elif] = STATE(1909), + [sym_preproc_elifdef] = STATE(1909), + [sym_function_definition] = STATE(2), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(2), + [sym_labeled_statement] = STATE(2), + [sym_expression_statement] = STATE(2), + [sym_if_statement] = STATE(2), + [sym_switch_statement] = STATE(2), + [sym_case_statement] = STATE(2), + [sym_while_statement] = STATE(2), + [sym_do_statement] = STATE(2), + [sym_for_statement] = STATE(2), + [sym_return_statement] = STATE(2), + [sym_break_statement] = STATE(2), + [sym_continue_statement] = STATE(2), + [sym_goto_statement] = STATE(2), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -17756,9 +16284,9 @@ 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_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), @@ -17768,7 +16296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17790,17 +16318,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17825,87 +16353,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [21] = { - [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(1766), - [sym_preproc_elif] = STATE(1766), - [sym_function_definition] = STATE(23), - [sym_declaration] = STATE(23), - [sym_type_definition] = STATE(23), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(23), - [sym_attribute_specifier] = STATE(817), + [11] = { + [sym_preproc_include] = STATE(3), + [sym_preproc_def] = STATE(3), + [sym_preproc_function_def] = STATE(3), + [sym_preproc_call] = STATE(3), + [sym_preproc_if] = STATE(3), + [sym_preproc_ifdef] = STATE(3), + [sym_preproc_else] = STATE(1783), + [sym_preproc_elif] = STATE(1783), + [sym_preproc_elifdef] = STATE(1783), + [sym_function_definition] = STATE(3), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(23), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(23), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(23), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(3), + [sym_labeled_statement] = STATE(3), + [sym_expression_statement] = STATE(3), + [sym_if_statement] = STATE(3), + [sym_switch_statement] = STATE(3), + [sym_case_statement] = STATE(3), + [sym_while_statement] = STATE(3), + [sym_do_statement] = STATE(3), + [sym_for_statement] = STATE(3), + [sym_return_statement] = STATE(3), + [sym_break_statement] = STATE(3), + [sym_continue_statement] = STATE(3), + [sym_goto_statement] = STATE(3), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), - [sym_preproc_directive] = ACTIONS(181), + [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), @@ -17913,9 +16442,9 @@ 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_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), @@ -17925,7 +16454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -17947,17 +16476,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -17982,35 +16511,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [22] = { + [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(1705), - [sym_preproc_elif] = STATE(1705), + [sym_preproc_else] = STATE(1757), + [sym_preproc_elif] = STATE(1757), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18024,40 +16551,40 @@ 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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), + [sym_macro_type_specifier] = STATE(1147), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [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_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), @@ -18139,35 +16666,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [23] = { + [13] = { [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(1715), - [sym_preproc_elif] = STATE(1715), + [sym_preproc_else] = STATE(1860), + [sym_preproc_elif] = STATE(1860), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18181,40 +16706,40 @@ 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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), + [sym_macro_type_specifier] = STATE(1147), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [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_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), @@ -18296,33 +16821,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [24] = { + [14] = { [sym_preproc_include] = STATE(24), [sym_preproc_def] = STATE(24), [sym_preproc_function_def] = STATE(24), [sym_preproc_call] = STATE(24), [sym_preproc_if] = STATE(24), [sym_preproc_ifdef] = STATE(24), + [sym_preproc_else] = STATE(1898), + [sym_preproc_elif] = STATE(1898), [sym_function_definition] = STATE(24), [sym_declaration] = STATE(24), [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1299), - [sym__function_declaration_specifiers] = STATE(1298), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(817), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(767), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), [sym_compound_statement] = STATE(24), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(962), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), [sym_attributed_statement] = STATE(24), [sym_labeled_statement] = STATE(24), [sym_expression_statement] = STATE(24), @@ -18336,199 +16861,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(24), [sym_continue_statement] = STATE(24), [sym_goto_statement] = STATE(24), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), [sym__empty_declaration] = STATE(24), - [sym_macro_type_specifier] = STATE(1136), + [sym_macro_type_specifier] = STATE(1147), [aux_sym_preproc_if_repeat1] = STATE(24), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(235), - [aux_sym_preproc_include_token1] = ACTIONS(238), - [aux_sym_preproc_def_token1] = ACTIONS(241), - [aux_sym_preproc_if_token1] = ACTIONS(244), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(249), - [aux_sym_preproc_ifdef_token2] = ACTIONS(249), - [aux_sym_preproc_else_token1] = ACTIONS(247), - [aux_sym_preproc_elif_token1] = ACTIONS(247), - [aux_sym_preproc_elifdef_token1] = ACTIONS(247), - [aux_sym_preproc_elifdef_token2] = ACTIONS(247), - [sym_preproc_directive] = ACTIONS(252), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(267), - [anon_sym_typedef] = ACTIONS(270), - [anon_sym_extern] = ACTIONS(273), - [anon_sym___attribute__] = ACTIONS(276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym___declspec] = ACTIONS(282), - [anon_sym___cdecl] = ACTIONS(285), - [anon_sym___clrcall] = ACTIONS(285), - [anon_sym___stdcall] = ACTIONS(285), - [anon_sym___fastcall] = ACTIONS(285), - [anon_sym___thiscall] = ACTIONS(285), - [anon_sym___vectorcall] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(288), - [anon_sym_static] = ACTIONS(291), - [anon_sym_auto] = ACTIONS(291), - [anon_sym_register] = ACTIONS(291), - [anon_sym_inline] = ACTIONS(291), - [anon_sym_thread_local] = ACTIONS(291), - [anon_sym_const] = ACTIONS(294), - [anon_sym_constexpr] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_restrict] = ACTIONS(294), - [anon_sym___restrict__] = ACTIONS(294), - [anon_sym__Atomic] = ACTIONS(294), - [anon_sym__Noreturn] = ACTIONS(294), - [anon_sym_noreturn] = ACTIONS(294), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [sym_primitive_type] = ACTIONS(300), - [anon_sym_enum] = ACTIONS(303), - [anon_sym_struct] = ACTIONS(306), - [anon_sym_union] = ACTIONS(309), - [anon_sym_if] = ACTIONS(312), - [anon_sym_switch] = ACTIONS(315), - [anon_sym_case] = ACTIONS(318), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(324), - [anon_sym_do] = ACTIONS(327), - [anon_sym_for] = ACTIONS(330), - [anon_sym_return] = ACTIONS(333), - [anon_sym_break] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(339), - [anon_sym_goto] = ACTIONS(342), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_offsetof] = ACTIONS(351), - [anon_sym__Generic] = ACTIONS(354), - [anon_sym_asm] = ACTIONS(357), - [anon_sym___asm__] = ACTIONS(357), - [sym_number_literal] = ACTIONS(360), - [anon_sym_L_SQUOTE] = ACTIONS(363), - [anon_sym_u_SQUOTE] = ACTIONS(363), - [anon_sym_U_SQUOTE] = ACTIONS(363), - [anon_sym_u8_SQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(363), - [anon_sym_L_DQUOTE] = ACTIONS(366), - [anon_sym_u_DQUOTE] = ACTIONS(366), - [anon_sym_U_DQUOTE] = ACTIONS(366), - [anon_sym_u8_DQUOTE] = ACTIONS(366), - [anon_sym_DQUOTE] = ACTIONS(366), - [sym_true] = ACTIONS(369), - [sym_false] = ACTIONS(369), - [anon_sym_NULL] = ACTIONS(372), - [anon_sym_nullptr] = ACTIONS(372), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(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(1739), - [sym_preproc_elif] = STATE(1739), - [sym_function_definition] = STATE(22), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(817), + [15] = { + [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(1951), + [sym_preproc_elif] = STATE(1951), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [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(375), + [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), @@ -18610,82 +17131,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [26] = { - [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(1847), - [sym_preproc_elif] = STATE(1847), - [sym_function_definition] = STATE(17), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(817), + [16] = { + [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(1917), + [sym_preproc_elif] = STATE(1917), + [sym_function_definition] = STATE(23), + [sym_declaration] = STATE(23), + [sym_type_definition] = STATE(23), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(23), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(17), - [sym_labeled_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_switch_statement] = STATE(17), - [sym_case_statement] = STATE(17), - [sym_while_statement] = STATE(17), - [sym_do_statement] = STATE(17), - [sym_for_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_break_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_goto_statement] = STATE(17), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(23), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(23), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(23), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [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_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), @@ -18767,33 +17286,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [27] = { + [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(1981), + [sym_preproc_elif] = STATE(1981), [sym_function_definition] = STATE(27), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1314), - [sym__function_declaration_specifiers] = STATE(1315), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(817), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(765), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(963), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18807,197 +17326,45 @@ 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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1136), + [sym_macro_type_specifier] = STATE(1147), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(391), - [aux_sym_preproc_ifdef_token2] = ACTIONS(391), - [aux_sym_preproc_else_token1] = ACTIONS(247), - [aux_sym_preproc_elif_token1] = ACTIONS(247), - [sym_preproc_directive] = ACTIONS(394), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(397), - [anon_sym_typedef] = ACTIONS(400), - [anon_sym_extern] = ACTIONS(403), - [anon_sym___attribute__] = ACTIONS(276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym___declspec] = ACTIONS(282), - [anon_sym___cdecl] = ACTIONS(285), - [anon_sym___clrcall] = ACTIONS(285), - [anon_sym___stdcall] = ACTIONS(285), - [anon_sym___fastcall] = ACTIONS(285), - [anon_sym___thiscall] = ACTIONS(285), - [anon_sym___vectorcall] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(406), - [anon_sym_static] = ACTIONS(291), - [anon_sym_auto] = ACTIONS(291), - [anon_sym_register] = ACTIONS(291), - [anon_sym_inline] = ACTIONS(291), - [anon_sym_thread_local] = ACTIONS(291), - [anon_sym_const] = ACTIONS(294), - [anon_sym_constexpr] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_restrict] = ACTIONS(294), - [anon_sym___restrict__] = ACTIONS(294), - [anon_sym__Atomic] = ACTIONS(294), - [anon_sym__Noreturn] = ACTIONS(294), - [anon_sym_noreturn] = ACTIONS(294), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [sym_primitive_type] = ACTIONS(300), - [anon_sym_enum] = ACTIONS(303), - [anon_sym_struct] = ACTIONS(306), - [anon_sym_union] = ACTIONS(309), - [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(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_offsetof] = ACTIONS(351), - [anon_sym__Generic] = ACTIONS(354), - [anon_sym_asm] = ACTIONS(357), - [anon_sym___asm__] = ACTIONS(357), - [sym_number_literal] = ACTIONS(360), - [anon_sym_L_SQUOTE] = ACTIONS(363), - [anon_sym_u_SQUOTE] = ACTIONS(363), - [anon_sym_U_SQUOTE] = ACTIONS(363), - [anon_sym_u8_SQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(363), - [anon_sym_L_DQUOTE] = ACTIONS(366), - [anon_sym_u_DQUOTE] = ACTIONS(366), - [anon_sym_U_DQUOTE] = ACTIONS(366), - [anon_sym_u8_DQUOTE] = ACTIONS(366), - [anon_sym_DQUOTE] = ACTIONS(366), - [sym_true] = ACTIONS(369), - [sym_false] = ACTIONS(369), - [anon_sym_NULL] = ACTIONS(372), - [anon_sym_nullptr] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - }, - [28] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(42), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(42), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(42), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(42), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19005,9 +17372,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19017,8 +17384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(462), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19040,17 +17406,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19075,82 +17441,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(817), + [18] = { + [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(1983), + [sym_preproc_elif] = STATE(1983), + [sym_function_definition] = STATE(15), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(51), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(51), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(51), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19158,9 +17527,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19170,8 +17539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19193,17 +17561,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19228,82 +17596,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [30] = { - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_preproc_if] = STATE(31), - [sym_preproc_ifdef] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(817), + [19] = { + [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(1863), + [sym_preproc_elif] = STATE(1863), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(31), - [sym_labeled_statement] = STATE(31), - [sym_expression_statement] = STATE(31), - [sym_if_statement] = STATE(31), - [sym_switch_statement] = STATE(31), - [sym_case_statement] = STATE(31), - [sym_while_statement] = STATE(31), - [sym_do_statement] = STATE(31), - [sym_for_statement] = STATE(31), - [sym_return_statement] = STATE(31), - [sym_break_statement] = STATE(31), - [sym_continue_statement] = STATE(31), - [sym_goto_statement] = STATE(31), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(17), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(17), + [sym_labeled_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_switch_statement] = STATE(17), + [sym_case_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_statement] = STATE(17), + [sym_for_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_break_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_goto_statement] = STATE(17), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(17), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19311,9 +17682,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19323,8 +17694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19346,17 +17716,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19381,82 +17751,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [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(1731), + [sym_preproc_elif] = STATE(1731), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19464,9 +17837,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19476,8 +17849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19499,17 +17871,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19534,82 +17906,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [21] = { + [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(1735), + [sym_preproc_elif] = STATE(1735), + [sym_function_definition] = STATE(20), + [sym_declaration] = STATE(20), + [sym_type_definition] = STATE(20), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(20), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(20), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(20), + [sym_labeled_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_switch_statement] = STATE(20), + [sym_case_statement] = STATE(20), + [sym_while_statement] = STATE(20), + [sym_do_statement] = STATE(20), + [sym_for_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_break_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_goto_statement] = STATE(20), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(20), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(20), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -19617,9 +17992,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19629,8 +18004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19652,17 +18026,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19687,82 +18061,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(37), - [sym_preproc_def] = STATE(37), - [sym_preproc_function_def] = STATE(37), - [sym_preproc_call] = STATE(37), - [sym_preproc_if] = STATE(37), - [sym_preproc_ifdef] = STATE(37), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(817), + [22] = { + [sym_preproc_include] = STATE(13), + [sym_preproc_def] = STATE(13), + [sym_preproc_function_def] = STATE(13), + [sym_preproc_call] = STATE(13), + [sym_preproc_if] = STATE(13), + [sym_preproc_ifdef] = STATE(13), + [sym_preproc_else] = STATE(1822), + [sym_preproc_elif] = STATE(1822), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(37), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(13), + [sym_labeled_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_if_statement] = STATE(13), + [sym_switch_statement] = STATE(13), + [sym_case_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_statement] = STATE(13), + [sym_for_statement] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_break_statement] = STATE(13), + [sym_continue_statement] = STATE(13), + [sym_goto_statement] = STATE(13), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), @@ -19770,9 +18147,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19782,8 +18159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19805,17 +18181,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19840,82 +18216,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [34] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [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(1992), + [sym_preproc_elif] = STATE(1992), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), @@ -19923,9 +18302,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -19935,8 +18314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -19958,17 +18336,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -19993,236 +18371,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(498), - [aux_sym_preproc_include_token1] = ACTIONS(501), - [aux_sym_preproc_def_token1] = ACTIONS(504), - [aux_sym_preproc_if_token1] = ACTIONS(507), - [aux_sym_preproc_ifdef_token1] = ACTIONS(510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(510), - [sym_preproc_directive] = ACTIONS(513), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_typedef] = ACTIONS(519), - [anon_sym_extern] = ACTIONS(522), - [anon_sym___attribute__] = ACTIONS(276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym___declspec] = ACTIONS(282), - [anon_sym___cdecl] = ACTIONS(285), - [anon_sym___clrcall] = ACTIONS(285), - [anon_sym___stdcall] = ACTIONS(285), - [anon_sym___fastcall] = ACTIONS(285), - [anon_sym___thiscall] = ACTIONS(285), - [anon_sym___vectorcall] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(525), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_static] = ACTIONS(291), - [anon_sym_auto] = ACTIONS(291), - [anon_sym_register] = ACTIONS(291), - [anon_sym_inline] = ACTIONS(291), - [anon_sym_thread_local] = ACTIONS(291), - [anon_sym_const] = ACTIONS(294), - [anon_sym_constexpr] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_restrict] = ACTIONS(294), - [anon_sym___restrict__] = ACTIONS(294), - [anon_sym__Atomic] = ACTIONS(294), - [anon_sym__Noreturn] = ACTIONS(294), - [anon_sym_noreturn] = ACTIONS(294), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [sym_primitive_type] = ACTIONS(300), - [anon_sym_enum] = ACTIONS(303), - [anon_sym_struct] = ACTIONS(306), - [anon_sym_union] = ACTIONS(309), - [anon_sym_if] = ACTIONS(530), - [anon_sym_switch] = ACTIONS(533), - [anon_sym_case] = ACTIONS(536), - [anon_sym_default] = ACTIONS(539), - [anon_sym_while] = ACTIONS(542), - [anon_sym_do] = ACTIONS(545), - [anon_sym_for] = ACTIONS(548), - [anon_sym_return] = ACTIONS(551), - [anon_sym_break] = ACTIONS(554), - [anon_sym_continue] = ACTIONS(557), - [anon_sym_goto] = ACTIONS(560), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_offsetof] = ACTIONS(351), - [anon_sym__Generic] = ACTIONS(354), - [anon_sym_asm] = ACTIONS(357), - [anon_sym___asm__] = ACTIONS(357), - [sym_number_literal] = ACTIONS(360), - [anon_sym_L_SQUOTE] = ACTIONS(363), - [anon_sym_u_SQUOTE] = ACTIONS(363), - [anon_sym_U_SQUOTE] = ACTIONS(363), - [anon_sym_u8_SQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(363), - [anon_sym_L_DQUOTE] = ACTIONS(366), - [anon_sym_u_DQUOTE] = ACTIONS(366), - [anon_sym_U_DQUOTE] = ACTIONS(366), - [anon_sym_u8_DQUOTE] = ACTIONS(366), - [anon_sym_DQUOTE] = ACTIONS(366), - [sym_true] = ACTIONS(369), - [sym_false] = ACTIONS(369), - [anon_sym_NULL] = ACTIONS(372), - [anon_sym_nullptr] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - }, - [36] = { - [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(817), - [sym__declaration_specifiers] = STATE(1309), - [sym__function_declaration_specifiers] = STATE(1302), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(817), + [24] = { + [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(1877), + [sym_preproc_elif] = STATE(1877), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(782), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(563), - [aux_sym_preproc_include_token1] = ACTIONS(565), - [aux_sym_preproc_def_token1] = ACTIONS(567), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [aux_sym_preproc_if_token2] = ACTIONS(571), - [aux_sym_preproc_ifdef_token1] = ACTIONS(573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(573), - [sym_preproc_directive] = ACTIONS(575), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), @@ -20230,9 +18457,9 @@ 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(577), - [anon_sym_typedef] = ACTIONS(579), - [anon_sym_extern] = ACTIONS(581), + [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), @@ -20242,7 +18469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -20264,17 +18491,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -20299,82 +18526,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [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(819), + [sym__declaration_specifiers] = STATE(1355), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_ifdef_token1] = ACTIONS(450), - [aux_sym_preproc_ifdef_token2] = ACTIONS(450), - [sym_preproc_directive] = ACTIONS(452), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(817), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(987), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [anon_sym_signed] = ACTIONS(299), + [anon_sym_unsigned] = ACTIONS(299), + [anon_sym_long] = ACTIONS(299), + [anon_sym_short] = 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(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(1777), + [sym_preproc_elif] = STATE(1777), + [sym_function_definition] = STATE(12), + [sym_declaration] = STATE(12), + [sym_type_definition] = STATE(12), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(12), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(12), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(12), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(12), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), @@ -20382,9 +18767,9 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(458), + [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), @@ -20394,8 +18779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(37), [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(607), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -20417,17 +18801,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -20452,75 +18836,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [38] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(817), + [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(819), + [sym__declaration_specifiers] = STATE(1339), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(50), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(816), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(999), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [anon_sym_signed] = ACTIONS(299), + [anon_sym_unsigned] = ACTIONS(299), + [anon_sym_long] = ACTIONS(299), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [28] = { + [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(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20548,7 +19083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(609), + [anon_sym_RBRACE] = ACTIONS(462), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -20605,228 +19140,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [39] = { - [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(817), - [sym__declaration_specifiers] = STATE(1309), - [sym__function_declaration_specifiers] = STATE(1302), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(817), + [29] = { + [sym_preproc_include] = STATE(47), + [sym_preproc_def] = STATE(47), + [sym_preproc_function_def] = STATE(47), + [sym_preproc_call] = STATE(47), + [sym_preproc_if] = STATE(47), + [sym_preproc_ifdef] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(782), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(563), - [aux_sym_preproc_include_token1] = ACTIONS(565), - [aux_sym_preproc_def_token1] = ACTIONS(567), - [aux_sym_preproc_if_token1] = ACTIONS(569), - [aux_sym_preproc_if_token2] = ACTIONS(611), - [aux_sym_preproc_ifdef_token1] = ACTIONS(573), - [aux_sym_preproc_ifdef_token2] = ACTIONS(573), - [sym_preproc_directive] = ACTIONS(575), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(577), - [anon_sym_typedef] = ACTIONS(579), - [anon_sym_extern] = ACTIONS(581), - [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(583), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), - [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), - }, - [40] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -20854,7 +19234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -20911,228 +19291,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [41] = { - [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(817), - [sym__declaration_specifiers] = STATE(1309), - [sym__function_declaration_specifiers] = STATE(1302), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(817), + [30] = { + [sym_preproc_include] = STATE(40), + [sym_preproc_def] = STATE(40), + [sym_preproc_function_def] = STATE(40), + [sym_preproc_call] = STATE(40), + [sym_preproc_if] = STATE(40), + [sym_preproc_ifdef] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(782), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(965), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(615), - [aux_sym_preproc_include_token1] = ACTIONS(618), - [aux_sym_preproc_def_token1] = ACTIONS(621), - [aux_sym_preproc_if_token1] = ACTIONS(624), - [aux_sym_preproc_if_token2] = ACTIONS(247), - [aux_sym_preproc_ifdef_token1] = ACTIONS(627), - [aux_sym_preproc_ifdef_token2] = ACTIONS(627), - [sym_preproc_directive] = ACTIONS(630), - [anon_sym_LPAREN2] = ACTIONS(255), - [anon_sym_BANG] = ACTIONS(258), - [anon_sym_TILDE] = ACTIONS(258), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(264), - [anon_sym_AMP] = ACTIONS(264), - [anon_sym_SEMI] = ACTIONS(633), - [anon_sym_typedef] = ACTIONS(636), - [anon_sym_extern] = ACTIONS(639), - [anon_sym___attribute__] = ACTIONS(276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(279), - [anon_sym___declspec] = ACTIONS(282), - [anon_sym___cdecl] = ACTIONS(285), - [anon_sym___clrcall] = ACTIONS(285), - [anon_sym___stdcall] = ACTIONS(285), - [anon_sym___fastcall] = ACTIONS(285), - [anon_sym___thiscall] = ACTIONS(285), - [anon_sym___vectorcall] = ACTIONS(285), - [anon_sym_LBRACE] = ACTIONS(642), - [anon_sym_static] = ACTIONS(291), - [anon_sym_auto] = ACTIONS(291), - [anon_sym_register] = ACTIONS(291), - [anon_sym_inline] = ACTIONS(291), - [anon_sym_thread_local] = ACTIONS(291), - [anon_sym_const] = ACTIONS(294), - [anon_sym_constexpr] = ACTIONS(294), - [anon_sym_volatile] = ACTIONS(294), - [anon_sym_restrict] = ACTIONS(294), - [anon_sym___restrict__] = ACTIONS(294), - [anon_sym__Atomic] = ACTIONS(294), - [anon_sym__Noreturn] = ACTIONS(294), - [anon_sym_noreturn] = ACTIONS(294), - [anon_sym_signed] = ACTIONS(297), - [anon_sym_unsigned] = ACTIONS(297), - [anon_sym_long] = ACTIONS(297), - [anon_sym_short] = ACTIONS(297), - [sym_primitive_type] = ACTIONS(300), - [anon_sym_enum] = ACTIONS(303), - [anon_sym_struct] = ACTIONS(306), - [anon_sym_union] = ACTIONS(309), - [anon_sym_if] = ACTIONS(645), - [anon_sym_switch] = ACTIONS(648), - [anon_sym_case] = ACTIONS(651), - [anon_sym_default] = ACTIONS(654), - [anon_sym_while] = ACTIONS(657), - [anon_sym_do] = ACTIONS(660), - [anon_sym_for] = ACTIONS(663), - [anon_sym_return] = ACTIONS(666), - [anon_sym_break] = ACTIONS(669), - [anon_sym_continue] = ACTIONS(672), - [anon_sym_goto] = ACTIONS(675), - [anon_sym_DASH_DASH] = ACTIONS(345), - [anon_sym_PLUS_PLUS] = ACTIONS(345), - [anon_sym_sizeof] = ACTIONS(348), - [anon_sym_offsetof] = ACTIONS(351), - [anon_sym__Generic] = ACTIONS(354), - [anon_sym_asm] = ACTIONS(357), - [anon_sym___asm__] = ACTIONS(357), - [sym_number_literal] = ACTIONS(360), - [anon_sym_L_SQUOTE] = ACTIONS(363), - [anon_sym_u_SQUOTE] = ACTIONS(363), - [anon_sym_U_SQUOTE] = ACTIONS(363), - [anon_sym_u8_SQUOTE] = ACTIONS(363), - [anon_sym_SQUOTE] = ACTIONS(363), - [anon_sym_L_DQUOTE] = ACTIONS(366), - [anon_sym_u_DQUOTE] = ACTIONS(366), - [anon_sym_U_DQUOTE] = ACTIONS(366), - [anon_sym_u8_DQUOTE] = ACTIONS(366), - [anon_sym_DQUOTE] = ACTIONS(366), - [sym_true] = ACTIONS(369), - [sym_false] = ACTIONS(369), - [anon_sym_NULL] = ACTIONS(372), - [anon_sym_nullptr] = ACTIONS(372), - [sym_comment] = ACTIONS(3), - }, - [42] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(40), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21160,7 +19385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -21217,75 +19442,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [43] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(817), + [31] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(490), + [aux_sym_preproc_include_token1] = ACTIONS(493), + [aux_sym_preproc_def_token1] = ACTIONS(496), + [aux_sym_preproc_if_token1] = ACTIONS(499), + [aux_sym_preproc_ifdef_token1] = ACTIONS(502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(502), + [sym_preproc_directive] = ACTIONS(505), + [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(508), + [anon_sym_typedef] = ACTIONS(511), + [anon_sym_extern] = ACTIONS(514), + [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(517), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [anon_sym_signed] = ACTIONS(299), + [anon_sym_unsigned] = ACTIONS(299), + [anon_sym_long] = ACTIONS(299), + [anon_sym_short] = 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(522), + [anon_sym_switch] = ACTIONS(525), + [anon_sym_case] = ACTIONS(528), + [anon_sym_default] = ACTIONS(531), + [anon_sym_while] = ACTIONS(534), + [anon_sym_do] = ACTIONS(537), + [anon_sym_for] = ACTIONS(540), + [anon_sym_return] = ACTIONS(543), + [anon_sym_break] = ACTIONS(546), + [anon_sym_continue] = ACTIONS(549), + [anon_sym_goto] = ACTIONS(552), + [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), + }, + [32] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21313,7 +19687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(555), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -21370,75 +19744,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [33] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21466,7 +19838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(557), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -21523,75 +19895,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [45] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [34] = { + [sym_preproc_include] = STATE(33), + [sym_preproc_def] = STATE(33), + [sym_preproc_function_def] = STATE(33), + [sym_preproc_call] = STATE(33), + [sym_preproc_if] = STATE(33), + [sym_preproc_ifdef] = STATE(33), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(33), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_case_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_goto_statement] = STATE(33), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(33), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21619,7 +19989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(559), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -21676,75 +20046,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [46] = { - [sym_preproc_include] = STATE(40), - [sym_preproc_def] = STATE(40), - [sym_preproc_function_def] = STATE(40), - [sym_preproc_call] = STATE(40), - [sym_preproc_if] = STATE(40), - [sym_preproc_ifdef] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_declaration] = STATE(40), - [sym_type_definition] = STATE(40), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(40), - [sym_attribute_specifier] = STATE(817), + [35] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(40), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(40), - [sym_labeled_statement] = STATE(40), - [sym_expression_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_switch_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_do_statement] = STATE(40), - [sym_for_statement] = STATE(40), - [sym_return_statement] = STATE(40), - [sym_break_statement] = STATE(40), - [sym_continue_statement] = STATE(40), - [sym_goto_statement] = STATE(40), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(40), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(40), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21772,7 +20140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(561), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -21829,75 +20197,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [47] = { - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(817), + [36] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -21925,7 +20291,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(563), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -21982,75 +20348,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [48] = { - [sym_preproc_include] = STATE(34), - [sym_preproc_def] = STATE(34), - [sym_preproc_function_def] = STATE(34), - [sym_preproc_call] = STATE(34), - [sym_preproc_if] = STATE(34), - [sym_preproc_ifdef] = STATE(34), - [sym_function_definition] = STATE(34), - [sym_declaration] = STATE(34), - [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(817), + [37] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(34), - [sym_labeled_statement] = STATE(34), - [sym_expression_statement] = STATE(34), - [sym_if_statement] = STATE(34), - [sym_switch_statement] = STATE(34), - [sym_case_statement] = STATE(34), - [sym_while_statement] = STATE(34), - [sym_do_statement] = STATE(34), - [sym_for_statement] = STATE(34), - [sym_return_statement] = STATE(34), - [sym_break_statement] = STATE(34), - [sym_continue_statement] = STATE(34), - [sym_goto_statement] = STATE(34), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(34), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22078,7 +20442,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(565), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -22135,75 +20499,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(44), - [sym_attribute_specifier] = STATE(817), + [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(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(44), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(44), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(44), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22231,7 +20593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(567), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -22288,7 +20650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [50] = { + [39] = { [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), [sym_preproc_function_def] = STATE(35), @@ -22298,23 +20660,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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -22328,35 +20688,35 @@ 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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), + [sym_macro_type_specifier] = STATE(1147), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22384,7 +20744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(569), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -22441,75 +20801,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [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(817), - [sym__declaration_specifiers] = STATE(1308), - [sym__function_declaration_specifiers] = STATE(1306), - [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(817), + [40] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(788), - [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(964), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [sym_identifier] = ACTIONS(442), [aux_sym_preproc_include_token1] = ACTIONS(444), [aux_sym_preproc_def_token1] = ACTIONS(446), @@ -22537,7 +20895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(37), [anon_sym___vectorcall] = ACTIONS(37), [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(571), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -22568,159 +20926,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [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(817), - [sym__declaration_specifiers] = STATE(1311), - [sym__function_declaration_specifiers] = STATE(1310), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(804), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(960), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1123), - [sym__expression_not_binary] = STATE(1124), - [sym_conditional_expression] = STATE(1124), - [sym_assignment_expression] = STATE(1124), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(1124), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(1124), - [sym_cast_expression] = STATE(1124), - [sym_sizeof_expression] = STATE(1124), - [sym_offsetof_expression] = STATE(1124), - [sym_generic_expression] = STATE(1124), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(1124), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(1124), - [sym_concatenated_string] = STATE(1124), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(1124), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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_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), @@ -22728,7 +20935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(83), [anon_sym_asm] = ACTIONS(85), [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(87), + [sym_number_literal] = ACTIONS(147), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), [anon_sym_U_SQUOTE] = ACTIONS(89), @@ -22739,376 +20946,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(91), [anon_sym_u8_DQUOTE] = ACTIONS(91), [anon_sym_DQUOTE] = ACTIONS(91), - [sym_true] = ACTIONS(93), - [sym_false] = ACTIONS(93), + [sym_true] = ACTIONS(149), + [sym_false] = ACTIONS(149), [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(817), - [sym__declaration_specifiers] = STATE(1311), - [sym__function_declaration_specifiers] = STATE(1310), - [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(817), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(817), - [sym_ms_call_modifier] = STATE(804), - [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(817), - [sym_type_qualifier] = STATE(817), - [sym__type_specifier] = STATE(960), - [sym_sized_type_specifier] = STATE(1136), - [sym_pointer_type] = STATE(1036), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1123), - [sym__expression_not_binary] = STATE(1124), - [sym_conditional_expression] = STATE(1124), - [sym_assignment_expression] = STATE(1124), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(1124), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(1124), - [sym_cast_expression] = STATE(1124), - [sym_sizeof_expression] = STATE(1124), - [sym_offsetof_expression] = STATE(1124), - [sym_generic_expression] = STATE(1124), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(1124), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(1124), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(1124), - [sym_concatenated_string] = STATE(1124), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(1124), - [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(817), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [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_static] = ACTIONS(753), - [anon_sym_auto] = ACTIONS(753), - [anon_sym_register] = ACTIONS(753), - [anon_sym_inline] = ACTIONS(753), - [anon_sym_thread_local] = ACTIONS(753), - [anon_sym_const] = ACTIONS(756), - [anon_sym_constexpr] = ACTIONS(756), - [anon_sym_volatile] = ACTIONS(756), - [anon_sym_restrict] = ACTIONS(756), - [anon_sym___restrict__] = ACTIONS(756), - [anon_sym__Atomic] = ACTIONS(756), - [anon_sym__Noreturn] = ACTIONS(756), - [anon_sym_noreturn] = ACTIONS(756), - [anon_sym_signed] = ACTIONS(759), - [anon_sym_unsigned] = ACTIONS(759), - [anon_sym_long] = ACTIONS(759), - [anon_sym_short] = 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), - [sym_comment] = ACTIONS(3), - }, - [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1299), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(837), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [aux_sym_preproc_else_token1] = ACTIONS(840), - [aux_sym_preproc_elif_token1] = ACTIONS(840), - [aux_sym_preproc_elifdef_token1] = ACTIONS(840), - [aux_sym_preproc_elifdef_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(854), - [anon_sym_typedef] = ACTIONS(857), - [anon_sym_extern] = ACTIONS(860), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(866), - [anon_sym___declspec] = ACTIONS(869), - [anon_sym___cdecl] = ACTIONS(840), - [anon_sym___clrcall] = ACTIONS(840), - [anon_sym___stdcall] = ACTIONS(840), - [anon_sym___fastcall] = ACTIONS(840), - [anon_sym___thiscall] = ACTIONS(840), - [anon_sym___vectorcall] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(872), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_inline] = ACTIONS(860), - [anon_sym_thread_local] = ACTIONS(860), - [anon_sym_const] = ACTIONS(875), - [anon_sym_constexpr] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_restrict] = ACTIONS(875), - [anon_sym___restrict__] = ACTIONS(875), - [anon_sym__Atomic] = ACTIONS(875), - [anon_sym__Noreturn] = ACTIONS(875), - [anon_sym_noreturn] = ACTIONS(875), - [anon_sym_signed] = ACTIONS(878), - [anon_sym_unsigned] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [sym_primitive_type] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(893), - [anon_sym_else] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(896), - [anon_sym_case] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(899), - [anon_sym_do] = ACTIONS(902), - [anon_sym_for] = ACTIONS(905), - [anon_sym_return] = ACTIONS(908), - [anon_sym_break] = ACTIONS(911), - [anon_sym_continue] = ACTIONS(914), - [anon_sym_goto] = ACTIONS(917), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_offsetof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(929), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(935), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(941), - [anon_sym_u_DQUOTE] = ACTIONS(941), - [anon_sym_U_DQUOTE] = ACTIONS(941), - [anon_sym_u8_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [anon_sym_NULL] = ACTIONS(947), - [anon_sym_nullptr] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - }, - [55] = { - [sym_declaration] = STATE(57), - [sym_type_definition] = STATE(57), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1299), - [sym_attribute_specifier] = STATE(821), + [41] = { + [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(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(57), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(57), - [sym_labeled_statement] = STATE(57), - [sym_expression_statement] = STATE(57), - [sym_if_statement] = STATE(57), - [sym_switch_statement] = STATE(57), - [sym_while_statement] = STATE(57), - [sym_do_statement] = STATE(57), - [sym_for_statement] = STATE(57), - [sym_return_statement] = STATE(57), - [sym_break_statement] = STATE(57), - [sym_continue_statement] = STATE(57), - [sym_goto_statement] = STATE(57), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(57), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [aux_sym_preproc_else_token1] = ACTIONS(952), - [aux_sym_preproc_elif_token1] = ACTIONS(952), - [aux_sym_preproc_elifdef_token1] = ACTIONS(952), - [aux_sym_preproc_elifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(991), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(573), + [aux_sym_preproc_include_token1] = ACTIONS(575), + [aux_sym_preproc_def_token1] = ACTIONS(577), + [aux_sym_preproc_if_token1] = ACTIONS(579), + [aux_sym_preproc_if_token2] = ACTIONS(581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(583), + [sym_preproc_directive] = ACTIONS(585), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23116,19 +21034,19 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_typedef] = ACTIONS(589), + [anon_sym_extern] = ACTIONS(591), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(123), + [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(593), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -23150,18 +21068,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [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_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -23186,74 +21103,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [56] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1299), - [sym_attribute_specifier] = STATE(821), + [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(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(43), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(950), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(954), - [aux_sym_preproc_elifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(43), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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), + [sym_do_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_return_statement] = STATE(43), + [sym_break_statement] = STATE(43), + [sym_continue_statement] = STATE(43), + [sym_goto_statement] = STATE(43), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(43), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(43), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23261,19 +21184,20 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(123), + [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(460), + [anon_sym_RBRACE] = ACTIONS(617), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -23295,18 +21219,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(125), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(127), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [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_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), @@ -23331,74 +21254,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [57] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1299), - [sym_attribute_specifier] = STATE(821), + [43] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(950), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23406,19 +21335,20 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [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___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(460), + [anon_sym_RBRACE] = ACTIONS(619), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -23440,18 +21370,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -23476,74 +21405,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [58] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1299), - [sym_attribute_specifier] = STATE(821), + [44] = { + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(950), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(37), + [sym_labeled_statement] = STATE(37), + [sym_expression_statement] = STATE(37), + [sym_if_statement] = STATE(37), + [sym_switch_statement] = STATE(37), + [sym_case_statement] = STATE(37), + [sym_while_statement] = STATE(37), + [sym_do_statement] = STATE(37), + [sym_for_statement] = STATE(37), + [sym_return_statement] = STATE(37), + [sym_break_statement] = STATE(37), + [sym_continue_statement] = STATE(37), + [sym_goto_statement] = STATE(37), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23551,19 +21486,20 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [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___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(460), + [anon_sym_RBRACE] = ACTIONS(621), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -23585,18 +21521,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -23621,72 +21556,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [59] = { - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1314), - [sym_attribute_specifier] = STATE(821), + [45] = { + [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(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(61), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(61), - [sym_identifier] = ACTIONS(960), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(32), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(32), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(32), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23694,19 +21637,20 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [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___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(460), + [anon_sym_RBRACE] = ACTIONS(623), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -23728,18 +21672,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -23764,72 +21707,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [60] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1314), - [sym_attribute_specifier] = STATE(821), + [46] = { + [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(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(960), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(51), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(51), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23837,19 +21788,20 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [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___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(460), + [anon_sym_RBRACE] = ACTIONS(625), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -23871,18 +21823,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -23907,72 +21858,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [61] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1314), - [sym_attribute_specifier] = STATE(821), + [47] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [aux_sym_preproc_else_token1] = ACTIONS(954), - [aux_sym_preproc_elif_token1] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23980,19 +21939,20 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(189), + [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(460), + [anon_sym_RBRACE] = ACTIONS(627), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -24014,18 +21974,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [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_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), @@ -24050,215 +22009,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1314), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(962), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [aux_sym_preproc_else_token1] = ACTIONS(840), - [aux_sym_preproc_elif_token1] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(965), - [anon_sym_typedef] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(860), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(866), - [anon_sym___declspec] = ACTIONS(869), - [anon_sym___cdecl] = ACTIONS(840), - [anon_sym___clrcall] = ACTIONS(840), - [anon_sym___stdcall] = ACTIONS(840), - [anon_sym___fastcall] = ACTIONS(840), - [anon_sym___thiscall] = ACTIONS(840), - [anon_sym___vectorcall] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_inline] = ACTIONS(860), - [anon_sym_thread_local] = ACTIONS(860), - [anon_sym_const] = ACTIONS(875), - [anon_sym_constexpr] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_restrict] = ACTIONS(875), - [anon_sym___restrict__] = ACTIONS(875), - [anon_sym__Atomic] = ACTIONS(875), - [anon_sym__Noreturn] = ACTIONS(875), - [anon_sym_noreturn] = ACTIONS(875), - [anon_sym_signed] = ACTIONS(878), - [anon_sym_unsigned] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [sym_primitive_type] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(974), - [anon_sym_else] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(977), - [anon_sym_case] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(983), - [anon_sym_for] = ACTIONS(986), - [anon_sym_return] = ACTIONS(989), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_goto] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_offsetof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(929), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(935), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(941), - [anon_sym_u_DQUOTE] = ACTIONS(941), - [anon_sym_U_DQUOTE] = ACTIONS(941), - [anon_sym_u8_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [anon_sym_NULL] = ACTIONS(947), - [anon_sym_nullptr] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - }, - [63] = { - [sym_declaration] = STATE(60), - [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1314), - [sym_attribute_specifier] = STATE(821), + [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(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(960), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [aux_sym_preproc_else_token1] = ACTIONS(952), - [aux_sym_preproc_elif_token1] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(991), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(573), + [aux_sym_preproc_include_token1] = ACTIONS(575), + [aux_sym_preproc_def_token1] = ACTIONS(577), + [aux_sym_preproc_if_token1] = ACTIONS(579), + [aux_sym_preproc_if_token2] = ACTIONS(629), + [aux_sym_preproc_ifdef_token1] = ACTIONS(583), + [aux_sym_preproc_ifdef_token2] = ACTIONS(583), + [sym_preproc_directive] = ACTIONS(585), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24266,19 +22091,19 @@ 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(41), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_typedef] = ACTIONS(589), + [anon_sym_extern] = ACTIONS(591), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(189), + [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(593), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -24300,18 +22125,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(191), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(193), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [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_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -24336,70 +22160,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(69), - [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1309), - [sym_attribute_specifier] = STATE(821), + [49] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(69), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(69), - [sym_identifier] = ACTIONS(1001), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_if_token2] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24407,19 +22241,20 @@ 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(577), - [anon_sym_typedef] = ACTIONS(579), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(583), + [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(460), + [anon_sym_RBRACE] = ACTIONS(631), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -24441,18 +22276,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(585), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -24477,69 +22311,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [65] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1308), - [sym_attribute_specifier] = STATE(821), + [50] = { + [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(819), + [sym__declaration_specifiers] = STATE(1349), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(812), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(991), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(633), + [aux_sym_preproc_include_token1] = ACTIONS(636), + [aux_sym_preproc_def_token1] = ACTIONS(639), + [aux_sym_preproc_if_token1] = ACTIONS(642), + [aux_sym_preproc_if_token2] = ACTIONS(249), + [aux_sym_preproc_ifdef_token1] = ACTIONS(645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(645), + [sym_preproc_directive] = ACTIONS(648), + [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(651), + [anon_sym_typedef] = ACTIONS(654), + [anon_sym_extern] = ACTIONS(657), + [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(660), + [anon_sym_static] = ACTIONS(293), + [anon_sym_auto] = ACTIONS(293), + [anon_sym_register] = ACTIONS(293), + [anon_sym_inline] = ACTIONS(293), + [anon_sym_thread_local] = ACTIONS(293), + [anon_sym_const] = ACTIONS(296), + [anon_sym_constexpr] = ACTIONS(296), + [anon_sym_volatile] = ACTIONS(296), + [anon_sym_restrict] = ACTIONS(296), + [anon_sym___restrict__] = ACTIONS(296), + [anon_sym__Atomic] = ACTIONS(296), + [anon_sym__Noreturn] = ACTIONS(296), + [anon_sym_noreturn] = ACTIONS(296), + [anon_sym_signed] = ACTIONS(299), + [anon_sym_unsigned] = ACTIONS(299), + [anon_sym_long] = ACTIONS(299), + [anon_sym_short] = 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(663), + [anon_sym_switch] = ACTIONS(666), + [anon_sym_case] = ACTIONS(669), + [anon_sym_default] = ACTIONS(672), + [anon_sym_while] = ACTIONS(675), + [anon_sym_do] = ACTIONS(678), + [anon_sym_for] = ACTIONS(681), + [anon_sym_return] = ACTIONS(684), + [anon_sym_break] = ACTIONS(687), + [anon_sym_continue] = ACTIONS(690), + [anon_sym_goto] = ACTIONS(693), + [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), + }, + [51] = { + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_preproc_if] = STATE(31), + [sym_preproc_ifdef] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1341), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(814), + [sym_compound_statement] = STATE(31), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(983), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_case_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_goto_statement] = STATE(31), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym__empty_declaration] = STATE(31), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_preproc_if_repeat1] = STATE(31), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_ifdef_token1] = ACTIONS(450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(450), + [sym_preproc_directive] = ACTIONS(452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24549,18 +22545,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_typedef] = ACTIONS(456), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(458), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), + [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(460), - [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(696), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -24583,10 +22579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(954), [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), + [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), @@ -24618,211 +22613,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1309), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1007), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [aux_sym_preproc_if_token2] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_typedef] = ACTIONS(1013), - [anon_sym_extern] = ACTIONS(860), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(866), - [anon_sym___declspec] = ACTIONS(869), - [anon_sym___cdecl] = ACTIONS(840), - [anon_sym___clrcall] = ACTIONS(840), - [anon_sym___stdcall] = ACTIONS(840), - [anon_sym___fastcall] = ACTIONS(840), - [anon_sym___thiscall] = ACTIONS(840), - [anon_sym___vectorcall] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_inline] = ACTIONS(860), - [anon_sym_thread_local] = ACTIONS(860), - [anon_sym_const] = ACTIONS(875), - [anon_sym_constexpr] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_restrict] = ACTIONS(875), - [anon_sym___restrict__] = ACTIONS(875), - [anon_sym__Atomic] = ACTIONS(875), - [anon_sym__Noreturn] = ACTIONS(875), - [anon_sym_noreturn] = ACTIONS(875), - [anon_sym_signed] = ACTIONS(878), - [anon_sym_unsigned] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [sym_primitive_type] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(1019), - [anon_sym_else] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(1022), - [anon_sym_case] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(1025), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1031), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1037), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_goto] = ACTIONS(1043), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_offsetof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(929), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(935), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(941), - [anon_sym_u_DQUOTE] = ACTIONS(941), - [anon_sym_U_DQUOTE] = ACTIONS(941), - [anon_sym_u8_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [anon_sym_NULL] = ACTIONS(947), - [anon_sym_nullptr] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - }, - [67] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1309), - [sym_attribute_specifier] = STATE(821), + [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(819), + [sym__declaration_specifiers] = STATE(1343), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(72), - [sym_labeled_statement] = STATE(72), - [sym_expression_statement] = STATE(72), - [sym_if_statement] = STATE(72), - [sym_switch_statement] = STATE(72), - [sym_while_statement] = STATE(72), - [sym_do_statement] = STATE(72), - [sym_for_statement] = STATE(72), - [sym_return_statement] = STATE(72), - [sym_break_statement] = STATE(72), - [sym_continue_statement] = STATE(72), - [sym_goto_statement] = STATE(72), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1001), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(984), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1173), + [sym__expression_not_binary] = STATE(1166), + [sym_conditional_expression] = STATE(1166), + [sym_assignment_expression] = STATE(1166), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(1166), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(1166), + [sym_cast_expression] = STATE(1166), + [sym_sizeof_expression] = STATE(1166), + [sym_offsetof_expression] = STATE(1166), + [sym_generic_expression] = STATE(1166), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(1166), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(1166), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(1166), + [sym_concatenated_string] = STATE(1166), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(1166), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), @@ -24830,19 +22694,18 @@ 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(577), - [anon_sym_typedef] = ACTIONS(579), - [anon_sym_extern] = ACTIONS(41), + [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(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(583), + [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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -24864,18 +22727,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(585), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(958), - [anon_sym_default] = ACTIONS(958), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -24883,7 +22745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(83), [anon_sym_asm] = ACTIONS(85), [anon_sym___asm__] = ACTIONS(85), - [sym_number_literal] = ACTIONS(147), + [sym_number_literal] = ACTIONS(87), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), [anon_sym_U_SQUOTE] = ACTIONS(89), @@ -24894,75 +22756,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_true] = ACTIONS(93), + [sym_false] = ACTIONS(93), [anon_sym_NULL] = ACTIONS(95), [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [68] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1308), - [sym_attribute_specifier] = STATE(821), + [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(819), + [sym__declaration_specifiers] = STATE(1343), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1003), - [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_ms_declspec_modifier] = STATE(819), + [sym_ms_call_modifier] = STATE(815), + [sym_compound_statement] = STATE(53), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(984), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1173), + [sym__expression_not_binary] = STATE(1166), + [sym_conditional_expression] = STATE(1166), + [sym_assignment_expression] = STATE(1166), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(1166), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(1166), + [sym_cast_expression] = STATE(1166), + [sym_sizeof_expression] = STATE(1166), + [sym_offsetof_expression] = STATE(1166), + [sym_generic_expression] = STATE(1166), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(1166), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(1166), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(1166), + [sym_concatenated_string] = STATE(1166), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(1166), + [sym__empty_declaration] = STATE(53), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_translation_unit_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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_static] = ACTIONS(753), + [anon_sym_auto] = ACTIONS(753), + [anon_sym_register] = ACTIONS(753), + [anon_sym_inline] = ACTIONS(753), + [anon_sym_thread_local] = ACTIONS(753), + [anon_sym_const] = ACTIONS(756), + [anon_sym_constexpr] = ACTIONS(756), + [anon_sym_volatile] = ACTIONS(756), + [anon_sym_restrict] = ACTIONS(756), + [anon_sym___restrict__] = ACTIONS(756), + [anon_sym__Atomic] = ACTIONS(756), + [anon_sym__Noreturn] = ACTIONS(756), + [anon_sym_noreturn] = ACTIONS(756), + [anon_sym_signed] = ACTIONS(759), + [anon_sym_unsigned] = ACTIONS(759), + [anon_sym_long] = ACTIONS(759), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [54] = { + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(57), + [sym_labeled_statement] = STATE(57), + [sym_expression_statement] = STATE(57), + [sym_if_statement] = STATE(57), + [sym_switch_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_do_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_return_statement] = STATE(57), + [sym_break_statement] = STATE(57), + [sym_continue_statement] = STATE(57), + [sym_goto_statement] = STATE(57), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(57), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24970,20 +22986,19 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_typedef] = ACTIONS(119), [anon_sym_extern] = ACTIONS(41), [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(460), - [anon_sym_RBRACE] = ACTIONS(1046), + [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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25005,18 +23020,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -25041,70 +23056,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [69] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1309), - [sym_attribute_specifier] = STATE(821), + [55] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1001), - [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), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(58), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25112,19 +23131,19 @@ 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(577), - [anon_sym_typedef] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_typedef] = ACTIONS(119), [anon_sym_extern] = ACTIONS(41), [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(583), + [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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25146,18 +23165,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(585), - [anon_sym_else] = ACTIONS(956), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(956), - [anon_sym_default] = ACTIONS(956), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -25182,69 +23201,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1308), - [sym_attribute_specifier] = STATE(821), + [56] = { + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(65), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(1003), - [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_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(837), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_if_token2] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [aux_sym_preproc_else_token1] = ACTIONS(843), + [aux_sym_preproc_elif_token1] = ACTIONS(843), + [aux_sym_preproc_elifdef_token1] = ACTIONS(843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25252,20 +23276,19 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_typedef] = ACTIONS(119), [anon_sym_extern] = ACTIONS(41), [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(460), - [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25287,18 +23310,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(125), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [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), @@ -25323,70 +23346,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [57] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1005), - [sym_identifier] = ACTIONS(1050), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(837), + [aux_sym_preproc_include_token1] = ACTIONS(845), + [aux_sym_preproc_def_token1] = ACTIONS(845), + [aux_sym_preproc_if_token1] = ACTIONS(845), + [aux_sym_preproc_if_token2] = ACTIONS(845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(845), + [aux_sym_preproc_else_token1] = ACTIONS(845), + [aux_sym_preproc_elif_token1] = ACTIONS(845), + [aux_sym_preproc_elifdef_token1] = ACTIONS(845), + [aux_sym_preproc_elifdef_token2] = ACTIONS(845), + [sym_preproc_directive] = ACTIONS(845), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25394,19 +23421,19 @@ 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(1052), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(117), + [anon_sym_typedef] = ACTIONS(119), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym___cdecl] = ACTIONS(845), + [anon_sym___clrcall] = ACTIONS(845), + [anon_sym___stdcall] = ACTIONS(845), + [anon_sym___fastcall] = ACTIONS(845), + [anon_sym___thiscall] = ACTIONS(845), + [anon_sym___vectorcall] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(123), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25428,18 +23455,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [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_if] = ACTIONS(125), + [anon_sym_else] = ACTIONS(845), + [anon_sym_switch] = ACTIONS(127), + [anon_sym_case] = ACTIONS(845), + [anon_sym_default] = ACTIONS(845), + [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), @@ -25464,70 +23491,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(66), - [sym_type_definition] = STATE(66), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1309), - [sym_attribute_specifier] = STATE(821), + [58] = { + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1350), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(66), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(66), - [sym_labeled_statement] = STATE(66), - [sym_expression_statement] = STATE(66), - [sym_if_statement] = STATE(66), - [sym_switch_statement] = STATE(66), - [sym_while_statement] = STATE(66), - [sym_do_statement] = STATE(66), - [sym_for_statement] = STATE(66), - [sym_return_statement] = STATE(66), - [sym_break_statement] = STATE(66), - [sym_continue_statement] = STATE(66), - [sym_goto_statement] = STATE(66), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(1001), - [aux_sym_preproc_include_token1] = ACTIONS(954), - [aux_sym_preproc_def_token1] = ACTIONS(954), - [aux_sym_preproc_if_token1] = ACTIONS(954), - [aux_sym_preproc_if_token2] = ACTIONS(954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(954), - [sym_preproc_directive] = ACTIONS(954), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(847), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(850), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [aux_sym_preproc_else_token1] = ACTIONS(850), + [aux_sym_preproc_elif_token1] = ACTIONS(850), + [aux_sym_preproc_elifdef_token1] = ACTIONS(850), + [aux_sym_preproc_elifdef_token2] = ACTIONS(850), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_typedef] = ACTIONS(867), + [anon_sym_extern] = ACTIONS(870), + [anon_sym___attribute__] = ACTIONS(873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(876), + [anon_sym___declspec] = ACTIONS(879), + [anon_sym___cdecl] = ACTIONS(850), + [anon_sym___clrcall] = ACTIONS(850), + [anon_sym___stdcall] = ACTIONS(850), + [anon_sym___fastcall] = ACTIONS(850), + [anon_sym___thiscall] = ACTIONS(850), + [anon_sym___vectorcall] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_static] = ACTIONS(870), + [anon_sym_auto] = ACTIONS(870), + [anon_sym_register] = ACTIONS(870), + [anon_sym_inline] = ACTIONS(870), + [anon_sym_thread_local] = ACTIONS(870), + [anon_sym_const] = ACTIONS(885), + [anon_sym_constexpr] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym___restrict__] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym__Noreturn] = ACTIONS(885), + [anon_sym_noreturn] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(888), + [anon_sym_unsigned] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [sym_primitive_type] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(903), + [anon_sym_else] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_while] = ACTIONS(909), + [anon_sym_do] = ACTIONS(912), + [anon_sym_for] = ACTIONS(915), + [anon_sym_return] = ACTIONS(918), + [anon_sym_break] = ACTIONS(921), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_goto] = ACTIONS(927), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(933), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(942), + [anon_sym___asm__] = ACTIONS(942), + [sym_number_literal] = ACTIONS(945), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_u_DQUOTE] = ACTIONS(951), + [anon_sym_U_DQUOTE] = ACTIONS(951), + [anon_sym_u8_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [anon_sym_NULL] = ACTIONS(957), + [anon_sym_nullptr] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + }, + [59] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1342), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(960), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(850), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [aux_sym_preproc_else_token1] = ACTIONS(850), + [aux_sym_preproc_elif_token1] = ACTIONS(850), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(963), + [anon_sym_typedef] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(870), + [anon_sym___attribute__] = ACTIONS(873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(876), + [anon_sym___declspec] = ACTIONS(879), + [anon_sym___cdecl] = ACTIONS(850), + [anon_sym___clrcall] = ACTIONS(850), + [anon_sym___stdcall] = ACTIONS(850), + [anon_sym___fastcall] = ACTIONS(850), + [anon_sym___thiscall] = ACTIONS(850), + [anon_sym___vectorcall] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_static] = ACTIONS(870), + [anon_sym_auto] = ACTIONS(870), + [anon_sym_register] = ACTIONS(870), + [anon_sym_inline] = ACTIONS(870), + [anon_sym_thread_local] = ACTIONS(870), + [anon_sym_const] = ACTIONS(885), + [anon_sym_constexpr] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym___restrict__] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym__Noreturn] = ACTIONS(885), + [anon_sym_noreturn] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(888), + [anon_sym_unsigned] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [sym_primitive_type] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(975), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [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(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(933), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(942), + [anon_sym___asm__] = ACTIONS(942), + [sym_number_literal] = ACTIONS(945), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_u_DQUOTE] = ACTIONS(951), + [anon_sym_U_DQUOTE] = ACTIONS(951), + [anon_sym_u8_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [anon_sym_NULL] = ACTIONS(957), + [anon_sym_nullptr] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + }, + [60] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1342), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(59), + [sym_identifier] = ACTIONS(999), + [aux_sym_preproc_include_token1] = ACTIONS(845), + [aux_sym_preproc_def_token1] = ACTIONS(845), + [aux_sym_preproc_if_token1] = ACTIONS(845), + [aux_sym_preproc_if_token2] = ACTIONS(845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(845), + [aux_sym_preproc_else_token1] = ACTIONS(845), + [aux_sym_preproc_elif_token1] = ACTIONS(845), + [sym_preproc_directive] = ACTIONS(845), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25535,19 +23852,19 @@ 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(577), - [anon_sym_typedef] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(954), - [anon_sym___clrcall] = ACTIONS(954), - [anon_sym___stdcall] = ACTIONS(954), - [anon_sym___fastcall] = ACTIONS(954), - [anon_sym___thiscall] = ACTIONS(954), - [anon_sym___vectorcall] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(583), + [anon_sym___cdecl] = ACTIONS(845), + [anon_sym___clrcall] = ACTIONS(845), + [anon_sym___stdcall] = ACTIONS(845), + [anon_sym___fastcall] = ACTIONS(845), + [anon_sym___thiscall] = ACTIONS(845), + [anon_sym___vectorcall] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25569,18 +23886,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(585), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [anon_sym_if] = ACTIONS(191), + [anon_sym_else] = ACTIONS(845), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(845), + [anon_sym_default] = ACTIONS(845), + [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), @@ -25605,70 +23922,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [61] = { + [sym_declaration] = STATE(59), + [sym_type_definition] = STATE(59), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1342), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(71), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(71), - [ts_builtin_sym_end] = ACTIONS(1048), - [sym_identifier] = ACTIONS(1050), - [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_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(59), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [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), @@ -25676,19 +23995,19 @@ 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(1052), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_extern] = ACTIONS(41), [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___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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25710,18 +24029,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -25746,69 +24065,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1308), - [sym_attribute_specifier] = STATE(821), + [62] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1342), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(68), - [sym_identifier] = ACTIONS(1003), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(60), + [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), @@ -25816,20 +24138,19 @@ 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(454), - [anon_sym_typedef] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(460), - [anon_sym_RBRACE] = ACTIONS(1054), + [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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -25851,18 +24172,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(464), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(466), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [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_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), @@ -25887,352 +24208,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_identifier] = ACTIONS(1058), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(860), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(866), - [anon_sym___declspec] = ACTIONS(869), - [anon_sym___cdecl] = ACTIONS(840), - [anon_sym___clrcall] = ACTIONS(840), - [anon_sym___stdcall] = ACTIONS(840), - [anon_sym___fastcall] = ACTIONS(840), - [anon_sym___thiscall] = ACTIONS(840), - [anon_sym___vectorcall] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_inline] = ACTIONS(860), - [anon_sym_thread_local] = ACTIONS(860), - [anon_sym_const] = ACTIONS(875), - [anon_sym_constexpr] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_restrict] = ACTIONS(875), - [anon_sym___restrict__] = ACTIONS(875), - [anon_sym__Atomic] = ACTIONS(875), - [anon_sym__Noreturn] = ACTIONS(875), - [anon_sym_noreturn] = ACTIONS(875), - [anon_sym_signed] = ACTIONS(878), - [anon_sym_unsigned] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [sym_primitive_type] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(1073), - [anon_sym_case] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1082), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_goto] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_offsetof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(929), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(935), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(941), - [anon_sym_u_DQUOTE] = ACTIONS(941), - [anon_sym_U_DQUOTE] = ACTIONS(941), - [anon_sym_u8_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [anon_sym_NULL] = ACTIONS(947), - [anon_sym_nullptr] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - }, - [76] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1308), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(840), - [aux_sym_preproc_def_token1] = ACTIONS(840), - [aux_sym_preproc_if_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token1] = ACTIONS(840), - [aux_sym_preproc_ifdef_token2] = ACTIONS(840), - [sym_preproc_directive] = ACTIONS(840), - [anon_sym_LPAREN2] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1103), - [anon_sym_extern] = ACTIONS(860), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(866), - [anon_sym___declspec] = ACTIONS(869), - [anon_sym___cdecl] = ACTIONS(840), - [anon_sym___clrcall] = ACTIONS(840), - [anon_sym___stdcall] = ACTIONS(840), - [anon_sym___fastcall] = ACTIONS(840), - [anon_sym___thiscall] = ACTIONS(840), - [anon_sym___vectorcall] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1106), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_inline] = ACTIONS(860), - [anon_sym_thread_local] = ACTIONS(860), - [anon_sym_const] = ACTIONS(875), - [anon_sym_constexpr] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_restrict] = ACTIONS(875), - [anon_sym___restrict__] = ACTIONS(875), - [anon_sym__Atomic] = ACTIONS(875), - [anon_sym__Noreturn] = ACTIONS(875), - [anon_sym_noreturn] = ACTIONS(875), - [anon_sym_signed] = ACTIONS(878), - [anon_sym_unsigned] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [sym_primitive_type] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(1109), - [anon_sym_else] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(1112), - [anon_sym_case] = ACTIONS(840), - [anon_sym_default] = ACTIONS(840), - [anon_sym_while] = ACTIONS(1115), - [anon_sym_do] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1121), - [anon_sym_return] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_goto] = ACTIONS(1133), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_offsetof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(929), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(935), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(941), - [anon_sym_u_DQUOTE] = ACTIONS(941), - [anon_sym_U_DQUOTE] = ACTIONS(941), - [anon_sym_u8_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [anon_sym_NULL] = ACTIONS(947), - [anon_sym_nullptr] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - }, - [77] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [63] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1342), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1046), - [sym_identifier] = ACTIONS(1050), - [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_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(61), + [sym_identifier] = ACTIONS(999), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_if_token2] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [aux_sym_preproc_else_token1] = ACTIONS(843), + [aux_sym_preproc_elif_token1] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26240,19 +24281,19 @@ 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(1052), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_extern] = ACTIONS(41), [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___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(189), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -26274,18 +24315,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_if] = ACTIONS(191), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(193), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [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), @@ -26310,22 +24351,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [78] = { + [64] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1001), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_typedef] = ACTIONS(1007), + [anon_sym_extern] = ACTIONS(870), + [anon_sym___attribute__] = ACTIONS(873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(876), + [anon_sym___declspec] = ACTIONS(879), + [anon_sym___cdecl] = ACTIONS(850), + [anon_sym___clrcall] = ACTIONS(850), + [anon_sym___stdcall] = ACTIONS(850), + [anon_sym___fastcall] = ACTIONS(850), + [anon_sym___thiscall] = ACTIONS(850), + [anon_sym___vectorcall] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(1010), + [anon_sym_RBRACE] = ACTIONS(1013), + [anon_sym_static] = ACTIONS(870), + [anon_sym_auto] = ACTIONS(870), + [anon_sym_register] = ACTIONS(870), + [anon_sym_inline] = ACTIONS(870), + [anon_sym_thread_local] = ACTIONS(870), + [anon_sym_const] = ACTIONS(885), + [anon_sym_constexpr] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym___restrict__] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym__Noreturn] = ACTIONS(885), + [anon_sym_noreturn] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(888), + [anon_sym_unsigned] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [sym_primitive_type] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(1018), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [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(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(933), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(942), + [anon_sym___asm__] = ACTIONS(942), + [sym_number_literal] = ACTIONS(945), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_u_DQUOTE] = ACTIONS(951), + [anon_sym_U_DQUOTE] = ACTIONS(951), + [anon_sym_u8_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [anon_sym_NULL] = ACTIONS(957), + [anon_sym_nullptr] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + }, + [65] = { [sym_declaration] = STATE(77), [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), + [sym_ms_declspec_modifier] = STATE(819), [sym_compound_statement] = STATE(77), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), [sym_attributed_statement] = STATE(77), [sym_labeled_statement] = STATE(77), [sym_expression_statement] = STATE(77), @@ -26338,302 +24520,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(77), [sym_continue_statement] = STATE(77), [sym_goto_statement] = STATE(77), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), [aux_sym_case_statement_repeat1] = STATE(77), - [ts_builtin_sym_end] = ACTIONS(1054), - [sym_identifier] = ACTIONS(1050), - [aux_sym_preproc_include_token1] = ACTIONS(952), - [aux_sym_preproc_def_token1] = ACTIONS(952), - [aux_sym_preproc_if_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(952), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1052), - [anon_sym_typedef] = ACTIONS(27), - [anon_sym_extern] = ACTIONS(41), - [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(33), - [anon_sym___declspec] = ACTIONS(35), - [anon_sym___cdecl] = ACTIONS(952), - [anon_sym___clrcall] = ACTIONS(952), - [anon_sym___stdcall] = ACTIONS(952), - [anon_sym___fastcall] = ACTIONS(952), - [anon_sym___thiscall] = ACTIONS(952), - [anon_sym___vectorcall] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_static] = ACTIONS(41), - [anon_sym_auto] = ACTIONS(41), - [anon_sym_register] = ACTIONS(41), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_thread_local] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_constexpr] = ACTIONS(43), - [anon_sym_volatile] = ACTIONS(43), - [anon_sym_restrict] = ACTIONS(43), - [anon_sym___restrict__] = ACTIONS(43), - [anon_sym__Atomic] = ACTIONS(43), - [anon_sym__Noreturn] = ACTIONS(43), - [anon_sym_noreturn] = ACTIONS(43), - [anon_sym_signed] = ACTIONS(45), - [anon_sym_unsigned] = ACTIONS(45), - [anon_sym_long] = ACTIONS(45), - [anon_sym_short] = 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(952), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(952), - [anon_sym_default] = ACTIONS(952), - [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), - }, - [79] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1136), - [anon_sym_LPAREN2] = ACTIONS(842), - [anon_sym_BANG] = ACTIONS(845), - [anon_sym_TILDE] = ACTIONS(845), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_PLUS] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(851), - [anon_sym_AMP] = ACTIONS(851), - [anon_sym_SEMI] = ACTIONS(1100), - [anon_sym_typedef] = ACTIONS(1064), - [anon_sym_extern] = ACTIONS(860), - [anon_sym___attribute__] = ACTIONS(863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(866), - [anon_sym___declspec] = ACTIONS(869), - [anon_sym_LBRACE] = ACTIONS(1067), - [anon_sym_static] = ACTIONS(860), - [anon_sym_auto] = ACTIONS(860), - [anon_sym_register] = ACTIONS(860), - [anon_sym_inline] = ACTIONS(860), - [anon_sym_thread_local] = ACTIONS(860), - [anon_sym_const] = ACTIONS(875), - [anon_sym_constexpr] = ACTIONS(875), - [anon_sym_volatile] = ACTIONS(875), - [anon_sym_restrict] = ACTIONS(875), - [anon_sym___restrict__] = ACTIONS(875), - [anon_sym__Atomic] = ACTIONS(875), - [anon_sym__Noreturn] = ACTIONS(875), - [anon_sym_noreturn] = ACTIONS(875), - [anon_sym_signed] = ACTIONS(878), - [anon_sym_unsigned] = ACTIONS(878), - [anon_sym_long] = ACTIONS(878), - [anon_sym_short] = ACTIONS(878), - [sym_primitive_type] = ACTIONS(881), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(887), - [anon_sym_union] = ACTIONS(890), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_else] = ACTIONS(840), - [anon_sym_switch] = ACTIONS(1073), - [anon_sym_while] = ACTIONS(1142), - [anon_sym_do] = ACTIONS(1079), - [anon_sym_for] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1085), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1091), - [anon_sym_goto] = ACTIONS(1094), - [anon_sym_DASH_DASH] = ACTIONS(920), - [anon_sym_PLUS_PLUS] = ACTIONS(920), - [anon_sym_sizeof] = ACTIONS(923), - [anon_sym_offsetof] = ACTIONS(926), - [anon_sym__Generic] = ACTIONS(929), - [anon_sym_asm] = ACTIONS(932), - [anon_sym___asm__] = ACTIONS(932), - [sym_number_literal] = ACTIONS(935), - [anon_sym_L_SQUOTE] = ACTIONS(938), - [anon_sym_u_SQUOTE] = ACTIONS(938), - [anon_sym_U_SQUOTE] = ACTIONS(938), - [anon_sym_u8_SQUOTE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_L_DQUOTE] = ACTIONS(941), - [anon_sym_u_DQUOTE] = ACTIONS(941), - [anon_sym_U_DQUOTE] = ACTIONS(941), - [anon_sym_u8_DQUOTE] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym_true] = ACTIONS(944), - [sym_false] = ACTIONS(944), - [anon_sym_NULL] = ACTIONS(947), - [anon_sym_nullptr] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - }, - [80] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1148), + [sym_identifier] = ACTIONS(1042), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26642,12 +24563,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(456), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), + [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(460), + [anon_sym_RBRACE] = ACTIONS(1044), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -26669,16 +24597,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(954), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [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), @@ -26703,63 +24633,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(82), - [sym_type_definition] = STATE(82), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [66] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1340), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(82), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym_attributed_statement] = STATE(82), - [sym_labeled_statement] = STATE(82), - [sym_expression_statement] = STATE(82), - [sym_if_statement] = STATE(82), - [sym_switch_statement] = STATE(82), - [sym_while_statement] = STATE(82), - [sym_do_statement] = STATE(82), - [sym_for_statement] = STATE(82), - [sym_return_statement] = STATE(82), - [sym_break_statement] = STATE(82), - [sym_continue_statement] = STATE(82), - [sym_goto_statement] = STATE(82), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(1148), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym_attributed_statement] = STATE(72), + [sym_labeled_statement] = STATE(72), + [sym_expression_statement] = STATE(72), + [sym_if_statement] = STATE(72), + [sym_switch_statement] = STATE(72), + [sym_while_statement] = STATE(72), + [sym_do_statement] = STATE(72), + [sym_for_statement] = STATE(72), + [sym_return_statement] = STATE(72), + [sym_break_statement] = STATE(72), + [sym_continue_statement] = STATE(72), + [sym_goto_statement] = STATE(72), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1046), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26767,13 +24704,19 @@ 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(454), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_typedef] = ACTIONS(589), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), + [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(593), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -26795,16 +24738,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(952), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_if] = ACTIONS(595), + [anon_sym_else] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -26829,63 +24774,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [82] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [67] = { + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1148), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(78), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(78), + [ts_builtin_sym_end] = ACTIONS(1044), + [sym_identifier] = ACTIONS(1048), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26893,12 +24845,18 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(41), [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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), @@ -26921,12 +24879,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(956), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(839), [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(839), + [anon_sym_default] = ACTIONS(839), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -26955,63 +24915,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [83] = { - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), + [68] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1340), + [sym_attribute_specifier] = STATE(819), [sym_attribute_declaration] = STATE(529), - [sym_ms_declspec_modifier] = STATE(821), - [sym_compound_statement] = STATE(80), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [aux_sym_case_statement_repeat1] = STATE(80), - [sym_identifier] = ACTIONS(1148), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1046), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27019,13 +24986,19 @@ 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(454), - [anon_sym_typedef] = ACTIONS(27), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_typedef] = ACTIONS(589), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(39), + [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(593), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27047,16 +25020,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(958), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_if] = ACTIONS(595), + [anon_sym_else] = ACTIONS(841), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(841), + [anon_sym_default] = ACTIONS(841), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -27081,47 +25056,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [84] = { - [sym_declaration] = STATE(646), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(821), - [sym_ms_declspec_modifier] = STATE(821), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1031), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1933), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1156), + [69] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1340), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [aux_sym_preproc_if_token2] = ACTIONS(850), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(1055), + [anon_sym_typedef] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(870), + [anon_sym___attribute__] = ACTIONS(873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(876), + [anon_sym___declspec] = ACTIONS(879), + [anon_sym___cdecl] = ACTIONS(850), + [anon_sym___clrcall] = ACTIONS(850), + [anon_sym___stdcall] = ACTIONS(850), + [anon_sym___fastcall] = ACTIONS(850), + [anon_sym___thiscall] = ACTIONS(850), + [anon_sym___vectorcall] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_static] = ACTIONS(870), + [anon_sym_auto] = ACTIONS(870), + [anon_sym_register] = ACTIONS(870), + [anon_sym_inline] = ACTIONS(870), + [anon_sym_thread_local] = ACTIONS(870), + [anon_sym_const] = ACTIONS(885), + [anon_sym_constexpr] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym___restrict__] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym__Noreturn] = ACTIONS(885), + [anon_sym_noreturn] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(888), + [anon_sym_unsigned] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [sym_primitive_type] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(1064), + [anon_sym_else] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(1067), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1073), + [anon_sym_for] = ACTIONS(1076), + [anon_sym_return] = ACTIONS(1079), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1085), + [anon_sym_goto] = ACTIONS(1088), + [anon_sym_DASH_DASH] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(933), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(942), + [anon_sym___asm__] = ACTIONS(942), + [sym_number_literal] = ACTIONS(945), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_u_DQUOTE] = ACTIONS(951), + [anon_sym_U_DQUOTE] = ACTIONS(951), + [anon_sym_u8_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [anon_sym_NULL] = ACTIONS(957), + [anon_sym_nullptr] = ACTIONS(957), + [sym_comment] = ACTIONS(3), + }, + [70] = { + [sym_declaration] = STATE(74), + [sym_type_definition] = STATE(74), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(74), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27129,11 +25267,20 @@ 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_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(1091), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27155,6 +25302,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(464), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [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), @@ -27179,47 +25338,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [85] = { - [sym_declaration] = STATE(643), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(821), - [sym_ms_declspec_modifier] = STATE(821), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), + [71] = { + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(73), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1044), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1872), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1156), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(73), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27227,11 +25409,19 @@ 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_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27253,6 +25443,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [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), @@ -27277,47 +25479,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [86] = { - [sym_declaration] = STATE(588), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(821), - [sym_ms_declspec_modifier] = STATE(821), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1056), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1836), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1156), + [72] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1340), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1046), + [aux_sym_preproc_include_token1] = ACTIONS(845), + [aux_sym_preproc_def_token1] = ACTIONS(845), + [aux_sym_preproc_if_token1] = ACTIONS(845), + [aux_sym_preproc_if_token2] = ACTIONS(845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(845), + [sym_preproc_directive] = ACTIONS(845), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27325,11 +25550,19 @@ 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_SEMI] = ACTIONS(587), + [anon_sym_typedef] = ACTIONS(589), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(845), + [anon_sym___clrcall] = ACTIONS(845), + [anon_sym___stdcall] = ACTIONS(845), + [anon_sym___fastcall] = ACTIONS(845), + [anon_sym___thiscall] = ACTIONS(845), + [anon_sym___vectorcall] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(593), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27351,6 +25584,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(595), + [anon_sym_else] = ACTIONS(845), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(845), + [anon_sym_default] = ACTIONS(845), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -27375,47 +25620,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [87] = { - [sym_declaration] = STATE(599), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(821), - [sym_ms_declspec_modifier] = STATE(821), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1013), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1924), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1156), + [73] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1093), + [sym_identifier] = ACTIONS(1048), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27423,11 +25691,19 @@ 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_SEMI] = ACTIONS(1050), + [anon_sym_typedef] = ACTIONS(27), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [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_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27449,6 +25725,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27473,47 +25761,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [88] = { - [sym_declaration] = STATE(594), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(821), - [sym_ms_declspec_modifier] = STATE(821), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1005), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1929), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1156), + [74] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1042), + [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), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27521,11 +25831,20 @@ 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_SEMI] = ACTIONS(454), + [anon_sym_typedef] = ACTIONS(456), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [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(460), + [anon_sym_RBRACE] = ACTIONS(1093), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27547,6 +25866,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -27571,47 +25902,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [89] = { - [sym_declaration] = STATE(642), - [sym__declaration_modifiers] = STATE(821), - [sym__declaration_specifiers] = STATE(1311), - [sym_attribute_specifier] = STATE(821), - [sym_attribute_declaration] = STATE(821), - [sym_ms_declspec_modifier] = STATE(821), - [sym_storage_class_specifier] = STATE(821), - [sym_type_qualifier] = STATE(821), - [sym__type_specifier] = STATE(938), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(988), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1709), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym__declaration_specifiers_repeat1] = STATE(821), - [aux_sym_sized_type_specifier_repeat1] = STATE(958), - [sym_identifier] = ACTIONS(1156), + [75] = { + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1340), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(68), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(68), + [sym_identifier] = ACTIONS(1046), + [aux_sym_preproc_include_token1] = ACTIONS(843), + [aux_sym_preproc_def_token1] = ACTIONS(843), + [aux_sym_preproc_if_token1] = ACTIONS(843), + [aux_sym_preproc_if_token2] = ACTIONS(843), + [aux_sym_preproc_ifdef_token1] = ACTIONS(843), + [aux_sym_preproc_ifdef_token2] = ACTIONS(843), + [sym_preproc_directive] = ACTIONS(843), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27619,11 +25973,19 @@ 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_SEMI] = ACTIONS(587), + [anon_sym_typedef] = ACTIONS(589), [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(31), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(843), + [anon_sym___clrcall] = ACTIONS(843), + [anon_sym___stdcall] = ACTIONS(843), + [anon_sym___fastcall] = ACTIONS(843), + [anon_sym___thiscall] = ACTIONS(843), + [anon_sym___vectorcall] = ACTIONS(843), + [anon_sym_LBRACE] = ACTIONS(593), [anon_sym_static] = ACTIONS(41), [anon_sym_auto] = ACTIONS(41), [anon_sym_register] = ACTIONS(41), @@ -27645,6 +26007,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(49), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), + [anon_sym_if] = ACTIONS(595), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(843), + [anon_sym_default] = ACTIONS(843), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -27669,1719 +26043,2011 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [90] = { - [sym_else_clause] = STATE(104), - [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_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_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), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [91] = { - [sym__expression] = STATE(766), - [sym__expression_not_binary] = STATE(806), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(806), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_initializer_list] = STATE(812), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = 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_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_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), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = 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), + [76] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(850), + [aux_sym_preproc_def_token1] = ACTIONS(850), + [aux_sym_preproc_if_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token1] = ACTIONS(850), + [aux_sym_preproc_ifdef_token2] = ACTIONS(850), + [sym_preproc_directive] = ACTIONS(850), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(870), + [anon_sym___attribute__] = ACTIONS(873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(876), + [anon_sym___declspec] = ACTIONS(879), + [anon_sym___cdecl] = ACTIONS(850), + [anon_sym___clrcall] = ACTIONS(850), + [anon_sym___stdcall] = ACTIONS(850), + [anon_sym___fastcall] = ACTIONS(850), + [anon_sym___thiscall] = ACTIONS(850), + [anon_sym___vectorcall] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(870), + [anon_sym_auto] = ACTIONS(870), + [anon_sym_register] = ACTIONS(870), + [anon_sym_inline] = ACTIONS(870), + [anon_sym_thread_local] = ACTIONS(870), + [anon_sym_const] = ACTIONS(885), + [anon_sym_constexpr] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym___restrict__] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym__Noreturn] = ACTIONS(885), + [anon_sym_noreturn] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(888), + [anon_sym_unsigned] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [sym_primitive_type] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(1107), + [anon_sym_else] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_case] = ACTIONS(850), + [anon_sym_default] = ACTIONS(850), + [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(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(933), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(942), + [anon_sym___asm__] = ACTIONS(942), + [sym_number_literal] = ACTIONS(945), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_u_DQUOTE] = ACTIONS(951), + [anon_sym_U_DQUOTE] = ACTIONS(951), + [anon_sym_u8_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [anon_sym_NULL] = ACTIONS(957), + [anon_sym_nullptr] = ACTIONS(957), [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), + [77] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1351), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1042), + [aux_sym_preproc_include_token1] = ACTIONS(845), + [aux_sym_preproc_def_token1] = ACTIONS(845), + [aux_sym_preproc_if_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(845), + [sym_preproc_directive] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_typedef] = ACTIONS(456), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(845), + [anon_sym___clrcall] = ACTIONS(845), + [anon_sym___stdcall] = ACTIONS(845), + [anon_sym___fastcall] = ACTIONS(845), + [anon_sym___thiscall] = ACTIONS(845), + [anon_sym___vectorcall] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(460), + [anon_sym_RBRACE] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(845), + [anon_sym_switch] = ACTIONS(466), + [anon_sym_case] = ACTIONS(845), + [anon_sym_default] = ACTIONS(845), + [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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = 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), + [78] = { + [sym_declaration] = STATE(76), + [sym_type_definition] = STATE(76), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(76), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(76), + [ts_builtin_sym_end] = ACTIONS(1134), + [sym_identifier] = ACTIONS(1048), + [aux_sym_preproc_include_token1] = ACTIONS(845), + [aux_sym_preproc_def_token1] = ACTIONS(845), + [aux_sym_preproc_if_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token1] = ACTIONS(845), + [aux_sym_preproc_ifdef_token2] = ACTIONS(845), + [sym_preproc_directive] = ACTIONS(845), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1050), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym___cdecl] = ACTIONS(845), + [anon_sym___clrcall] = ACTIONS(845), + [anon_sym___stdcall] = ACTIONS(845), + [anon_sym___fastcall] = ACTIONS(845), + [anon_sym___thiscall] = ACTIONS(845), + [anon_sym___vectorcall] = ACTIONS(845), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(845), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(845), + [anon_sym_default] = ACTIONS(845), + [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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = 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), + [79] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1136), + [anon_sym_LPAREN2] = ACTIONS(852), + [anon_sym_BANG] = ACTIONS(855), + [anon_sym_TILDE] = ACTIONS(855), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(861), + [anon_sym_AMP] = ACTIONS(861), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_typedef] = ACTIONS(1101), + [anon_sym_extern] = ACTIONS(870), + [anon_sym___attribute__] = ACTIONS(873), + [anon_sym_LBRACK_LBRACK] = ACTIONS(876), + [anon_sym___declspec] = ACTIONS(879), + [anon_sym_LBRACE] = ACTIONS(1104), + [anon_sym_static] = ACTIONS(870), + [anon_sym_auto] = ACTIONS(870), + [anon_sym_register] = ACTIONS(870), + [anon_sym_inline] = ACTIONS(870), + [anon_sym_thread_local] = ACTIONS(870), + [anon_sym_const] = ACTIONS(885), + [anon_sym_constexpr] = ACTIONS(885), + [anon_sym_volatile] = ACTIONS(885), + [anon_sym_restrict] = ACTIONS(885), + [anon_sym___restrict__] = ACTIONS(885), + [anon_sym__Atomic] = ACTIONS(885), + [anon_sym__Noreturn] = ACTIONS(885), + [anon_sym_noreturn] = ACTIONS(885), + [anon_sym_signed] = ACTIONS(888), + [anon_sym_unsigned] = ACTIONS(888), + [anon_sym_long] = ACTIONS(888), + [anon_sym_short] = ACTIONS(888), + [sym_primitive_type] = ACTIONS(891), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_union] = ACTIONS(900), + [anon_sym_if] = ACTIONS(1139), + [anon_sym_else] = ACTIONS(850), + [anon_sym_switch] = ACTIONS(1110), + [anon_sym_while] = ACTIONS(1142), + [anon_sym_do] = ACTIONS(1116), + [anon_sym_for] = ACTIONS(1145), + [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(930), + [anon_sym_PLUS_PLUS] = ACTIONS(930), + [anon_sym_sizeof] = ACTIONS(933), + [anon_sym_offsetof] = ACTIONS(936), + [anon_sym__Generic] = ACTIONS(939), + [anon_sym_asm] = ACTIONS(942), + [anon_sym___asm__] = ACTIONS(942), + [sym_number_literal] = ACTIONS(945), + [anon_sym_L_SQUOTE] = ACTIONS(948), + [anon_sym_u_SQUOTE] = ACTIONS(948), + [anon_sym_U_SQUOTE] = ACTIONS(948), + [anon_sym_u8_SQUOTE] = ACTIONS(948), + [anon_sym_SQUOTE] = ACTIONS(948), + [anon_sym_L_DQUOTE] = ACTIONS(951), + [anon_sym_u_DQUOTE] = ACTIONS(951), + [anon_sym_U_DQUOTE] = ACTIONS(951), + [anon_sym_u8_DQUOTE] = ACTIONS(951), + [anon_sym_DQUOTE] = ACTIONS(951), + [sym_true] = ACTIONS(954), + [sym_false] = ACTIONS(954), + [anon_sym_NULL] = ACTIONS(957), + [anon_sym_nullptr] = ACTIONS(957), [sym_comment] = ACTIONS(3), }, - [97] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = 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), + [80] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(1150), + [anon_sym_else] = ACTIONS(845), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), + }, + [81] = { + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(79), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(79), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(1150), + [anon_sym_else] = ACTIONS(841), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), }, - [98] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = 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), + [82] = { + [sym_declaration] = STATE(80), + [sym_type_definition] = STATE(80), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(80), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(80), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(1150), + [anon_sym_else] = ACTIONS(839), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), }, - [99] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [83] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1348), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(529), + [sym_ms_declspec_modifier] = STATE(819), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(1148), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_typedef] = ACTIONS(27), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(33), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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(1150), + [anon_sym_else] = ACTIONS(843), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), }, - [100] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = 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), + [84] = { + [sym_declaration] = STATE(637), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1034), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1933), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1158), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [101] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = 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), + [85] = { + [sym_declaration] = STATE(645), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1018), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1994), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1162), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [102] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [86] = { + [sym_declaration] = STATE(608), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1041), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1985), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1164), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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), [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_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_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), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = 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), + [87] = { + [sym_declaration] = STATE(624), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1039), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1990), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1166), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [88] = { + [sym_declaration] = STATE(615), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1059), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1799), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1168), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [104] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(1240), - [aux_sym_preproc_elif_token1] = ACTIONS(1240), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1240), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = 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), + [89] = { + [sym_declaration] = STATE(646), + [sym__declaration_modifiers] = STATE(819), + [sym__declaration_specifiers] = STATE(1344), + [sym_attribute_specifier] = STATE(819), + [sym_attribute_declaration] = STATE(819), + [sym_ms_declspec_modifier] = STATE(819), + [sym_storage_class_specifier] = STATE(819), + [sym_type_qualifier] = STATE(819), + [sym__type_specifier] = STATE(945), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1069), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1952), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym__declaration_specifiers_repeat1] = STATE(819), + [aux_sym_sized_type_specifier_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(1156), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1170), + [anon_sym_extern] = ACTIONS(41), + [anon_sym___attribute__] = ACTIONS(31), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1160), + [anon_sym___declspec] = ACTIONS(35), + [anon_sym_static] = ACTIONS(41), + [anon_sym_auto] = ACTIONS(41), + [anon_sym_register] = ACTIONS(41), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_thread_local] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_constexpr] = ACTIONS(43), + [anon_sym_volatile] = ACTIONS(43), + [anon_sym_restrict] = ACTIONS(43), + [anon_sym___restrict__] = ACTIONS(43), + [anon_sym__Atomic] = ACTIONS(43), + [anon_sym__Noreturn] = ACTIONS(43), + [anon_sym_noreturn] = ACTIONS(43), + [anon_sym_signed] = ACTIONS(45), + [anon_sym_unsigned] = ACTIONS(45), + [anon_sym_long] = ACTIONS(45), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [105] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1244), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = 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), + [90] = { + [sym__expression] = STATE(777), + [sym__expression_not_binary] = STATE(797), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(797), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(797), + [sym_call_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(797), + [sym_initializer_list] = STATE(776), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_identifier] = ACTIONS(149), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1172), + [anon_sym_LPAREN2] = ACTIONS(1174), + [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_TILDE] = ACTIONS(1178), + [anon_sym_DASH] = ACTIONS(1176), + [anon_sym_PLUS] = ACTIONS(1176), + [anon_sym_STAR] = ACTIONS(1180), + [anon_sym_SLASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1182), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1182), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___attribute__] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_COLON] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1186), + [anon_sym_PLUS_PLUS] = ACTIONS(1186), + [anon_sym_sizeof] = ACTIONS(1188), + [anon_sym_offsetof] = ACTIONS(81), + [anon_sym__Generic] = ACTIONS(83), + [anon_sym_asm] = ACTIONS(85), + [anon_sym___asm__] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DASH_GT] = ACTIONS(1172), + [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), }, - [106] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1248), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = 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), + [91] = { + [sym_else_clause] = STATE(130), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [aux_sym_preproc_else_token1] = ACTIONS(1190), + [aux_sym_preproc_elif_token1] = ACTIONS(1190), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1194), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [107] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1252), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = 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), }, - [108] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1256), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = 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), }, - [109] = { + [94] = { [sym_identifier] = ACTIONS(1204), [aux_sym_preproc_include_token1] = ACTIONS(1204), [aux_sym_preproc_def_token1] = ACTIONS(1204), @@ -29448,5816 +28114,6022 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [110] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1260), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [111] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1264), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [112] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1268), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = 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), + [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), }, - [113] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1272), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = 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), }, - [114] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1276), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = 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), }, - [115] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1280), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = 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), + [97] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = 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), }, - [116] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1284), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = 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), + [98] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [117] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1288), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(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), + [99] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = 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), }, - [118] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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), + [100] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = 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), }, - [119] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1296), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = 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), + [101] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = 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), }, - [120] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1300), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = 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), + [102] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = 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), }, - [121] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = 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), + [103] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [122] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = 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), + [104] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(1240), + [aux_sym_preproc_elif_token1] = ACTIONS(1240), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1240), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = 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), }, - [123] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = 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), + [105] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1244), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [124] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1316), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = 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), + [106] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1248), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [125] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = 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), + [107] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1252), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = 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), }, - [126] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = 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), + [108] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1256), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [109] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1260), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [127] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = 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), + [110] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1264), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [128] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1332), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = 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), + [111] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1268), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [129] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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), + [112] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1272), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = 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), }, - [130] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = 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), + [113] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1276), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = 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), }, - [131] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1344), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = 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), + [114] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1280), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = 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), }, - [132] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1348), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = 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_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), + [115] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1284), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = 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), }, - [133] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = 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_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), + [116] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1288), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), }, - [134] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = 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), + [117] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [135] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = 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), + [118] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1296), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = 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), }, - [136] = { - [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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1364), - [aux_sym_preproc_elifdef_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_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_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), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = 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), + [119] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1300), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = 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), }, - [137] = { - [sym_else_clause] = STATE(182), - [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_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_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), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = 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(1368), - [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), + [120] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1304), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = 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), }, - [138] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [121] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = 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), }, - [139] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [122] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = 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), }, - [140] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [123] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1316), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = 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), }, - [141] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [124] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1320), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = 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), }, - [142] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [125] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1324), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = 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), }, - [143] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [126] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1328), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [144] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [127] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1332), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = 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), [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_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_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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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), + [128] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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), + [129] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1336), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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), + [130] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1340), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = 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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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), + [131] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1344), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = 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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = 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), + [132] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1348), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = 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_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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = 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), + [133] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1352), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = 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_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_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_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_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), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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), + [134] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1356), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = 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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = 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), + [135] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1360), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = 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), }, - [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_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_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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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), + [136] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1364), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = 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), }, - [154] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = 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), + [137] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = 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), }, - [155] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = 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), + [138] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1372), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = 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), }, - [156] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = 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), + [139] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1376), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = 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), }, - [157] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = 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), + [140] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1380), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = 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), }, - [158] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = 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), + [141] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1384), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = 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), + }, + [142] = { + [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), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1388), + [aux_sym_preproc_elifdef_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_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_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), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = 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), + }, + [143] = { + [sym_else_clause] = STATE(154), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [aux_sym_preproc_else_token1] = ACTIONS(1190), + [aux_sym_preproc_elif_token1] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1392), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [144] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [159] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = 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), }, - [160] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = 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), }, - [161] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = 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), }, - [162] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = 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), }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(1270), - [sym_identifier] = ACTIONS(1268), - [aux_sym_preproc_include_token1] = ACTIONS(1268), - [aux_sym_preproc_def_token1] = ACTIONS(1268), - [anon_sym_COMMA] = ACTIONS(1270), - [anon_sym_RPAREN] = ACTIONS(1270), - [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_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_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), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = 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), }, - [164] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = 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), }, - [165] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = 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), }, - [166] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = 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), }, - [167] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = 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), }, - [168] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = 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), + [154] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = 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), }, - [169] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = 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), + [155] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = 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), + }, + [156] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [170] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = 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), + [157] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = 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), }, - [171] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = 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), + [158] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = 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), }, - [172] = { - [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), - [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_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_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), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = 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), + [159] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = 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), }, - [173] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = 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), + [160] = { + [ts_builtin_sym_end] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [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_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_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), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = 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), }, - [174] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [161] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [175] = { + [162] = { [sym_identifier] = ACTIONS(1224), [aux_sym_preproc_include_token1] = ACTIONS(1224), [aux_sym_preproc_def_token1] = ACTIONS(1224), @@ -35345,7 +34217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1224), [sym_comment] = ACTIONS(3), }, - [176] = { + [163] = { [sym_identifier] = ACTIONS(1336), [aux_sym_preproc_include_token1] = ACTIONS(1336), [aux_sym_preproc_def_token1] = ACTIONS(1336), @@ -35359,345 +34231,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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), - }, - [177] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [178] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = 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), }, - [179] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = 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), + [165] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = 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), }, - [180] = { + [166] = { + [ts_builtin_sym_end] = ACTIONS(1246), + [sym_identifier] = ACTIONS(1244), + [aux_sym_preproc_include_token1] = ACTIONS(1244), + [aux_sym_preproc_def_token1] = ACTIONS(1244), + [anon_sym_COMMA] = ACTIONS(1246), + [anon_sym_RPAREN] = ACTIONS(1246), + [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_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_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), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [167] = { [sym_identifier] = ACTIONS(1232), [aux_sym_preproc_include_token1] = ACTIONS(1232), [aux_sym_preproc_def_token1] = ACTIONS(1232), @@ -35785,95 +34657,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1232), [sym_comment] = ACTIONS(3), }, - [181] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = 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), + [168] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = 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), + }, + [169] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = 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), }, - [182] = { + [170] = { [sym_identifier] = ACTIONS(1240), [aux_sym_preproc_include_token1] = ACTIONS(1240), [aux_sym_preproc_def_token1] = ACTIONS(1240), @@ -35961,183 +34921,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1240), [sym_comment] = ACTIONS(3), }, - [183] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), - }, - [184] = { - [ts_builtin_sym_end] = ACTIONS(1210), - [sym_identifier] = ACTIONS(1208), - [aux_sym_preproc_include_token1] = ACTIONS(1208), - [aux_sym_preproc_def_token1] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1210), - [anon_sym_RPAREN] = ACTIONS(1210), - [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_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_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), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = 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), + [171] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = 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), }, - [185] = { + [172] = { [sym_identifier] = ACTIONS(1204), [aux_sym_preproc_include_token1] = ACTIONS(1204), [aux_sym_preproc_def_token1] = ACTIONS(1204), @@ -36225,447 +35097,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1204), [sym_comment] = ACTIONS(3), }, - [186] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [187] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), - }, - [188] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = 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), - }, - [189] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = 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), - }, - [190] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = 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), + [173] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = 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), }, - [191] = { + [174] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = 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), + }, + [175] = { [sym_identifier] = ACTIONS(1212), [aux_sym_preproc_include_token1] = ACTIONS(1212), [aux_sym_preproc_def_token1] = ACTIONS(1212), @@ -36753,7 +35361,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1212), [sym_comment] = ACTIONS(3), }, - [192] = { + [176] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = 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), + }, + [177] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [178] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [179] = { [sym_identifier] = ACTIONS(1220), [aux_sym_preproc_include_token1] = ACTIONS(1220), [aux_sym_preproc_def_token1] = ACTIONS(1220), @@ -36841,95 +35713,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1220), [sym_comment] = ACTIONS(3), }, - [193] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = 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), + [180] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = 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), + }, + [181] = { + [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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [182] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = 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), }, - [194] = { + [183] = { [sym_identifier] = ACTIONS(1252), [aux_sym_preproc_include_token1] = ACTIONS(1252), [aux_sym_preproc_def_token1] = ACTIONS(1252), @@ -37017,1487 +36065,1237 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1252), [sym_comment] = ACTIONS(3), }, - [195] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = 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), - }, - [196] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [aux_sym_preproc_else_token1] = ACTIONS(1390), - [aux_sym_preproc_elif_token1] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, - [197] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [aux_sym_preproc_else_token1] = ACTIONS(1378), - [aux_sym_preproc_elif_token1] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [198] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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), - }, - [199] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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), + [184] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [200] = { - [sym_else_clause] = STATE(414), - [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_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_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), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = 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(1434), - [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), + [185] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [201] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = 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), + [186] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [202] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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), + [187] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = 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), }, - [203] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [aux_sym_preproc_else_token1] = ACTIONS(1386), - [aux_sym_preproc_elif_token1] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [188] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [204] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [aux_sym_preproc_else_token1] = ACTIONS(1394), - [aux_sym_preproc_elif_token1] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [189] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = 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), }, - [205] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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), + [190] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = 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), }, - [206] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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), + [191] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [207] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = 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_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), + [192] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = 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), }, - [208] = { - [sym_else_clause] = STATE(292), - [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_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_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), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = 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(1436), - [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), + [193] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = 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), }, - [209] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), + }, + [195] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [210] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = 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_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), + [196] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [aux_sym_preproc_else_token1] = ACTIONS(1394), + [aux_sym_preproc_elif_token1] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [211] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = 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), + [197] = { + [sym_else_clause] = STATE(375), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_RBRACE] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, - [212] = { + [198] = { [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), [aux_sym_preproc_def_token1] = ACTIONS(1364), @@ -38584,181 +37382,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [aux_sym_preproc_else_token1] = ACTIONS(1374), - [aux_sym_preproc_elif_token1] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [199] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = 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), }, - [214] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [aux_sym_preproc_else_token1] = ACTIONS(1382), - [aux_sym_preproc_elif_token1] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [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_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_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), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = 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), }, - [215] = { + [201] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = 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), + }, + [202] = { [sym_identifier] = ACTIONS(1360), [aux_sym_preproc_include_token1] = ACTIONS(1360), [aux_sym_preproc_def_token1] = ACTIONS(1360), @@ -38842,294 +37727,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(1360), [sym_false] = ACTIONS(1360), [anon_sym_NULL] = ACTIONS(1360), - [anon_sym_nullptr] = ACTIONS(1360), - [sym_comment] = ACTIONS(3), - }, - [216] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [aux_sym_preproc_else_token1] = ACTIONS(1370), - [aux_sym_preproc_elif_token1] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [217] = { - [sym_else_clause] = STATE(434), - [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_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_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), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = 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(1438), - [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_comment] = ACTIONS(3), - }, - [218] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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), + [anon_sym_nullptr] = ACTIONS(1360), [sym_comment] = ACTIONS(3), }, - [219] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(806), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(806), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(806), - [sym_call_expression] = STATE(806), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(806), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(806), - [sym_initializer_list] = STATE(812), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), + [203] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = 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), + }, + [204] = { + [sym_else_clause] = STATE(245), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token2] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1436), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [205] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = 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), + }, + [206] = { + [sym_else_clause] = STATE(416), + [ts_builtin_sym_end] = ACTIONS(1192), + [sym_identifier] = ACTIONS(1190), + [aux_sym_preproc_include_token1] = ACTIONS(1190), + [aux_sym_preproc_def_token1] = ACTIONS(1190), + [aux_sym_preproc_if_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1190), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1190), + [sym_preproc_directive] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym___cdecl] = ACTIONS(1190), + [anon_sym___clrcall] = ACTIONS(1190), + [anon_sym___stdcall] = ACTIONS(1190), + [anon_sym___fastcall] = ACTIONS(1190), + [anon_sym___thiscall] = ACTIONS(1190), + [anon_sym___vectorcall] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_case] = ACTIONS(1190), + [anon_sym_default] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), + [sym_comment] = ACTIONS(3), + }, + [207] = { + [sym__expression] = STATE(841), + [sym__expression_not_binary] = STATE(797), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(797), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(797), + [sym_call_expression] = STATE(797), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(797), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(797), + [sym_initializer_list] = STATE(776), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), [sym_identifier] = ACTIONS(149), [anon_sym_LPAREN2] = ACTIONS(1440), [anon_sym_BANG] = ACTIONS(1442), @@ -39137,36 +38109,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(1442), [anon_sym_PLUS] = ACTIONS(1442), [anon_sym_STAR] = ACTIONS(1446), - [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_SLASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1182), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1182), [anon_sym_AMP] = ACTIONS(1446), - [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_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1182), + [anon_sym_GT_GT] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(1172), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_STAR_EQ] = ACTIONS(1172), + [anon_sym_SLASH_EQ] = ACTIONS(1172), + [anon_sym_PERCENT_EQ] = ACTIONS(1172), + [anon_sym_PLUS_EQ] = ACTIONS(1172), + [anon_sym_DASH_EQ] = ACTIONS(1172), + [anon_sym_LT_LT_EQ] = ACTIONS(1172), + [anon_sym_GT_GT_EQ] = ACTIONS(1172), + [anon_sym_AMP_EQ] = ACTIONS(1172), + [anon_sym_CARET_EQ] = ACTIONS(1172), + [anon_sym_PIPE_EQ] = ACTIONS(1172), [anon_sym_DASH_DASH] = ACTIONS(1448), [anon_sym_PLUS_PLUS] = ACTIONS(1448), [anon_sym_sizeof] = ACTIONS(1450), @@ -39174,8 +38146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DASH_GT] = ACTIONS(1172), [sym_number_literal] = ACTIONS(147), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), @@ -39193,7 +38165,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [220] = { + [208] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = 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), + }, + [209] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = 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), + }, + [210] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = 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_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_comment] = ACTIONS(3), + }, + [211] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = 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), + }, + [212] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = 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), + }, + [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_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_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), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = 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), + }, + [214] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = 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), + }, + [215] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -39280,907 +38861,482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [221] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = 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), - }, - [222] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(126), - [sym_attributed_statement] = STATE(126), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(126), - [sym_case_statement] = STATE(126), - [sym_while_statement] = STATE(126), - [sym_do_statement] = STATE(126), - [sym_for_statement] = STATE(126), - [sym_return_statement] = STATE(126), - [sym_break_statement] = STATE(126), - [sym_continue_statement] = STATE(126), - [sym_goto_statement] = STATE(126), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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), - }, - [223] = { - [sym_attribute_declaration] = STATE(258), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), - }, - [224] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(369), - [sym_attributed_statement] = STATE(369), - [sym_labeled_statement] = STATE(369), - [sym_expression_statement] = STATE(369), - [sym_if_statement] = STATE(369), - [sym_switch_statement] = STATE(369), - [sym_case_statement] = STATE(369), - [sym_while_statement] = STATE(369), - [sym_do_statement] = STATE(369), - [sym_for_statement] = STATE(369), - [sym_return_statement] = STATE(369), - [sym_break_statement] = STATE(369), - [sym_continue_statement] = STATE(369), - [sym_goto_statement] = STATE(369), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), - }, - [225] = { - [sym_attribute_declaration] = STATE(258), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), - }, - [226] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(403), - [sym_attributed_statement] = STATE(403), - [sym_labeled_statement] = STATE(403), - [sym_expression_statement] = STATE(403), - [sym_if_statement] = STATE(403), - [sym_switch_statement] = STATE(403), - [sym_case_statement] = STATE(403), - [sym_while_statement] = STATE(403), - [sym_do_statement] = STATE(403), - [sym_for_statement] = STATE(403), - [sym_return_statement] = STATE(403), - [sym_break_statement] = STATE(403), - [sym_continue_statement] = STATE(403), - [sym_goto_statement] = STATE(403), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [216] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = 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), }, - [227] = { - [sym_attribute_declaration] = STATE(258), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [217] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = 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), }, - [228] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(407), - [sym_attributed_statement] = STATE(407), - [sym_labeled_statement] = STATE(407), - [sym_expression_statement] = STATE(407), - [sym_if_statement] = STATE(407), - [sym_switch_statement] = STATE(407), - [sym_case_statement] = STATE(407), - [sym_while_statement] = STATE(407), - [sym_do_statement] = STATE(407), - [sym_for_statement] = STATE(407), - [sym_return_statement] = STATE(407), - [sym_break_statement] = STATE(407), - [sym_continue_statement] = STATE(407), - [sym_goto_statement] = STATE(407), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [218] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = 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_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), }, - [229] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(385), - [sym_attributed_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_expression_statement] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_case_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_goto_statement] = STATE(385), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [219] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = 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), }, - [230] = { - [sym_attribute_declaration] = STATE(258), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [220] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = 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), }, - [231] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(387), - [sym_attributed_statement] = STATE(387), - [sym_labeled_statement] = STATE(387), - [sym_expression_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_switch_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_do_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_return_statement] = STATE(387), - [sym_break_statement] = STATE(387), - [sym_continue_statement] = STATE(387), - [sym_goto_statement] = STATE(387), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [221] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -40188,20 +39344,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [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), @@ -40226,46 +39382,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(390), - [sym_attributed_statement] = STATE(390), - [sym_labeled_statement] = STATE(390), - [sym_expression_statement] = STATE(390), - [sym_if_statement] = STATE(390), - [sym_switch_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), + [222] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(256), + [sym_attributed_statement] = STATE(256), + [sym_labeled_statement] = STATE(256), + [sym_expression_statement] = STATE(256), + [sym_if_statement] = STATE(256), + [sym_switch_statement] = STATE(256), + [sym_case_statement] = STATE(256), + [sym_while_statement] = STATE(256), + [sym_do_statement] = STATE(256), + [sym_for_statement] = STATE(256), + [sym_return_statement] = STATE(256), + [sym_break_statement] = STATE(256), + [sym_continue_statement] = STATE(256), + [sym_goto_statement] = STATE(256), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -40274,20 +39430,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -40312,11 +39468,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [233] = { + [223] = { [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), @@ -40340,7 +39497,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1272), [anon_sym___vectorcall] = ACTIONS(1272), [anon_sym_LBRACE] = ACTIONS(1274), - [anon_sym_RBRACE] = ACTIONS(1274), [anon_sym_static] = ACTIONS(1272), [anon_sym_auto] = ACTIONS(1272), [anon_sym_register] = ACTIONS(1272), @@ -40398,391 +39554,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1272), [sym_comment] = ACTIONS(3), }, - [234] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(391), - [sym_attributed_statement] = STATE(391), - [sym_labeled_statement] = STATE(391), - [sym_expression_statement] = STATE(391), - [sym_if_statement] = STATE(391), - [sym_switch_statement] = STATE(391), - [sym_case_statement] = STATE(391), - [sym_while_statement] = STATE(391), - [sym_do_statement] = STATE(391), - [sym_for_statement] = STATE(391), - [sym_return_statement] = STATE(391), - [sym_break_statement] = STATE(391), - [sym_continue_statement] = STATE(391), - [sym_goto_statement] = STATE(391), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [224] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [225] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = 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), + }, + [226] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [235] = { - [sym_attribute_declaration] = STATE(347), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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), + [227] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [236] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(177), - [sym_attributed_statement] = STATE(177), - [sym_labeled_statement] = STATE(177), - [sym_expression_statement] = STATE(177), - [sym_if_statement] = STATE(177), - [sym_switch_statement] = STATE(177), - [sym_case_statement] = STATE(177), - [sym_while_statement] = STATE(177), - [sym_do_statement] = STATE(177), - [sym_for_statement] = STATE(177), - [sym_return_statement] = STATE(177), - [sym_break_statement] = STATE(177), - [sym_continue_statement] = STATE(177), - [sym_goto_statement] = STATE(177), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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), + [228] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [229] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = 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), }, - [237] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(178), - [sym_attributed_statement] = STATE(178), - [sym_labeled_statement] = STATE(178), - [sym_expression_statement] = STATE(178), - [sym_if_statement] = STATE(178), - [sym_switch_statement] = STATE(178), - [sym_case_statement] = STATE(178), - [sym_while_statement] = STATE(178), - [sym_do_statement] = STATE(178), - [sym_for_statement] = STATE(178), - [sym_return_statement] = STATE(178), - [sym_break_statement] = STATE(178), - [sym_continue_statement] = STATE(178), - [sym_goto_statement] = STATE(178), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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), + [230] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [238] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(428), - [sym_attributed_statement] = STATE(428), - [sym_labeled_statement] = STATE(428), - [sym_expression_statement] = STATE(428), - [sym_if_statement] = STATE(428), - [sym_switch_statement] = STATE(428), - [sym_case_statement] = STATE(428), - [sym_while_statement] = STATE(428), - [sym_do_statement] = STATE(428), - [sym_for_statement] = STATE(428), - [sym_return_statement] = STATE(428), - [sym_break_statement] = STATE(428), - [sym_continue_statement] = STATE(428), - [sym_goto_statement] = STATE(428), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [231] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1964), + [sym_attributed_statement] = STATE(1964), + [sym_labeled_statement] = STATE(1964), + [sym_expression_statement] = STATE(1964), + [sym_if_statement] = STATE(1964), + [sym_switch_statement] = STATE(1964), + [sym_case_statement] = STATE(1964), + [sym_while_statement] = STATE(1964), + [sym_do_statement] = STATE(1964), + [sym_for_statement] = STATE(1964), + [sym_return_statement] = STATE(1964), + [sym_break_statement] = STATE(1964), + [sym_continue_statement] = STATE(1964), + [sym_goto_statement] = STATE(1964), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -40795,8 +40209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), [anon_sym_for] = ACTIONS(1154), @@ -40828,269 +40242,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [239] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = 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), + [232] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = 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), + }, + [233] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = 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), + }, + [234] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [235] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = 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), }, - [240] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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), + [236] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = 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), }, - [241] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = 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), + [237] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = 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), }, - [242] = { + [238] = { [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), @@ -41114,362 +40787,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1316), [anon_sym___vectorcall] = ACTIONS(1316), [anon_sym_LBRACE] = ACTIONS(1318), - [anon_sym_RBRACE] = ACTIONS(1318), - [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_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), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = 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), - }, - [243] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = 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), + [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_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), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = 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), }, - [244] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = 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), + [239] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [245] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(241), - [sym_labeled_statement] = STATE(241), - [sym_expression_statement] = STATE(241), - [sym_if_statement] = STATE(241), - [sym_switch_statement] = STATE(241), - [sym_case_statement] = STATE(241), - [sym_while_statement] = STATE(241), - [sym_do_statement] = STATE(241), - [sym_for_statement] = STATE(241), - [sym_return_statement] = STATE(241), - [sym_break_statement] = STATE(241), - [sym_continue_statement] = STATE(241), - [sym_goto_statement] = STATE(241), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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), + [240] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1260), + [anon_sym_unsigned] = ACTIONS(1260), + [anon_sym_long] = ACTIONS(1260), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [246] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(242), - [sym_attributed_statement] = STATE(242), - [sym_labeled_statement] = STATE(242), - [sym_expression_statement] = STATE(242), - [sym_if_statement] = STATE(242), - [sym_switch_statement] = STATE(242), - [sym_case_statement] = STATE(242), - [sym_while_statement] = STATE(242), - [sym_do_statement] = STATE(242), - [sym_for_statement] = STATE(242), - [sym_return_statement] = STATE(242), - [sym_break_statement] = STATE(242), - [sym_continue_statement] = STATE(242), - [sym_goto_statement] = STATE(242), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), + [241] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -41478,20 +41064,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -41516,132 +41102,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [247] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = 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), - [sym_comment] = ACTIONS(3), - }, - [248] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(243), - [sym_attributed_statement] = STATE(243), - [sym_labeled_statement] = STATE(243), - [sym_expression_statement] = STATE(243), - [sym_if_statement] = STATE(243), - [sym_switch_statement] = STATE(243), - [sym_case_statement] = STATE(243), - [sym_while_statement] = STATE(243), - [sym_do_statement] = STATE(243), - [sym_for_statement] = STATE(243), - [sym_return_statement] = STATE(243), - [sym_break_statement] = STATE(243), - [sym_continue_statement] = STATE(243), - [sym_goto_statement] = STATE(243), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), + [242] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -41650,20 +41150,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -41688,97 +41188,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [249] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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), + [243] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [244] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [250] = { + [245] = { [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), @@ -41802,7 +41389,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_static] = ACTIONS(1340), [anon_sym_auto] = ACTIONS(1340), [anon_sym_register] = ACTIONS(1340), @@ -41860,46 +41446,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1340), [sym_comment] = ACTIONS(3), }, - [251] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), + [246] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -41908,20 +41494,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -41946,11 +41532,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [252] = { + [247] = { [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), @@ -41974,7 +41561,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1344), [anon_sym___vectorcall] = ACTIONS(1344), [anon_sym_LBRACE] = ACTIONS(1346), - [anon_sym_RBRACE] = ACTIONS(1346), [anon_sym_static] = ACTIONS(1344), [anon_sym_auto] = ACTIONS(1344), [anon_sym_register] = ACTIONS(1344), @@ -42032,219 +41618,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1344), [sym_comment] = ACTIONS(3), }, - [253] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = 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), - }, - [254] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = 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), + [248] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(269), + [sym_attributed_statement] = STATE(269), + [sym_labeled_statement] = STATE(269), + [sym_expression_statement] = STATE(269), + [sym_if_statement] = STATE(269), + [sym_switch_statement] = STATE(269), + [sym_case_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_do_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_return_statement] = STATE(269), + [sym_break_statement] = STATE(269), + [sym_continue_statement] = STATE(269), + [sym_goto_statement] = STATE(269), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [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(1050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [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), }, - [255] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(179), - [sym_attributed_statement] = STATE(179), - [sym_labeled_statement] = STATE(179), - [sym_expression_statement] = STATE(179), - [sym_if_statement] = STATE(179), - [sym_switch_statement] = STATE(179), - [sym_case_statement] = STATE(179), - [sym_while_statement] = STATE(179), - [sym_do_statement] = STATE(179), - [sym_for_statement] = STATE(179), - [sym_return_statement] = STATE(179), - [sym_break_statement] = STATE(179), - [sym_continue_statement] = STATE(179), - [sym_goto_statement] = STATE(179), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [249] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -42252,20 +41752,20 @@ 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_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -42290,735 +41790,907 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [256] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = 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), + [250] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = 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), }, - [257] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = 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), + [251] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [252] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = 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), + }, + [253] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = 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), }, - [258] = { - [sym_attribute_declaration] = STATE(288), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [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), + [254] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = 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), }, - [259] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = 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), + [255] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = 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), }, - [260] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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), + [256] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = 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), - }, - [261] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(249), - [sym_attributed_statement] = STATE(249), - [sym_labeled_statement] = STATE(249), - [sym_expression_statement] = STATE(249), - [sym_if_statement] = STATE(249), - [sym_switch_statement] = STATE(249), - [sym_case_statement] = STATE(249), - [sym_while_statement] = STATE(249), - [sym_do_statement] = STATE(249), - [sym_for_statement] = STATE(249), - [sym_return_statement] = STATE(249), - [sym_break_statement] = STATE(249), - [sym_continue_statement] = STATE(249), - [sym_goto_statement] = STATE(249), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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), + }, + [257] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = 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), }, - [262] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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), + [258] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = 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), }, - [263] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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), + [259] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = 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), }, - [264] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(1464), + [260] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -43026,20 +42698,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -43064,218 +42736,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [265] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [266] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = 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), + [261] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [267] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), + [262] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [263] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -43284,20 +42956,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -43322,183 +42994,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [268] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), - }, - [269] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = 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), + [264] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = 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), }, - [270] = { + [265] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = 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), + }, + [266] = { [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), @@ -43522,7 +43195,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1280), [anon_sym___vectorcall] = ACTIONS(1280), [anon_sym_LBRACE] = ACTIONS(1282), - [anon_sym_RBRACE] = ACTIONS(1282), [anon_sym_static] = ACTIONS(1280), [anon_sym_auto] = ACTIONS(1280), [anon_sym_register] = ACTIONS(1280), @@ -43580,7 +43252,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [271] = { + [267] = { + [ts_builtin_sym_end] = ACTIONS(1278), [sym_identifier] = ACTIONS(1276), [aux_sym_preproc_include_token1] = ACTIONS(1276), [aux_sym_preproc_def_token1] = ACTIONS(1276), @@ -43608,7 +43281,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1276), [anon_sym___vectorcall] = ACTIONS(1276), [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_RBRACE] = ACTIONS(1278), [anon_sym_static] = ACTIONS(1276), [anon_sym_auto] = ACTIONS(1276), [anon_sym_register] = ACTIONS(1276), @@ -43666,12 +43338,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1276), [sym_comment] = ACTIONS(3), }, - [272] = { + [268] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = 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), + }, + [269] = { + [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_if_token2] = ACTIONS(1280), [aux_sym_preproc_ifdef_token1] = ACTIONS(1280), [aux_sym_preproc_ifdef_token2] = ACTIONS(1280), [sym_preproc_directive] = ACTIONS(1280), @@ -43752,46 +43510,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1280), [sym_comment] = ACTIONS(3), }, - [273] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_switch_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_do_statement] = STATE(263), - [sym_for_statement] = STATE(263), - [sym_return_statement] = STATE(263), - [sym_break_statement] = STATE(263), - [sym_continue_statement] = STATE(263), - [sym_goto_statement] = STATE(263), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), + [270] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -43800,20 +43644,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -43838,614 +43682,786 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [272] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = 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), + }, + [273] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = 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), + }, [274] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(268), - [sym_attributed_statement] = STATE(268), - [sym_labeled_statement] = STATE(268), - [sym_expression_statement] = STATE(268), - [sym_if_statement] = STATE(268), - [sym_switch_statement] = STATE(268), - [sym_case_statement] = STATE(268), - [sym_while_statement] = STATE(268), - [sym_do_statement] = STATE(268), - [sym_for_statement] = STATE(268), - [sym_return_statement] = STATE(268), - [sym_break_statement] = STATE(268), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(268), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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_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_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), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = 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), }, [275] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = 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_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_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_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_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), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), }, [276] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = 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), - }, - [277] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = 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(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_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_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), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = 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), }, - [278] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = 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), + [277] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = 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), }, - [279] = { - [ts_builtin_sym_end] = ACTIONS(1246), - [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_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_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), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = 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), + [278] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = 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), }, - [280] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = 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), + [279] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [280] = { + [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), + [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_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), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = 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), }, [281] = { + [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_if_token2] = ACTIONS(1284), [aux_sym_preproc_ifdef_token1] = ACTIONS(1284), [aux_sym_preproc_ifdef_token2] = ACTIONS(1284), [sym_preproc_directive] = ACTIONS(1284), @@ -44485,483 +44501,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_signed] = ACTIONS(1284), [anon_sym_unsigned] = ACTIONS(1284), [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = 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), - }, - [282] = { - [sym_attribute_declaration] = STATE(347), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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), - }, - [283] = { - [sym_attribute_declaration] = STATE(283), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(283), - [sym_identifier] = ACTIONS(1466), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1499), - [anon_sym_while] = ACTIONS(1502), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1508), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_goto] = ACTIONS(1520), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1532), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym___asm__] = ACTIONS(1535), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_L_SQUOTE] = ACTIONS(1541), - [anon_sym_u_SQUOTE] = ACTIONS(1541), - [anon_sym_U_SQUOTE] = ACTIONS(1541), - [anon_sym_u8_SQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [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(1547), - [sym_false] = ACTIONS(1547), - [anon_sym_NULL] = ACTIONS(1550), - [anon_sym_nullptr] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), - }, - [285] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), - }, - [286] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), + [anon_sym_short] = 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), }, - [287] = { - [ts_builtin_sym_end] = ACTIONS(1302), + [282] = { [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), @@ -45042,133 +44628,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1300), [sym_comment] = ACTIONS(3), }, - [288] = { - [sym_attribute_declaration] = STATE(288), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(288), - [sym_identifier] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1487), - [anon_sym_if] = ACTIONS(1559), - [anon_sym_switch] = ACTIONS(1493), - [anon_sym_case] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1568), - [anon_sym_do] = ACTIONS(1505), - [anon_sym_for] = ACTIONS(1571), - [anon_sym_return] = ACTIONS(1511), - [anon_sym_break] = ACTIONS(1514), - [anon_sym_continue] = ACTIONS(1517), - [anon_sym_goto] = ACTIONS(1520), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1532), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym___asm__] = ACTIONS(1535), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_L_SQUOTE] = ACTIONS(1541), - [anon_sym_u_SQUOTE] = ACTIONS(1541), - [anon_sym_U_SQUOTE] = ACTIONS(1541), - [anon_sym_u8_SQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [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(1547), - [sym_false] = ACTIONS(1547), - [anon_sym_NULL] = ACTIONS(1550), - [anon_sym_nullptr] = ACTIONS(1550), + [283] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = 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), }, - [289] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(200), - [sym_attributed_statement] = STATE(200), - [sym_labeled_statement] = STATE(200), - [sym_expression_statement] = STATE(200), - [sym_if_statement] = STATE(200), - [sym_switch_statement] = STATE(200), - [sym_case_statement] = STATE(200), - [sym_while_statement] = STATE(200), - [sym_do_statement] = STATE(200), - [sym_for_statement] = STATE(200), - [sym_return_statement] = STATE(200), - [sym_break_statement] = STATE(200), - [sym_continue_statement] = STATE(200), - [sym_goto_statement] = STATE(200), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [284] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(295), + [sym_attributed_statement] = STATE(295), + [sym_labeled_statement] = STATE(295), + [sym_expression_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_switch_statement] = STATE(295), + [sym_case_statement] = STATE(295), + [sym_while_statement] = STATE(295), + [sym_do_statement] = STATE(295), + [sym_for_statement] = STATE(295), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(295), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(295), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45176,7 +44762,7 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_if] = ACTIONS(55), @@ -45214,133 +44800,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [290] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), - }, - [291] = { - [sym_attribute_declaration] = STATE(351), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [285] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45348,7 +44848,7 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), [anon_sym_if] = ACTIONS(55), @@ -45373,318 +44873,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), [anon_sym_U_SQUOTE] = ACTIONS(89), - [anon_sym_u8_SQUOTE] = ACTIONS(89), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_L_DQUOTE] = ACTIONS(91), - [anon_sym_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), - }, - [292] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = 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), - }, - [293] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(276), - [sym_attributed_statement] = STATE(276), - [sym_labeled_statement] = STATE(276), - [sym_expression_statement] = STATE(276), - [sym_if_statement] = STATE(276), - [sym_switch_statement] = STATE(276), - [sym_case_statement] = STATE(276), - [sym_while_statement] = STATE(276), - [sym_do_statement] = STATE(276), - [sym_for_statement] = STATE(276), - [sym_return_statement] = STATE(276), - [sym_break_statement] = STATE(276), - [sym_continue_statement] = STATE(276), - [sym_goto_statement] = STATE(276), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [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(454), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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), - }, - [294] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = 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), - }, - [295] = { - [sym_attribute_declaration] = STATE(258), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(89), + [anon_sym_SQUOTE] = ACTIONS(89), + [anon_sym_L_DQUOTE] = ACTIONS(91), + [anon_sym_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), + }, + [286] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -45692,16 +44934,16 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(55), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -45730,98 +44972,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [296] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [287] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), }, - [297] = { + [288] = { + [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_if_token2] = ACTIONS(1292), [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), [sym_preproc_directive] = ACTIONS(1292), @@ -45902,305 +45144,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [298] = { - [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), - [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_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), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = 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), - }, - [299] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = 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), - }, - [300] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = 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), + [289] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [301] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(259), - [sym_attributed_statement] = STATE(259), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_switch_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_do_statement] = STATE(259), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(259), - [sym_break_statement] = STATE(259), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(259), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [290] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(240), + [sym_attributed_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -46208,16 +45278,16 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), + [anon_sym_if] = ACTIONS(55), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), + [anon_sym_case] = ACTIONS(59), + [anon_sym_default] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), + [anon_sym_for] = ACTIONS(67), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -46246,1251 +45316,1165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [302] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = 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), - }, - [303] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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), - }, - [304] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = 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), + [291] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [305] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = 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), + [292] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = 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), }, - [306] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = 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), + [293] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [307] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = 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), + [294] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = 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), }, - [308] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1200), - [anon_sym_unsigned] = ACTIONS(1200), - [anon_sym_long] = ACTIONS(1200), - [anon_sym_short] = 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), + [295] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = 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), }, - [309] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = 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), + [296] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [310] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [297] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [311] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [298] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [312] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = 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), + [299] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = 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), }, - [313] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = 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), + [300] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(305), + [sym_attributed_statement] = STATE(305), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(305), + [sym_case_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_do_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(305), + [sym_continue_statement] = STATE(305), + [sym_goto_statement] = STATE(305), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [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(1050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [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), }, - [314] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = 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), + [301] = { + [sym_attribute_declaration] = STATE(322), + [sym_compound_statement] = STATE(321), + [sym_attributed_statement] = STATE(321), + [sym_labeled_statement] = STATE(321), + [sym_expression_statement] = STATE(321), + [sym_if_statement] = STATE(321), + [sym_switch_statement] = STATE(321), + [sym_case_statement] = STATE(321), + [sym_while_statement] = STATE(321), + [sym_do_statement] = STATE(321), + [sym_for_statement] = STATE(321), + [sym_return_statement] = STATE(321), + [sym_break_statement] = STATE(321), + [sym_continue_statement] = STATE(321), + [sym_goto_statement] = STATE(321), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), + }, + [302] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(91), + [sym_attributed_statement] = STATE(91), + [sym_labeled_statement] = STATE(91), + [sym_expression_statement] = STATE(91), + [sym_if_statement] = STATE(91), + [sym_switch_statement] = STATE(91), + [sym_case_statement] = STATE(91), + [sym_while_statement] = STATE(91), + [sym_do_statement] = STATE(91), + [sym_for_statement] = STATE(91), + [sym_return_statement] = STATE(91), + [sym_break_statement] = STATE(91), + [sym_continue_statement] = STATE(91), + [sym_goto_statement] = STATE(91), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1454), + [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), }, - [315] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1260), - [anon_sym_unsigned] = ACTIONS(1260), - [anon_sym_long] = ACTIONS(1260), - [anon_sym_short] = 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), + [303] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(102), + [sym_attributed_statement] = STATE(102), + [sym_labeled_statement] = STATE(102), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(102), + [sym_switch_statement] = STATE(102), + [sym_case_statement] = STATE(102), + [sym_while_statement] = STATE(102), + [sym_do_statement] = STATE(102), + [sym_for_statement] = STATE(102), + [sym_return_statement] = STATE(102), + [sym_break_statement] = STATE(102), + [sym_continue_statement] = STATE(102), + [sym_goto_statement] = STATE(102), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1454), + [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), }, - [316] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(137), - [sym_attributed_statement] = STATE(137), - [sym_labeled_statement] = STATE(137), - [sym_expression_statement] = STATE(137), - [sym_if_statement] = STATE(137), - [sym_switch_statement] = STATE(137), - [sym_case_statement] = STATE(137), - [sym_while_statement] = STATE(137), - [sym_do_statement] = STATE(137), - [sym_for_statement] = STATE(137), - [sym_return_statement] = STATE(137), - [sym_break_statement] = STATE(137), - [sym_continue_statement] = STATE(137), - [sym_goto_statement] = STATE(137), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [304] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -47498,20 +46482,20 @@ 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_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -47536,7 +46520,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [317] = { + [305] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = 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), + }, + [306] = { + [sym_attribute_declaration] = STATE(306), + [sym_compound_statement] = STATE(127), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_case_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(1468), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1489), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1495), + [anon_sym_case] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1501), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1507), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1513), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1519), + [anon_sym_goto] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [307] = { [ts_builtin_sym_end] = ACTIONS(1310), [sym_identifier] = ACTIONS(1308), [aux_sym_preproc_include_token1] = ACTIONS(1308), @@ -47622,180 +46778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1308), [sym_comment] = ACTIONS(3), }, - [318] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [319] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(410), - [sym_attributed_statement] = STATE(410), - [sym_labeled_statement] = STATE(410), - [sym_expression_statement] = STATE(410), - [sym_if_statement] = STATE(410), - [sym_switch_statement] = STATE(410), - [sym_case_statement] = STATE(410), - [sym_while_statement] = STATE(410), - [sym_do_statement] = STATE(410), - [sym_for_statement] = STATE(410), - [sym_return_statement] = STATE(410), - [sym_break_statement] = STATE(410), - [sym_continue_statement] = STATE(410), - [sym_goto_statement] = STATE(410), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(577), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), - [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), - }, - [320] = { - [ts_builtin_sym_end] = ACTIONS(1314), + [308] = { [sym_identifier] = ACTIONS(1312), [aux_sym_preproc_include_token1] = ACTIONS(1312), [aux_sym_preproc_def_token1] = ACTIONS(1312), @@ -47823,6 +46806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1312), [anon_sym___vectorcall] = ACTIONS(1312), [anon_sym_LBRACE] = ACTIONS(1314), + [anon_sym_RBRACE] = ACTIONS(1314), [anon_sym_static] = ACTIONS(1312), [anon_sym_auto] = ACTIONS(1312), [anon_sym_register] = ACTIONS(1312), @@ -47880,133 +46864,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [321] = { - [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_RBRACE] = ACTIONS(1270), - [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_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), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = 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), + [309] = { + [sym_attribute_declaration] = STATE(301), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), }, - [322] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(259), - [sym_attributed_statement] = STATE(259), - [sym_labeled_statement] = STATE(259), - [sym_expression_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_switch_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_do_statement] = STATE(259), - [sym_for_statement] = STATE(259), - [sym_return_statement] = STATE(259), - [sym_break_statement] = STATE(259), - [sym_continue_statement] = STATE(259), - [sym_goto_statement] = STATE(259), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [310] = { + [sym_attribute_declaration] = STATE(310), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1555), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1558), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1570), + [anon_sym_default] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1576), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1582), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [311] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [312] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1946), + [sym_attributed_statement] = STATE(1946), + [sym_labeled_statement] = STATE(1946), + [sym_expression_statement] = STATE(1946), + [sym_if_statement] = STATE(1946), + [sym_switch_statement] = STATE(1946), + [sym_case_statement] = STATE(1946), + [sym_while_statement] = STATE(1946), + [sym_do_statement] = STATE(1946), + [sym_for_statement] = STATE(1946), + [sym_return_statement] = STATE(1946), + [sym_break_statement] = STATE(1946), + [sym_continue_statement] = STATE(1946), + [sym_goto_statement] = STATE(1946), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48014,16 +47170,16 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -48052,47 +47208,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [323] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(528), - [sym_attributed_statement] = STATE(528), - [sym_labeled_statement] = STATE(528), - [sym_expression_statement] = STATE(528), - [sym_if_statement] = STATE(528), - [sym_switch_statement] = STATE(528), - [sym_case_statement] = STATE(528), - [sym_while_statement] = STATE(528), - [sym_do_statement] = STATE(528), - [sym_for_statement] = STATE(528), - [sym_return_statement] = STATE(528), - [sym_break_statement] = STATE(528), - [sym_continue_statement] = STATE(528), - [sym_goto_statement] = STATE(528), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [313] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48100,20 +47256,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [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), @@ -48138,305 +47294,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [324] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = 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), + [314] = { + [sym_attribute_declaration] = STATE(301), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), }, - [325] = { - [sym_attribute_declaration] = STATE(325), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(325), - [sym_identifier] = ACTIONS(1578), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1581), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_switch] = ACTIONS(1587), - [anon_sym_case] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1593), - [anon_sym_while] = ACTIONS(1596), - [anon_sym_do] = ACTIONS(1599), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1605), - [anon_sym_break] = ACTIONS(1608), - [anon_sym_continue] = ACTIONS(1611), - [anon_sym_goto] = ACTIONS(1614), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1532), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym___asm__] = ACTIONS(1535), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_L_SQUOTE] = ACTIONS(1541), - [anon_sym_u_SQUOTE] = ACTIONS(1541), - [anon_sym_U_SQUOTE] = ACTIONS(1541), - [anon_sym_u8_SQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [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(1547), - [sym_false] = ACTIONS(1547), - [anon_sym_NULL] = ACTIONS(1550), - [anon_sym_nullptr] = ACTIONS(1550), + [315] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1200), + [anon_sym_unsigned] = ACTIONS(1200), + [anon_sym_long] = ACTIONS(1200), + [anon_sym_short] = 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), }, - [326] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = 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), + [316] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1320), + [anon_sym_unsigned] = ACTIONS(1320), + [anon_sym_long] = ACTIONS(1320), + [anon_sym_short] = 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), }, - [327] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(312), - [sym_attributed_statement] = STATE(312), - [sym_labeled_statement] = STATE(312), - [sym_expression_statement] = STATE(312), - [sym_if_statement] = STATE(312), - [sym_switch_statement] = STATE(312), - [sym_case_statement] = STATE(312), - [sym_while_statement] = STATE(312), - [sym_do_statement] = STATE(312), - [sym_for_statement] = STATE(312), - [sym_return_statement] = STATE(312), - [sym_break_statement] = STATE(312), - [sym_continue_statement] = STATE(312), - [sym_goto_statement] = STATE(312), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(1464), + [317] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = 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), + }, + [318] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(356), + [sym_attributed_statement] = STATE(356), + [sym_labeled_statement] = STATE(356), + [sym_expression_statement] = STATE(356), + [sym_if_statement] = STATE(356), + [sym_switch_statement] = STATE(356), + [sym_case_statement] = STATE(356), + [sym_while_statement] = STATE(356), + [sym_do_statement] = STATE(356), + [sym_for_statement] = STATE(356), + [sym_return_statement] = STATE(356), + [sym_break_statement] = STATE(356), + [sym_continue_statement] = STATE(356), + [sym_goto_statement] = STATE(356), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48482,132 +47724,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [328] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = 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), - }, - [329] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(92), - [sym_attributed_statement] = STATE(92), - [sym_labeled_statement] = STATE(92), - [sym_expression_statement] = STATE(92), - [sym_if_statement] = STATE(92), - [sym_switch_statement] = STATE(92), - [sym_case_statement] = STATE(92), - [sym_while_statement] = STATE(92), - [sym_do_statement] = STATE(92), - [sym_for_statement] = STATE(92), - [sym_return_statement] = STATE(92), - [sym_break_statement] = STATE(92), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(92), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), + [319] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(109), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_case_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -48654,47 +47810,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [330] = { - [sym_attribute_declaration] = STATE(347), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [320] = { + [sym_attribute_declaration] = STATE(399), + [sym_compound_statement] = STATE(110), + [sym_attributed_statement] = STATE(110), + [sym_labeled_statement] = STATE(110), + [sym_expression_statement] = STATE(110), + [sym_if_statement] = STATE(110), + [sym_switch_statement] = STATE(110), + [sym_case_statement] = STATE(110), + [sym_while_statement] = STATE(110), + [sym_do_statement] = STATE(110), + [sym_for_statement] = STATE(110), + [sym_return_statement] = STATE(110), + [sym_break_statement] = STATE(110), + [sym_continue_statement] = STATE(110), + [sym_goto_statement] = STATE(110), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48702,20 +47858,20 @@ 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_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -48740,219 +47896,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1320), - [anon_sym_unsigned] = ACTIONS(1320), - [anon_sym_long] = ACTIONS(1320), - [anon_sym_short] = 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), - }, - [332] = { - [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_RBRACE] = ACTIONS(1314), - [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_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), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = 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), + [321] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1332), + [anon_sym_unsigned] = ACTIONS(1332), + [anon_sym_long] = ACTIONS(1332), + [anon_sym_short] = 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), [sym_comment] = ACTIONS(3), }, - [333] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(1918), - [sym_attributed_statement] = STATE(1918), - [sym_labeled_statement] = STATE(1918), - [sym_expression_statement] = STATE(1918), - [sym_if_statement] = STATE(1918), - [sym_switch_statement] = STATE(1918), - [sym_case_statement] = STATE(1918), - [sym_while_statement] = STATE(1918), - [sym_do_statement] = STATE(1918), - [sym_for_statement] = STATE(1918), - [sym_return_statement] = STATE(1918), - [sym_break_statement] = STATE(1918), - [sym_continue_statement] = STATE(1918), - [sym_goto_statement] = STATE(1918), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [322] = { + [sym_attribute_declaration] = STATE(322), + [sym_compound_statement] = STATE(321), + [sym_attributed_statement] = STATE(321), + [sym_labeled_statement] = STATE(321), + [sym_expression_statement] = STATE(321), + [sym_if_statement] = STATE(321), + [sym_switch_statement] = STATE(321), + [sym_case_statement] = STATE(321), + [sym_while_statement] = STATE(321), + [sym_do_statement] = STATE(321), + [sym_for_statement] = STATE(321), + [sym_return_statement] = STATE(321), + [sym_break_statement] = STATE(321), + [sym_continue_statement] = STATE(321), + [sym_goto_statement] = STATE(321), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(322), + [sym_identifier] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1603), + [anon_sym_if] = ACTIONS(1606), + [anon_sym_switch] = ACTIONS(1609), + [anon_sym_case] = ACTIONS(1612), + [anon_sym_default] = ACTIONS(1615), + [anon_sym_while] = ACTIONS(1618), + [anon_sym_do] = ACTIONS(1621), + [anon_sym_for] = ACTIONS(1624), + [anon_sym_return] = ACTIONS(1627), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1633), + [anon_sym_goto] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [323] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1328), + [anon_sym_unsigned] = ACTIONS(1328), + [anon_sym_long] = ACTIONS(1328), + [anon_sym_short] = 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), + [sym_comment] = ACTIONS(3), + }, + [324] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -48960,20 +48202,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [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), @@ -48998,46 +48240,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(93), - [sym_attributed_statement] = STATE(93), - [sym_labeled_statement] = STATE(93), - [sym_expression_statement] = STATE(93), - [sym_if_statement] = STATE(93), - [sym_switch_statement] = STATE(93), - [sym_case_statement] = STATE(93), - [sym_while_statement] = STATE(93), - [sym_do_statement] = STATE(93), - [sym_for_statement] = STATE(93), - [sym_return_statement] = STATE(93), - [sym_break_statement] = STATE(93), - [sym_continue_statement] = STATE(93), - [sym_goto_statement] = STATE(93), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), + [325] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -49084,46 +48326,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(124), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_case_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), + [326] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -49170,47 +48412,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [327] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1244), + [anon_sym_unsigned] = ACTIONS(1244), + [anon_sym_long] = ACTIONS(1244), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [328] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49218,20 +48546,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [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), @@ -49256,47 +48584,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(127), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_case_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [329] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(294), + [sym_attributed_statement] = STATE(294), + [sym_labeled_statement] = STATE(294), + [sym_expression_statement] = STATE(294), + [sym_if_statement] = STATE(294), + [sym_switch_statement] = STATE(294), + [sym_case_statement] = STATE(294), + [sym_while_statement] = STATE(294), + [sym_do_statement] = STATE(294), + [sym_for_statement] = STATE(294), + [sym_return_statement] = STATE(294), + [sym_break_statement] = STATE(294), + [sym_continue_statement] = STATE(294), + [sym_goto_statement] = STATE(294), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49304,20 +48632,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -49342,47 +48670,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_attribute_declaration] = STATE(394), - [sym_compound_statement] = STATE(315), - [sym_attributed_statement] = STATE(315), - [sym_labeled_statement] = STATE(315), - [sym_expression_statement] = STATE(315), - [sym_if_statement] = STATE(315), - [sym_switch_statement] = STATE(315), - [sym_case_statement] = STATE(315), - [sym_while_statement] = STATE(315), - [sym_do_statement] = STATE(315), - [sym_for_statement] = STATE(315), - [sym_return_statement] = STATE(315), - [sym_break_statement] = STATE(315), - [sym_continue_statement] = STATE(315), - [sym_goto_statement] = STATE(315), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(1464), + [330] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1925), + [sym_attributed_statement] = STATE(1925), + [sym_labeled_statement] = STATE(1925), + [sym_expression_statement] = STATE(1925), + [sym_if_statement] = STATE(1925), + [sym_switch_statement] = STATE(1925), + [sym_case_statement] = STATE(1925), + [sym_while_statement] = STATE(1925), + [sym_do_statement] = STATE(1925), + [sym_for_statement] = STATE(1925), + [sym_return_statement] = STATE(1925), + [sym_break_statement] = STATE(1925), + [sym_continue_statement] = STATE(1925), + [sym_goto_statement] = STATE(1925), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49392,18 +48720,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -49428,47 +48756,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [339] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(169), - [sym_attributed_statement] = STATE(169), - [sym_labeled_statement] = STATE(169), - [sym_expression_statement] = STATE(169), - [sym_if_statement] = STATE(169), - [sym_switch_statement] = STATE(169), - [sym_case_statement] = STATE(169), - [sym_while_statement] = STATE(169), - [sym_do_statement] = STATE(169), - [sym_for_statement] = STATE(169), - [sym_return_statement] = STATE(169), - [sym_break_statement] = STATE(169), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(169), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [331] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49476,20 +48804,20 @@ 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_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -49514,47 +48842,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(170), - [sym_attributed_statement] = STATE(170), - [sym_labeled_statement] = STATE(170), - [sym_expression_statement] = STATE(170), - [sym_if_statement] = STATE(170), - [sym_switch_statement] = STATE(170), - [sym_case_statement] = STATE(170), - [sym_while_statement] = STATE(170), - [sym_do_statement] = STATE(170), - [sym_for_statement] = STATE(170), - [sym_return_statement] = STATE(170), - [sym_break_statement] = STATE(170), - [sym_continue_statement] = STATE(170), - [sym_goto_statement] = STATE(170), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [332] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49562,20 +48890,20 @@ 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_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -49600,47 +48928,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [341] = { - [sym_attribute_declaration] = STATE(394), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(394), - [sym_identifier] = ACTIONS(1464), + [333] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), + [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -49648,20 +48976,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(117), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -49686,46 +49014,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(128), - [sym_attributed_statement] = STATE(128), - [sym_labeled_statement] = STATE(128), - [sym_expression_statement] = STATE(128), - [sym_if_statement] = STATE(128), - [sym_switch_statement] = STATE(128), - [sym_case_statement] = STATE(128), - [sym_while_statement] = STATE(128), - [sym_do_statement] = STATE(128), - [sym_for_statement] = STATE(128), - [sym_return_statement] = STATE(128), - [sym_break_statement] = STATE(128), - [sym_continue_statement] = STATE(128), - [sym_goto_statement] = STATE(128), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), + [334] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1240), + [anon_sym_unsigned] = ACTIONS(1240), + [anon_sym_long] = ACTIONS(1240), + [anon_sym_short] = 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), + }, + [335] = { + [sym_attribute_declaration] = STATE(399), + [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(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(399), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -49772,7 +49186,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [343] = { + [336] = { + [ts_builtin_sym_end] = ACTIONS(1210), [sym_identifier] = ACTIONS(1208), [aux_sym_preproc_include_token1] = ACTIONS(1208), [aux_sym_preproc_def_token1] = ACTIONS(1208), @@ -49800,7 +49215,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1208), [anon_sym___vectorcall] = ACTIONS(1208), [anon_sym_LBRACE] = ACTIONS(1210), - [anon_sym_RBRACE] = ACTIONS(1210), [anon_sym_static] = ACTIONS(1208), [anon_sym_auto] = ACTIONS(1208), [anon_sym_register] = ACTIONS(1208), @@ -49858,219 +49272,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1208), [sym_comment] = ACTIONS(3), }, - [344] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = 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), + [337] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = 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), + }, + [338] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(528), + [sym_attributed_statement] = STATE(528), + [sym_labeled_statement] = STATE(528), + [sym_expression_statement] = STATE(528), + [sym_if_statement] = STATE(528), + [sym_switch_statement] = STATE(528), + [sym_case_statement] = STATE(528), + [sym_while_statement] = STATE(528), + [sym_do_statement] = STATE(528), + [sym_for_statement] = STATE(528), + [sym_return_statement] = STATE(528), + [sym_break_statement] = STATE(528), + [sym_continue_statement] = STATE(528), + [sym_goto_statement] = STATE(528), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), + }, + [339] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), + }, + [340] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), + }, + [341] = { + [sym_attribute_declaration] = STATE(341), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1639), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1600), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1561), + [anon_sym_if] = ACTIONS(1642), + [anon_sym_switch] = ACTIONS(1567), + [anon_sym_case] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1648), + [anon_sym_while] = ACTIONS(1651), + [anon_sym_do] = ACTIONS(1579), + [anon_sym_for] = ACTIONS(1654), + [anon_sym_return] = ACTIONS(1585), + [anon_sym_break] = ACTIONS(1588), + [anon_sym_continue] = ACTIONS(1591), + [anon_sym_goto] = ACTIONS(1594), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [342] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = 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), + }, + [343] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1236), + [anon_sym_unsigned] = ACTIONS(1236), + [anon_sym_long] = ACTIONS(1236), + [anon_sym_short] = 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), }, - [345] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = 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), + [344] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1232), + [anon_sym_unsigned] = ACTIONS(1232), + [anon_sym_long] = ACTIONS(1232), + [anon_sym_short] = 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), }, - [346] = { - [sym_attribute_declaration] = STATE(347), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [345] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50078,20 +50008,20 @@ 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_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -50116,47 +50046,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [347] = { - [sym_attribute_declaration] = STATE(371), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1462), + [346] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(240), + [sym_attributed_statement] = STATE(240), + [sym_labeled_statement] = STATE(240), + [sym_expression_statement] = STATE(240), + [sym_if_statement] = STATE(240), + [sym_switch_statement] = STATE(240), + [sym_case_statement] = STATE(240), + [sym_while_statement] = STATE(240), + [sym_do_statement] = STATE(240), + [sym_for_statement] = STATE(240), + [sym_return_statement] = STATE(240), + [sym_break_statement] = STATE(240), + [sym_continue_statement] = STATE(240), + [sym_goto_statement] = STATE(240), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50164,20 +50094,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50202,47 +50132,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [348] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(173), - [sym_attributed_statement] = STATE(173), - [sym_labeled_statement] = STATE(173), - [sym_expression_statement] = STATE(173), - [sym_if_statement] = STATE(173), - [sym_switch_statement] = STATE(173), - [sym_case_statement] = STATE(173), - [sym_while_statement] = STATE(173), - [sym_do_statement] = STATE(173), - [sym_for_statement] = STATE(173), - [sym_return_statement] = STATE(173), - [sym_break_statement] = STATE(173), - [sym_continue_statement] = STATE(173), - [sym_goto_statement] = STATE(173), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [347] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50250,20 +50180,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50288,47 +50218,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(129), - [sym_attributed_statement] = STATE(129), - [sym_labeled_statement] = STATE(129), - [sym_expression_statement] = STATE(129), - [sym_if_statement] = STATE(129), - [sym_switch_statement] = STATE(129), - [sym_case_statement] = STATE(129), - [sym_while_statement] = STATE(129), - [sym_do_statement] = STATE(129), - [sym_for_statement] = STATE(129), - [sym_return_statement] = STATE(129), - [sym_break_statement] = STATE(129), - [sym_continue_statement] = STATE(129), - [sym_goto_statement] = STATE(129), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [348] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(251), + [sym_attributed_statement] = STATE(251), + [sym_labeled_statement] = STATE(251), + [sym_expression_statement] = STATE(251), + [sym_if_statement] = STATE(251), + [sym_switch_statement] = STATE(251), + [sym_case_statement] = STATE(251), + [sym_while_statement] = STATE(251), + [sym_do_statement] = STATE(251), + [sym_for_statement] = STATE(251), + [sym_return_statement] = STATE(251), + [sym_break_statement] = STATE(251), + [sym_continue_statement] = STATE(251), + [sym_goto_statement] = STATE(251), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50336,20 +50266,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50374,47 +50304,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(130), - [sym_attributed_statement] = STATE(130), - [sym_labeled_statement] = STATE(130), - [sym_expression_statement] = STATE(130), - [sym_if_statement] = STATE(130), - [sym_switch_statement] = STATE(130), - [sym_case_statement] = STATE(130), - [sym_while_statement] = STATE(130), - [sym_do_statement] = STATE(130), - [sym_for_statement] = STATE(130), - [sym_return_statement] = STATE(130), - [sym_break_statement] = STATE(130), - [sym_continue_statement] = STATE(130), - [sym_goto_statement] = STATE(130), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [349] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50422,20 +50352,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50460,47 +50390,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [351] = { - [sym_attribute_declaration] = STATE(283), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(283), - [sym_identifier] = ACTIONS(1574), + [350] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50508,16 +50438,16 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -50546,133 +50476,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [352] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1216), - [anon_sym_unsigned] = ACTIONS(1216), - [anon_sym_long] = ACTIONS(1216), - [anon_sym_short] = 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), + [351] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(269), + [sym_attributed_statement] = STATE(269), + [sym_labeled_statement] = STATE(269), + [sym_expression_statement] = STATE(269), + [sym_if_statement] = STATE(269), + [sym_switch_statement] = STATE(269), + [sym_case_statement] = STATE(269), + [sym_while_statement] = STATE(269), + [sym_do_statement] = STATE(269), + [sym_for_statement] = STATE(269), + [sym_return_statement] = STATE(269), + [sym_break_statement] = STATE(269), + [sym_continue_statement] = STATE(269), + [sym_goto_statement] = STATE(269), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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(406), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [352] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50680,20 +50610,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50718,47 +50648,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_attribute_declaration] = STATE(406), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [353] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50766,20 +50696,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50804,47 +50734,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [355] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(168), - [sym_attributed_statement] = STATE(168), - [sym_labeled_statement] = STATE(168), - [sym_expression_statement] = STATE(168), - [sym_if_statement] = STATE(168), - [sym_switch_statement] = STATE(168), - [sym_case_statement] = STATE(168), - [sym_while_statement] = STATE(168), - [sym_do_statement] = STATE(168), - [sym_for_statement] = STATE(168), - [sym_return_statement] = STATE(168), - [sym_break_statement] = STATE(168), - [sym_continue_statement] = STATE(168), - [sym_goto_statement] = STATE(168), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [354] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50852,20 +50782,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50890,47 +50820,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [355] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1228), + [anon_sym_unsigned] = ACTIONS(1228), + [anon_sym_long] = ACTIONS(1228), + [anon_sym_short] = 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), + }, [356] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(166), - [sym_attributed_statement] = STATE(166), - [sym_labeled_statement] = STATE(166), - [sym_expression_statement] = STATE(166), - [sym_if_statement] = STATE(166), - [sym_switch_statement] = STATE(166), - [sym_case_statement] = STATE(166), - [sym_while_statement] = STATE(166), - [sym_do_statement] = STATE(166), - [sym_for_statement] = STATE(166), - [sym_return_statement] = STATE(166), - [sym_break_statement] = STATE(166), - [sym_continue_statement] = STATE(166), - [sym_goto_statement] = STATE(166), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [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_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_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), + [anon_sym_signed] = ACTIONS(1224), + [anon_sym_unsigned] = ACTIONS(1224), + [anon_sym_long] = ACTIONS(1224), + [anon_sym_short] = 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), + }, + [357] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), + }, + [358] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(295), + [sym_attributed_statement] = STATE(295), + [sym_labeled_statement] = STATE(295), + [sym_expression_statement] = STATE(295), + [sym_if_statement] = STATE(295), + [sym_switch_statement] = STATE(295), + [sym_case_statement] = STATE(295), + [sym_while_statement] = STATE(295), + [sym_do_statement] = STATE(295), + [sym_for_statement] = STATE(295), + [sym_return_statement] = STATE(295), + [sym_break_statement] = STATE(295), + [sym_continue_statement] = STATE(295), + [sym_goto_statement] = STATE(295), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -50938,20 +51126,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -50976,184 +51164,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [357] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1208), - [anon_sym_unsigned] = ACTIONS(1208), - [anon_sym_long] = ACTIONS(1208), - [anon_sym_short] = 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), + [359] = { + [sym_attribute_declaration] = STATE(366), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), }, - [358] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1312), - [anon_sym_unsigned] = ACTIONS(1312), - [anon_sym_long] = ACTIONS(1312), - [anon_sym_short] = 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), + [360] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1324), + [anon_sym_unsigned] = ACTIONS(1324), + [anon_sym_long] = ACTIONS(1324), + [anon_sym_short] = 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), }, - [359] = { + [361] = { + [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_if_token2] = ACTIONS(1320), [aux_sym_preproc_ifdef_token1] = ACTIONS(1320), [aux_sym_preproc_ifdef_token2] = ACTIONS(1320), [sym_preproc_directive] = ACTIONS(1320), @@ -51234,563 +51422,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1320), [sym_comment] = ACTIONS(3), }, - [360] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1196), - [anon_sym_unsigned] = ACTIONS(1196), - [anon_sym_long] = ACTIONS(1196), - [anon_sym_short] = 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), - }, - [361] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1308), - [anon_sym_unsigned] = ACTIONS(1308), - [anon_sym_long] = ACTIONS(1308), - [anon_sym_short] = 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), - }, [362] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(164), - [sym_attributed_statement] = STATE(164), - [sym_labeled_statement] = STATE(164), - [sym_expression_statement] = STATE(164), - [sym_if_statement] = STATE(164), - [sym_switch_statement] = STATE(164), - [sym_case_statement] = STATE(164), - [sym_while_statement] = STATE(164), - [sym_do_statement] = STATE(164), - [sym_for_statement] = STATE(164), - [sym_return_statement] = STATE(164), - [sym_break_statement] = STATE(164), - [sym_continue_statement] = STATE(164), - [sym_goto_statement] = STATE(164), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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), - }, - [363] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(154), - [sym_attributed_statement] = STATE(154), - [sym_labeled_statement] = STATE(154), - [sym_expression_statement] = STATE(154), - [sym_if_statement] = STATE(154), - [sym_switch_statement] = STATE(154), - [sym_case_statement] = STATE(154), - [sym_while_statement] = STATE(154), - [sym_do_statement] = STATE(154), - [sym_for_statement] = STATE(154), - [sym_return_statement] = STATE(154), - [sym_break_statement] = STATE(154), - [sym_continue_statement] = STATE(154), - [sym_goto_statement] = STATE(154), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1454), - [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_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_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_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), + [anon_sym_signed] = ACTIONS(1220), + [anon_sym_unsigned] = ACTIONS(1220), + [anon_sym_long] = ACTIONS(1220), + [anon_sym_short] = 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), }, - [364] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(365), - [sym_attributed_statement] = STATE(365), - [sym_labeled_statement] = STATE(365), - [sym_expression_statement] = STATE(365), - [sym_if_statement] = STATE(365), - [sym_switch_statement] = STATE(365), - [sym_case_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_statement] = STATE(365), - [sym_for_statement] = STATE(365), - [sym_return_statement] = STATE(365), - [sym_break_statement] = STATE(365), - [sym_continue_statement] = STATE(365), - [sym_goto_statement] = STATE(365), + [363] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(305), + [sym_attributed_statement] = STATE(305), + [sym_labeled_statement] = STATE(305), + [sym_expression_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_switch_statement] = STATE(305), + [sym_case_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_do_statement] = STATE(305), + [sym_for_statement] = STATE(305), + [sym_return_statement] = STATE(305), + [sym_break_statement] = STATE(305), + [sym_continue_statement] = STATE(305), + [sym_goto_statement] = STATE(305), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(577), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), - [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_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_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_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_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), - [anon_sym_signed] = ACTIONS(1300), - [anon_sym_unsigned] = ACTIONS(1300), - [anon_sym_long] = ACTIONS(1300), - [anon_sym_short] = 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), - }, - [366] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(360), - [sym_attributed_statement] = STATE(360), - [sym_labeled_statement] = STATE(360), - [sym_expression_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_switch_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_do_statement] = STATE(360), - [sym_for_statement] = STATE(360), - [sym_return_statement] = STATE(360), - [sym_break_statement] = STATE(360), - [sym_continue_statement] = STATE(360), - [sym_goto_statement] = STATE(360), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -51798,16 +51556,16 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1150), [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(59), - [anon_sym_default] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1154), [anon_sym_return] = ACTIONS(69), [anon_sym_break] = ACTIONS(71), [anon_sym_continue] = ACTIONS(73), @@ -51836,7 +51594,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [367] = { + [364] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = 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), + }, + [365] = { [ts_builtin_sym_end] = ACTIONS(1202), [sym_identifier] = ACTIONS(1200), [aux_sym_preproc_include_token1] = ACTIONS(1200), @@ -51922,391 +51766,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1200), [sym_comment] = ACTIONS(3), }, - [368] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1316), - [anon_sym_unsigned] = ACTIONS(1316), - [anon_sym_long] = ACTIONS(1316), - [anon_sym_short] = 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), - }, - [369] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1324), - [anon_sym_unsigned] = ACTIONS(1324), - [anon_sym_long] = ACTIONS(1324), - [anon_sym_short] = 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), - }, - [370] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1328), - [anon_sym_unsigned] = ACTIONS(1328), - [anon_sym_long] = ACTIONS(1328), - [anon_sym_short] = 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), + [366] = { + [sym_attribute_declaration] = STATE(341), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(341), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), }, - [371] = { - [sym_attribute_declaration] = STATE(371), - [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(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1623), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_switch] = ACTIONS(1629), - [anon_sym_case] = ACTIONS(1632), - [anon_sym_default] = ACTIONS(1635), - [anon_sym_while] = ACTIONS(1638), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1644), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1650), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_goto] = ACTIONS(1656), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1532), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym___asm__] = ACTIONS(1535), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_L_SQUOTE] = ACTIONS(1541), - [anon_sym_u_SQUOTE] = ACTIONS(1541), - [anon_sym_U_SQUOTE] = ACTIONS(1541), - [anon_sym_u8_SQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [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(1547), - [sym_false] = ACTIONS(1547), - [anon_sym_NULL] = ACTIONS(1550), - [anon_sym_nullptr] = ACTIONS(1550), + [367] = { + [sym_attribute_declaration] = STATE(405), + [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(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [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(1050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [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), }, - [372] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(309), - [sym_attributed_statement] = STATE(309), - [sym_labeled_statement] = STATE(309), - [sym_expression_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_switch_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_do_statement] = STATE(309), - [sym_for_statement] = STATE(309), - [sym_return_statement] = STATE(309), - [sym_break_statement] = STATE(309), - [sym_continue_statement] = STATE(309), - [sym_goto_statement] = STATE(309), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [368] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(206), + [sym_attributed_statement] = STATE(206), + [sym_labeled_statement] = STATE(206), + [sym_expression_statement] = STATE(206), + [sym_if_statement] = STATE(206), + [sym_switch_statement] = STATE(206), + [sym_case_statement] = STATE(206), + [sym_while_statement] = STATE(206), + [sym_do_statement] = STATE(206), + [sym_for_statement] = STATE(206), + [sym_return_statement] = STATE(206), + [sym_break_statement] = STATE(206), + [sym_continue_statement] = STATE(206), + [sym_goto_statement] = STATE(206), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52314,20 +51986,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -52352,47 +52024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [373] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(308), - [sym_attributed_statement] = STATE(308), - [sym_labeled_statement] = STATE(308), - [sym_expression_statement] = STATE(308), - [sym_if_statement] = STATE(308), - [sym_switch_statement] = STATE(308), - [sym_case_statement] = STATE(308), - [sym_while_statement] = STATE(308), - [sym_do_statement] = STATE(308), - [sym_for_statement] = STATE(308), - [sym_return_statement] = STATE(308), - [sym_break_statement] = STATE(308), - [sym_continue_statement] = STATE(308), - [sym_goto_statement] = STATE(308), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [369] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52400,20 +52072,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -52438,47 +52110,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [374] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(307), - [sym_attributed_statement] = STATE(307), - [sym_labeled_statement] = STATE(307), - [sym_expression_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_do_statement] = STATE(307), - [sym_for_statement] = STATE(307), - [sym_return_statement] = STATE(307), - [sym_break_statement] = STATE(307), - [sym_continue_statement] = STATE(307), - [sym_goto_statement] = STATE(307), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [370] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(169), + [sym_attributed_statement] = STATE(169), + [sym_labeled_statement] = STATE(169), + [sym_expression_statement] = STATE(169), + [sym_if_statement] = STATE(169), + [sym_switch_statement] = STATE(169), + [sym_case_statement] = STATE(169), + [sym_while_statement] = STATE(169), + [sym_do_statement] = STATE(169), + [sym_for_statement] = STATE(169), + [sym_return_statement] = STATE(169), + [sym_break_statement] = STATE(169), + [sym_continue_statement] = STATE(169), + [sym_goto_statement] = STATE(169), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52486,20 +52158,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -52524,47 +52196,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_attribute_declaration] = STATE(364), - [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(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [371] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(162), + [sym_attributed_statement] = STATE(162), + [sym_labeled_statement] = STATE(162), + [sym_expression_statement] = STATE(162), + [sym_if_statement] = STATE(162), + [sym_switch_statement] = STATE(162), + [sym_case_statement] = STATE(162), + [sym_while_statement] = STATE(162), + [sym_do_statement] = STATE(162), + [sym_for_statement] = STATE(162), + [sym_return_statement] = STATE(162), + [sym_break_statement] = STATE(162), + [sym_continue_statement] = STATE(162), + [sym_goto_statement] = STATE(162), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52572,20 +52244,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -52610,47 +52282,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_attribute_declaration] = STATE(406), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [372] = { + [sym_attribute_declaration] = STATE(372), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1659), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1668), + [anon_sym_switch] = ACTIONS(1671), + [anon_sym_case] = ACTIONS(1674), + [anon_sym_default] = ACTIONS(1677), + [anon_sym_while] = ACTIONS(1680), + [anon_sym_do] = ACTIONS(1683), + [anon_sym_for] = ACTIONS(1686), + [anon_sym_return] = ACTIONS(1689), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1695), + [anon_sym_goto] = ACTIONS(1698), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), + [sym_comment] = ACTIONS(3), + }, + [373] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1344), + [anon_sym_unsigned] = ACTIONS(1344), + [anon_sym_long] = ACTIONS(1344), + [anon_sym_short] = 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), + }, + [374] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(386), + [sym_attributed_statement] = STATE(386), + [sym_labeled_statement] = STATE(386), + [sym_expression_statement] = STATE(386), + [sym_if_statement] = STATE(386), + [sym_switch_statement] = STATE(386), + [sym_case_statement] = STATE(386), + [sym_while_statement] = STATE(386), + [sym_do_statement] = STATE(386), + [sym_for_statement] = STATE(386), + [sym_return_statement] = STATE(386), + [sym_break_statement] = STATE(386), + [sym_continue_statement] = STATE(386), + [sym_goto_statement] = STATE(386), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52658,20 +52502,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(460), + [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), @@ -52696,133 +52540,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [377] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = 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), + [375] = { + [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_RBRACE] = ACTIONS(1342), + [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_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), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = 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), + }, + [376] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, - [378] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(305), - [sym_attributed_statement] = STATE(305), - [sym_labeled_statement] = STATE(305), - [sym_expression_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_switch_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_do_statement] = STATE(305), - [sym_for_statement] = STATE(305), - [sym_return_statement] = STATE(305), - [sym_break_statement] = STATE(305), - [sym_continue_statement] = STATE(305), - [sym_goto_statement] = STATE(305), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [377] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(175), + [sym_attributed_statement] = STATE(175), + [sym_labeled_statement] = STATE(175), + [sym_expression_statement] = STATE(175), + [sym_if_statement] = STATE(175), + [sym_switch_statement] = STATE(175), + [sym_case_statement] = STATE(175), + [sym_while_statement] = STATE(175), + [sym_do_statement] = STATE(175), + [sym_for_statement] = STATE(175), + [sym_return_statement] = STATE(175), + [sym_break_statement] = STATE(175), + [sym_continue_statement] = STATE(175), + [sym_goto_statement] = STATE(175), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -52830,20 +52760,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -52868,219 +52798,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [378] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1308), + [anon_sym_unsigned] = ACTIONS(1308), + [anon_sym_long] = ACTIONS(1308), + [anon_sym_short] = 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), + }, [379] = { - [sym_attribute_declaration] = STATE(351), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), }, [380] = { - [sym_attribute_declaration] = STATE(351), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = 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(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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_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_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), + [anon_sym_signed] = ACTIONS(1316), + [anon_sym_unsigned] = ACTIONS(1316), + [anon_sym_long] = ACTIONS(1316), + [anon_sym_short] = 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), + }, + [381] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1204), + [anon_sym_unsigned] = ACTIONS(1204), + [anon_sym_long] = ACTIONS(1204), + [anon_sym_short] = 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), }, - [381] = { - [sym_attribute_declaration] = STATE(347), - [sym_compound_statement] = STATE(161), - [sym_attributed_statement] = STATE(161), - [sym_labeled_statement] = STATE(161), - [sym_expression_statement] = STATE(161), - [sym_if_statement] = STATE(161), - [sym_switch_statement] = STATE(161), - [sym_case_statement] = STATE(161), - [sym_while_statement] = STATE(161), - [sym_do_statement] = STATE(161), - [sym_for_statement] = STATE(161), - [sym_return_statement] = STATE(161), - [sym_break_statement] = STATE(161), - [sym_continue_statement] = STATE(161), - [sym_goto_statement] = STATE(161), - [sym__expression] = STATE(1046), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1794), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1462), + [382] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(185), + [sym_attributed_statement] = STATE(185), + [sym_labeled_statement] = STATE(185), + [sym_expression_statement] = STATE(185), + [sym_if_statement] = STATE(185), + [sym_switch_statement] = STATE(185), + [sym_case_statement] = STATE(185), + [sym_while_statement] = STATE(185), + [sym_do_statement] = STATE(185), + [sym_for_statement] = STATE(185), + [sym_return_statement] = STATE(185), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(185), + [sym_goto_statement] = STATE(185), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53126,133 +53228,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [382] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1332), - [anon_sym_unsigned] = ACTIONS(1332), - [anon_sym_long] = ACTIONS(1332), - [anon_sym_short] = 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), - [sym_comment] = ACTIONS(3), - }, [383] = { - [sym_attribute_declaration] = STATE(406), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53260,20 +53276,20 @@ 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_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -53299,46 +53315,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [384] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(369), - [sym_attributed_statement] = STATE(369), - [sym_labeled_statement] = STATE(369), - [sym_expression_statement] = STATE(369), - [sym_if_statement] = STATE(369), - [sym_switch_statement] = STATE(369), - [sym_case_statement] = STATE(369), - [sym_while_statement] = STATE(369), - [sym_do_statement] = STATE(369), - [sym_for_statement] = STATE(369), - [sym_return_statement] = STATE(369), - [sym_break_statement] = STATE(369), - [sym_continue_statement] = STATE(369), - [sym_goto_statement] = STATE(369), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [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_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_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), + [anon_sym_signed] = ACTIONS(1208), + [anon_sym_unsigned] = ACTIONS(1208), + [anon_sym_long] = ACTIONS(1208), + [anon_sym_short] = 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), + }, + [385] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(188), + [sym_attributed_statement] = STATE(188), + [sym_labeled_statement] = STATE(188), + [sym_expression_statement] = STATE(188), + [sym_if_statement] = STATE(188), + [sym_switch_statement] = STATE(188), + [sym_case_statement] = STATE(188), + [sym_while_statement] = STATE(188), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(188), + [sym_return_statement] = STATE(188), + [sym_break_statement] = STATE(188), + [sym_continue_statement] = STATE(188), + [sym_goto_statement] = STATE(188), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53346,20 +53448,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -53384,305 +53486,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [385] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1336), - [anon_sym_unsigned] = ACTIONS(1336), - [anon_sym_long] = ACTIONS(1336), - [anon_sym_short] = 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), - }, [386] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1272), - [anon_sym_unsigned] = ACTIONS(1272), - [anon_sym_long] = ACTIONS(1272), - [anon_sym_short] = 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(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_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_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), + [anon_sym_signed] = ACTIONS(1212), + [anon_sym_unsigned] = ACTIONS(1212), + [anon_sym_long] = ACTIONS(1212), + [anon_sym_short] = 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), }, [387] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1340), - [anon_sym_unsigned] = ACTIONS(1340), - [anon_sym_long] = ACTIONS(1340), - [anon_sym_short] = 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), - }, - [388] = { - [sym_attribute_declaration] = STATE(351), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(189), + [sym_attributed_statement] = STATE(189), + [sym_labeled_statement] = STATE(189), + [sym_expression_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_switch_statement] = STATE(189), + [sym_case_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_do_statement] = STATE(189), + [sym_for_statement] = STATE(189), + [sym_return_statement] = STATE(189), + [sym_break_statement] = STATE(189), + [sym_continue_statement] = STATE(189), + [sym_goto_statement] = STATE(189), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -53690,20 +53620,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -53728,305 +53658,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [389] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1268), - [anon_sym_unsigned] = ACTIONS(1268), - [anon_sym_long] = ACTIONS(1268), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [390] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1344), - [anon_sym_unsigned] = ACTIONS(1344), - [anon_sym_long] = ACTIONS(1344), - [anon_sym_short] = 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), - }, - [391] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = 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), - }, - [392] = { - [sym_attribute_declaration] = STATE(364), - [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(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [388] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54034,20 +53706,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -54072,133 +53744,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [393] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1296), - [anon_sym_unsigned] = ACTIONS(1296), - [anon_sym_long] = ACTIONS(1296), - [anon_sym_short] = 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), + [389] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1454), + [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(325), - [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(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(325), - [sym_identifier] = ACTIONS(1464), + [390] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54206,20 +53878,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(460), - [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_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), @@ -54244,47 +53916,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(303), - [sym_attributed_statement] = STATE(303), - [sym_labeled_statement] = STATE(303), - [sym_expression_statement] = STATE(303), - [sym_if_statement] = STATE(303), - [sym_switch_statement] = STATE(303), - [sym_case_statement] = STATE(303), - [sym_while_statement] = STATE(303), - [sym_do_statement] = STATE(303), - [sym_for_statement] = STATE(303), - [sym_return_statement] = STATE(303), - [sym_break_statement] = STATE(303), - [sym_continue_statement] = STATE(303), - [sym_goto_statement] = STATE(303), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [391] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54292,20 +53964,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -54330,47 +54002,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_attribute_declaration] = STATE(364), - [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), + [392] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1979), + [sym_attributed_statement] = STATE(1979), + [sym_labeled_statement] = STATE(1979), + [sym_expression_statement] = STATE(1979), + [sym_if_statement] = STATE(1979), + [sym_switch_statement] = STATE(1979), + [sym_case_statement] = STATE(1979), + [sym_while_statement] = STATE(1979), + [sym_do_statement] = STATE(1979), + [sym_for_statement] = STATE(1979), + [sym_return_statement] = STATE(1979), + [sym_break_statement] = STATE(1979), + [sym_continue_statement] = STATE(1979), + [sym_goto_statement] = STATE(1979), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54378,20 +54050,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), @@ -54416,47 +54088,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [397] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(300), - [sym_attributed_statement] = STATE(300), - [sym_labeled_statement] = STATE(300), - [sym_expression_statement] = STATE(300), - [sym_if_statement] = STATE(300), - [sym_switch_statement] = STATE(300), - [sym_case_statement] = STATE(300), - [sym_while_statement] = STATE(300), - [sym_do_statement] = STATE(300), - [sym_for_statement] = STATE(300), - [sym_return_statement] = STATE(300), - [sym_break_statement] = STATE(300), - [sym_continue_statement] = STATE(300), - [sym_goto_statement] = STATE(300), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [393] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54464,20 +54136,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -54502,47 +54174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [398] = { - [sym_attribute_declaration] = STATE(364), - [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(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [394] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54550,20 +54222,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -54588,133 +54260,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [399] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1264), - [anon_sym_unsigned] = ACTIONS(1264), - [anon_sym_long] = ACTIONS(1264), - [anon_sym_short] = 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_comment] = ACTIONS(3), - }, - [400] = { - [sym_attribute_declaration] = STATE(351), - [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(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [395] = { + [sym_attribute_declaration] = STATE(430), + [sym_compound_statement] = STATE(182), + [sym_attributed_statement] = STATE(182), + [sym_labeled_statement] = STATE(182), + [sym_expression_statement] = STATE(182), + [sym_if_statement] = STATE(182), + [sym_switch_statement] = STATE(182), + [sym_case_statement] = STATE(182), + [sym_while_statement] = STATE(182), + [sym_do_statement] = STATE(182), + [sym_for_statement] = STATE(182), + [sym_return_statement] = STATE(182), + [sym_break_statement] = STATE(182), + [sym_continue_statement] = STATE(182), + [sym_goto_statement] = STATE(182), + [sym__expression] = STATE(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54722,20 +54308,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -54760,47 +54346,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [401] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(385), - [sym_attributed_statement] = STATE(385), - [sym_labeled_statement] = STATE(385), - [sym_expression_statement] = STATE(385), - [sym_if_statement] = STATE(385), - [sym_switch_statement] = STATE(385), - [sym_case_statement] = STATE(385), - [sym_while_statement] = STATE(385), - [sym_do_statement] = STATE(385), - [sym_for_statement] = STATE(385), - [sym_return_statement] = STATE(385), - [sym_break_statement] = STATE(385), - [sym_continue_statement] = STATE(385), - [sym_goto_statement] = STATE(385), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [396] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1216), + [anon_sym_unsigned] = ACTIONS(1216), + [anon_sym_long] = ACTIONS(1216), + [anon_sym_short] = 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), + }, + [397] = { + [sym_attribute_declaration] = STATE(430), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(430), + [sym_identifier] = ACTIONS(1657), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54808,20 +54480,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(183), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_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), @@ -54846,47 +54518,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [402] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(387), - [sym_attributed_statement] = STATE(387), - [sym_labeled_statement] = STATE(387), - [sym_expression_statement] = STATE(387), - [sym_if_statement] = STATE(387), - [sym_switch_statement] = STATE(387), - [sym_case_statement] = STATE(387), - [sym_while_statement] = STATE(387), - [sym_do_statement] = STATE(387), - [sym_for_statement] = STATE(387), - [sym_return_statement] = STATE(387), - [sym_break_statement] = STATE(387), - [sym_continue_statement] = STATE(387), - [sym_goto_statement] = STATE(387), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [398] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -54894,20 +54566,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(460), + [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), @@ -54932,133 +54604,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [403] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = 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), + [399] = { + [sym_attribute_declaration] = STATE(306), + [sym_compound_statement] = STATE(127), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_case_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym__expression] = STATE(1043), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1862), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(306), + [sym_identifier] = ACTIONS(1452), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1454), + [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), }, - [404] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(390), - [sym_attributed_statement] = STATE(390), - [sym_labeled_statement] = STATE(390), - [sym_expression_statement] = STATE(390), - [sym_if_statement] = STATE(390), - [sym_switch_statement] = STATE(390), - [sym_case_statement] = STATE(390), - [sym_while_statement] = STATE(390), - [sym_do_statement] = STATE(390), - [sym_for_statement] = STATE(390), - [sym_return_statement] = STATE(390), - [sym_break_statement] = STATE(390), - [sym_continue_statement] = STATE(390), - [sym_goto_statement] = STATE(390), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [400] = { + [sym_attribute_declaration] = STATE(301), + [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(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55066,20 +54738,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(460), + [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), @@ -55104,47 +54776,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [405] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(391), - [sym_attributed_statement] = STATE(391), - [sym_labeled_statement] = STATE(391), - [sym_expression_statement] = STATE(391), - [sym_if_statement] = STATE(391), - [sym_switch_statement] = STATE(391), - [sym_case_statement] = STATE(391), - [sym_while_statement] = STATE(391), - [sym_do_statement] = STATE(391), - [sym_for_statement] = STATE(391), - [sym_return_statement] = STATE(391), - [sym_break_statement] = STATE(391), - [sym_continue_statement] = STATE(391), - [sym_goto_statement] = STATE(391), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [401] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(204), + [sym_attributed_statement] = STATE(204), + [sym_labeled_statement] = STATE(204), + [sym_expression_statement] = STATE(204), + [sym_if_statement] = STATE(204), + [sym_switch_statement] = STATE(204), + [sym_case_statement] = STATE(204), + [sym_while_statement] = STATE(204), + [sym_do_statement] = STATE(204), + [sym_for_statement] = STATE(204), + [sym_return_statement] = STATE(204), + [sym_break_statement] = STATE(204), + [sym_continue_statement] = STATE(204), + [sym_goto_statement] = STATE(204), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55152,20 +54824,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55190,47 +54862,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [406] = { - [sym_attribute_declaration] = STATE(424), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1452), + [402] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = 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), + }, + [403] = { + [sym_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55238,20 +54996,20 @@ 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_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55276,133 +55034,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [407] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1288), - [anon_sym_unsigned] = ACTIONS(1288), - [anon_sym_long] = ACTIONS(1288), - [anon_sym_short] = ACTIONS(1288), - [sym_primitive_type] = ACTIONS(1288), - [anon_sym_enum] = ACTIONS(1288), - [anon_sym_struct] = ACTIONS(1288), - [anon_sym_union] = ACTIONS(1288), - [anon_sym_if] = ACTIONS(1288), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_switch] = ACTIONS(1288), - [anon_sym_case] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1288), - [anon_sym_while] = ACTIONS(1288), - [anon_sym_do] = ACTIONS(1288), - [anon_sym_for] = ACTIONS(1288), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_break] = ACTIONS(1288), - [anon_sym_continue] = ACTIONS(1288), - [anon_sym_goto] = ACTIONS(1288), - [anon_sym_DASH_DASH] = ACTIONS(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), + [404] = { + [sym_attribute_declaration] = STATE(404), + [sym_compound_statement] = STATE(270), + [sym_attributed_statement] = STATE(270), + [sym_labeled_statement] = STATE(270), + [sym_expression_statement] = STATE(270), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(270), + [sym_case_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_do_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_return_statement] = STATE(270), + [sym_break_statement] = STATE(270), + [sym_continue_statement] = STATE(270), + [sym_goto_statement] = STATE(270), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1474), + [anon_sym_TILDE] = ACTIONS(1474), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_if] = ACTIONS(1710), + [anon_sym_switch] = ACTIONS(1713), + [anon_sym_case] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1719), + [anon_sym_while] = ACTIONS(1722), + [anon_sym_do] = ACTIONS(1725), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1734), + [anon_sym_continue] = ACTIONS(1737), + [anon_sym_goto] = ACTIONS(1740), + [anon_sym_DASH_DASH] = ACTIONS(1525), + [anon_sym_PLUS_PLUS] = ACTIONS(1525), + [anon_sym_sizeof] = ACTIONS(1528), + [anon_sym_offsetof] = ACTIONS(1531), + [anon_sym__Generic] = ACTIONS(1534), + [anon_sym_asm] = ACTIONS(1537), + [anon_sym___asm__] = ACTIONS(1537), + [sym_number_literal] = ACTIONS(1540), + [anon_sym_L_SQUOTE] = ACTIONS(1543), + [anon_sym_u_SQUOTE] = ACTIONS(1543), + [anon_sym_U_SQUOTE] = ACTIONS(1543), + [anon_sym_u8_SQUOTE] = ACTIONS(1543), + [anon_sym_SQUOTE] = ACTIONS(1543), + [anon_sym_L_DQUOTE] = ACTIONS(1546), + [anon_sym_u_DQUOTE] = ACTIONS(1546), + [anon_sym_U_DQUOTE] = ACTIONS(1546), + [anon_sym_u8_DQUOTE] = ACTIONS(1546), + [anon_sym_DQUOTE] = ACTIONS(1546), + [sym_true] = ACTIONS(1549), + [sym_false] = ACTIONS(1549), + [anon_sym_NULL] = ACTIONS(1552), + [anon_sym_nullptr] = ACTIONS(1552), [sym_comment] = ACTIONS(3), }, - [408] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(297), - [sym_attributed_statement] = STATE(297), - [sym_labeled_statement] = STATE(297), - [sym_expression_statement] = STATE(297), - [sym_if_statement] = STATE(297), - [sym_switch_statement] = STATE(297), - [sym_case_statement] = STATE(297), - [sym_while_statement] = STATE(297), - [sym_do_statement] = STATE(297), - [sym_for_statement] = STATE(297), - [sym_return_statement] = STATE(297), - [sym_break_statement] = STATE(297), - [sym_continue_statement] = STATE(297), - [sym_goto_statement] = STATE(297), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [405] = { + [sym_attribute_declaration] = STATE(310), + [sym_compound_statement] = STATE(311), + [sym_attributed_statement] = STATE(311), + [sym_labeled_statement] = STATE(311), + [sym_expression_statement] = STATE(311), + [sym_if_statement] = STATE(311), + [sym_switch_statement] = STATE(311), + [sym_case_statement] = STATE(311), + [sym_while_statement] = STATE(311), + [sym_do_statement] = STATE(311), + [sym_for_statement] = STATE(311), + [sym_return_statement] = STATE(311), + [sym_break_statement] = STATE(311), + [sym_continue_statement] = STATE(311), + [sym_goto_statement] = STATE(311), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(310), + [sym_identifier] = ACTIONS(1464), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55410,20 +55168,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(1050), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [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), @@ -55448,47 +55206,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [409] = { - [sym_attribute_declaration] = STATE(364), - [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(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [406] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1248), + [anon_sym_unsigned] = ACTIONS(1248), + [anon_sym_long] = ACTIONS(1248), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, + [407] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1252), + [anon_sym_unsigned] = ACTIONS(1252), + [anon_sym_long] = ACTIONS(1252), + [anon_sym_short] = 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), + }, + [408] = { + [sym_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55496,20 +55426,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -55534,12 +55464,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, + [409] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1256), + [anon_sym_unsigned] = ACTIONS(1256), + [anon_sym_long] = ACTIONS(1256), + [anon_sym_short] = 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_comment] = ACTIONS(3), + }, [410] = { [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), @@ -55563,6 +55578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1260), [anon_sym___vectorcall] = ACTIONS(1260), [anon_sym_LBRACE] = ACTIONS(1262), + [anon_sym_RBRACE] = ACTIONS(1262), [anon_sym_static] = ACTIONS(1260), [anon_sym_auto] = ACTIONS(1260), [anon_sym_register] = ACTIONS(1260), @@ -55621,218 +55637,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [411] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1284), - [anon_sym_unsigned] = ACTIONS(1284), - [anon_sym_long] = ACTIONS(1284), - [anon_sym_short] = 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_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), + [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), }, [412] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1280), - [anon_sym_unsigned] = ACTIONS(1280), - [anon_sym_long] = ACTIONS(1280), - [anon_sym_short] = 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_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), + [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), }, [413] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(428), - [sym_attributed_statement] = STATE(428), - [sym_labeled_statement] = STATE(428), - [sym_expression_statement] = STATE(428), - [sym_if_statement] = STATE(428), - [sym_switch_statement] = STATE(428), - [sym_case_statement] = STATE(428), - [sym_while_statement] = STATE(428), - [sym_do_statement] = STATE(428), - [sym_for_statement] = STATE(428), - [sym_return_statement] = STATE(428), - [sym_break_statement] = STATE(428), - [sym_continue_statement] = STATE(428), - [sym_goto_statement] = STATE(428), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(447), + [sym_attributed_statement] = STATE(447), + [sym_labeled_statement] = STATE(447), + [sym_expression_statement] = STATE(447), + [sym_if_statement] = STATE(447), + [sym_switch_statement] = STATE(447), + [sym_case_statement] = STATE(447), + [sym_while_statement] = STATE(447), + [sym_do_statement] = STATE(447), + [sym_for_statement] = STATE(447), + [sym_return_statement] = STATE(447), + [sym_break_statement] = STATE(447), + [sym_continue_statement] = STATE(447), + [sym_goto_statement] = STATE(447), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -55840,20 +55856,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(460), + [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), @@ -55879,390 +55895,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [414] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = 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), - }, - [415] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1256), - [anon_sym_unsigned] = ACTIONS(1256), - [anon_sym_long] = ACTIONS(1256), - [anon_sym_short] = 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_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(450), + [sym_attributed_statement] = STATE(450), + [sym_labeled_statement] = STATE(450), + [sym_expression_statement] = STATE(450), + [sym_if_statement] = STATE(450), + [sym_switch_statement] = STATE(450), + [sym_case_statement] = STATE(450), + [sym_while_statement] = STATE(450), + [sym_do_statement] = STATE(450), + [sym_for_statement] = STATE(450), + [sym_return_statement] = STATE(450), + [sym_break_statement] = STATE(450), + [sym_continue_statement] = STATE(450), + [sym_goto_statement] = STATE(450), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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_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_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_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_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), - [anon_sym_signed] = ACTIONS(1248), - [anon_sym_unsigned] = ACTIONS(1248), - [anon_sym_long] = ACTIONS(1248), - [anon_sym_short] = 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), + [415] = { + [sym_attribute_declaration] = STATE(405), + [sym_compound_statement] = STATE(294), + [sym_attributed_statement] = STATE(294), + [sym_labeled_statement] = STATE(294), + [sym_expression_statement] = STATE(294), + [sym_if_statement] = STATE(294), + [sym_switch_statement] = STATE(294), + [sym_case_statement] = STATE(294), + [sym_while_statement] = STATE(294), + [sym_do_statement] = STATE(294), + [sym_for_statement] = STATE(294), + [sym_return_statement] = STATE(294), + [sym_break_statement] = STATE(294), + [sym_continue_statement] = STATE(294), + [sym_goto_statement] = STATE(294), + [sym__expression] = STATE(1044), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1761), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(405), + [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(1050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [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), }, - [417] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1276), - [anon_sym_unsigned] = ACTIONS(1276), - [anon_sym_long] = ACTIONS(1276), - [anon_sym_short] = 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), + [416] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1340), + [anon_sym_unsigned] = ACTIONS(1340), + [anon_sym_long] = ACTIONS(1340), + [anon_sym_short] = 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), }, - [418] = { - [sym_attribute_declaration] = STATE(406), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [417] = { + [sym_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56270,20 +56200,20 @@ 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_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56308,47 +56238,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(110), - [sym_attributed_statement] = STATE(110), - [sym_labeled_statement] = STATE(110), - [sym_expression_statement] = STATE(110), - [sym_if_statement] = STATE(110), - [sym_switch_statement] = STATE(110), - [sym_case_statement] = STATE(110), - [sym_while_statement] = STATE(110), - [sym_do_statement] = STATE(110), - [sym_for_statement] = STATE(110), - [sym_return_statement] = STATE(110), - [sym_break_statement] = STATE(110), - [sym_continue_statement] = STATE(110), - [sym_goto_statement] = STATE(110), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [418] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(223), + [sym_attributed_statement] = STATE(223), + [sym_labeled_statement] = STATE(223), + [sym_expression_statement] = STATE(223), + [sym_if_statement] = STATE(223), + [sym_switch_statement] = STATE(223), + [sym_case_statement] = STATE(223), + [sym_while_statement] = STATE(223), + [sym_do_statement] = STATE(223), + [sym_for_statement] = STATE(223), + [sym_return_statement] = STATE(223), + [sym_break_statement] = STATE(223), + [sym_continue_statement] = STATE(223), + [sym_goto_statement] = STATE(223), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56356,20 +56286,20 @@ 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_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56394,133 +56324,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [420] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1244), - [anon_sym_unsigned] = ACTIONS(1244), - [anon_sym_long] = ACTIONS(1244), - [anon_sym_short] = 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), + [419] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1264), + [anon_sym_unsigned] = ACTIONS(1264), + [anon_sym_long] = ACTIONS(1264), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [421] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(449), - [sym_attributed_statement] = STATE(449), - [sym_labeled_statement] = STATE(449), - [sym_expression_statement] = STATE(449), - [sym_if_statement] = STATE(449), - [sym_switch_statement] = STATE(449), - [sym_case_statement] = STATE(449), - [sym_while_statement] = STATE(449), - [sym_do_statement] = STATE(449), - [sym_for_statement] = STATE(449), - [sym_return_statement] = STATE(449), - [sym_break_statement] = STATE(449), - [sym_continue_statement] = STATE(449), - [sym_goto_statement] = STATE(449), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [420] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(402), + [sym_attributed_statement] = STATE(402), + [sym_labeled_statement] = STATE(402), + [sym_expression_statement] = STATE(402), + [sym_if_statement] = STATE(402), + [sym_switch_statement] = STATE(402), + [sym_case_statement] = STATE(402), + [sym_while_statement] = STATE(402), + [sym_do_statement] = STATE(402), + [sym_for_statement] = STATE(402), + [sym_return_statement] = STATE(402), + [sym_break_statement] = STATE(402), + [sym_continue_statement] = STATE(402), + [sym_goto_statement] = STATE(402), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56528,20 +56458,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56566,46 +56496,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(1882), - [sym_attributed_statement] = STATE(1882), - [sym_labeled_statement] = STATE(1882), - [sym_expression_statement] = STATE(1882), - [sym_if_statement] = STATE(1882), - [sym_switch_statement] = STATE(1882), - [sym_case_statement] = STATE(1882), - [sym_while_statement] = STATE(1882), - [sym_do_statement] = STATE(1882), - [sym_for_statement] = STATE(1882), - [sym_return_statement] = STATE(1882), - [sym_break_statement] = STATE(1882), - [sym_continue_statement] = STATE(1882), - [sym_goto_statement] = STATE(1882), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), + [421] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(266), + [sym_attributed_statement] = STATE(266), + [sym_labeled_statement] = STATE(266), + [sym_expression_statement] = STATE(266), + [sym_if_statement] = STATE(266), + [sym_switch_statement] = STATE(266), + [sym_case_statement] = STATE(266), + [sym_while_statement] = STATE(266), + [sym_do_statement] = STATE(266), + [sym_for_statement] = STATE(266), + [sym_return_statement] = STATE(266), + [sym_break_statement] = STATE(266), + [sym_continue_statement] = STATE(266), + [sym_goto_statement] = STATE(266), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -56614,20 +56544,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56652,47 +56582,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [423] = { - [sym_attribute_declaration] = STATE(406), - [sym_compound_statement] = STATE(105), - [sym_attributed_statement] = STATE(105), - [sym_labeled_statement] = STATE(105), - [sym_expression_statement] = STATE(105), - [sym_if_statement] = STATE(105), - [sym_switch_statement] = STATE(105), - [sym_case_statement] = STATE(105), - [sym_while_statement] = STATE(105), - [sym_do_statement] = STATE(105), - [sym_for_statement] = STATE(105), - [sym_return_statement] = STATE(105), - [sym_break_statement] = STATE(105), - [sym_continue_statement] = STATE(105), - [sym_goto_statement] = STATE(105), - [sym__expression] = STATE(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [422] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(268), + [sym_attributed_statement] = STATE(268), + [sym_labeled_statement] = STATE(268), + [sym_expression_statement] = STATE(268), + [sym_if_statement] = STATE(268), + [sym_switch_statement] = STATE(268), + [sym_case_statement] = STATE(268), + [sym_while_statement] = STATE(268), + [sym_do_statement] = STATE(268), + [sym_for_statement] = STATE(268), + [sym_return_statement] = STATE(268), + [sym_break_statement] = STATE(268), + [sym_continue_statement] = STATE(268), + [sym_goto_statement] = STATE(268), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56700,20 +56630,20 @@ 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_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56738,133 +56668,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(424), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1662), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_switch] = ACTIONS(1671), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1677), - [anon_sym_while] = ACTIONS(1680), - [anon_sym_do] = ACTIONS(1683), - [anon_sym_for] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1689), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1695), - [anon_sym_goto] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1532), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym___asm__] = ACTIONS(1535), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_L_SQUOTE] = ACTIONS(1541), - [anon_sym_u_SQUOTE] = ACTIONS(1541), - [anon_sym_U_SQUOTE] = ACTIONS(1541), - [anon_sym_u8_SQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [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(1547), - [sym_false] = ACTIONS(1547), - [anon_sym_NULL] = ACTIONS(1550), - [anon_sym_nullptr] = ACTIONS(1550), - [sym_comment] = ACTIONS(3), - }, - [425] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(403), - [sym_attributed_statement] = STATE(403), - [sym_labeled_statement] = STATE(403), - [sym_expression_statement] = STATE(403), - [sym_if_statement] = STATE(403), - [sym_switch_statement] = STATE(403), - [sym_case_statement] = STATE(403), - [sym_while_statement] = STATE(403), - [sym_do_statement] = STATE(403), - [sym_for_statement] = STATE(403), - [sym_return_statement] = STATE(403), - [sym_break_statement] = STATE(403), - [sym_continue_statement] = STATE(403), - [sym_goto_statement] = STATE(403), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [423] = { + [sym_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -56872,20 +56716,20 @@ 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(1052), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -56910,476 +56754,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(351), - [sym_compound_statement] = STATE(407), - [sym_attributed_statement] = STATE(407), - [sym_labeled_statement] = STATE(407), - [sym_expression_statement] = STATE(407), - [sym_if_statement] = STATE(407), - [sym_switch_statement] = STATE(407), - [sym_case_statement] = STATE(407), - [sym_while_statement] = STATE(407), - [sym_do_statement] = STATE(407), - [sym_for_statement] = STATE(407), - [sym_return_statement] = STATE(407), - [sym_break_statement] = STATE(407), - [sym_continue_statement] = STATE(407), - [sym_goto_statement] = STATE(407), - [sym__expression] = STATE(1014), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1691), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1574), + [424] = { + [sym_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = 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(1052), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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), - }, - [427] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = 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), - }, - [428] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = 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), - }, - [429] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), - }, - [430] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1224), - [anon_sym_unsigned] = ACTIONS(1224), - [anon_sym_long] = ACTIONS(1224), - [anon_sym_short] = 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), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), + [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), }, - [431] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(1864), - [sym_attributed_statement] = STATE(1864), - [sym_labeled_statement] = STATE(1864), - [sym_expression_statement] = STATE(1864), - [sym_if_statement] = STATE(1864), - [sym_switch_statement] = STATE(1864), - [sym_case_statement] = STATE(1864), - [sym_while_statement] = STATE(1864), - [sym_do_statement] = STATE(1864), - [sym_for_statement] = STATE(1864), - [sym_return_statement] = STATE(1864), - [sym_break_statement] = STATE(1864), - [sym_continue_statement] = STATE(1864), - [sym_goto_statement] = STATE(1864), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), + [425] = { + [sym_attribute_declaration] = STATE(432), + [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(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -57388,20 +56888,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57426,132 +56926,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [432] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1232), - [anon_sym_unsigned] = ACTIONS(1232), - [anon_sym_long] = ACTIONS(1232), - [anon_sym_short] = 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), + [426] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(282), + [sym_attributed_statement] = STATE(282), + [sym_labeled_statement] = STATE(282), + [sym_expression_statement] = STATE(282), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(282), + [sym_case_statement] = STATE(282), + [sym_while_statement] = STATE(282), + [sym_do_statement] = STATE(282), + [sym_for_statement] = STATE(282), + [sym_return_statement] = STATE(282), + [sym_break_statement] = STATE(282), + [sym_continue_statement] = STATE(282), + [sym_goto_statement] = STATE(282), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), + [sym_identifier] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), + [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(258), - [sym_compound_statement] = STATE(1885), - [sym_attributed_statement] = STATE(1885), - [sym_labeled_statement] = STATE(1885), - [sym_expression_statement] = STATE(1885), - [sym_if_statement] = STATE(1885), - [sym_switch_statement] = STATE(1885), - [sym_case_statement] = STATE(1885), - [sym_while_statement] = STATE(1885), - [sym_do_statement] = STATE(1885), - [sym_for_statement] = STATE(1885), - [sym_return_statement] = STATE(1885), - [sym_break_statement] = STATE(1885), - [sym_continue_statement] = STATE(1885), - [sym_goto_statement] = STATE(1885), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), + [427] = { + [sym_attribute_declaration] = STATE(432), + [sym_compound_statement] = STATE(283), + [sym_attributed_statement] = STATE(283), + [sym_labeled_statement] = STATE(283), + [sym_expression_statement] = STATE(283), + [sym_if_statement] = STATE(283), + [sym_switch_statement] = STATE(283), + [sym_case_statement] = STATE(283), + [sym_while_statement] = STATE(283), + [sym_do_statement] = STATE(283), + [sym_for_statement] = STATE(283), + [sym_return_statement] = STATE(283), + [sym_break_statement] = STATE(283), + [sym_continue_statement] = STATE(283), + [sym_goto_statement] = STATE(283), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(432), [sym_identifier] = ACTIONS(1456), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -57560,20 +57060,20 @@ 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(454), + [anon_sym_SEMI] = ACTIONS(587), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -57598,391 +57098,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [434] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1240), - [anon_sym_unsigned] = ACTIONS(1240), - [anon_sym_long] = ACTIONS(1240), - [anon_sym_short] = 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), + [428] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(448), + [sym_attributed_statement] = STATE(448), + [sym_labeled_statement] = STATE(448), + [sym_expression_statement] = STATE(448), + [sym_if_statement] = STATE(448), + [sym_switch_statement] = STATE(448), + [sym_case_statement] = STATE(448), + [sym_while_statement] = STATE(448), + [sym_do_statement] = STATE(448), + [sym_for_statement] = STATE(448), + [sym_return_statement] = STATE(448), + [sym_break_statement] = STATE(448), + [sym_continue_statement] = STATE(448), + [sym_goto_statement] = STATE(448), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), }, - [435] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), + [429] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(446), + [sym_attributed_statement] = STATE(446), + [sym_labeled_statement] = STATE(446), + [sym_expression_statement] = STATE(446), + [sym_if_statement] = STATE(446), + [sym_switch_statement] = STATE(446), + [sym_case_statement] = STATE(446), + [sym_while_statement] = STATE(446), + [sym_do_statement] = STATE(446), + [sym_for_statement] = STATE(446), + [sym_return_statement] = STATE(446), + [sym_break_statement] = STATE(446), + [sym_continue_statement] = STATE(446), + [sym_goto_statement] = STATE(446), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), }, - [436] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), + [430] = { + [sym_attribute_declaration] = STATE(372), + [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(1075), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1944), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1657), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(1454), + [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), }, - [437] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = 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), + [431] = { + [sym_attribute_declaration] = STATE(366), + [sym_compound_statement] = STATE(1844), + [sym_attributed_statement] = STATE(1844), + [sym_labeled_statement] = STATE(1844), + [sym_expression_statement] = STATE(1844), + [sym_if_statement] = STATE(1844), + [sym_switch_statement] = STATE(1844), + [sym_case_statement] = STATE(1844), + [sym_while_statement] = STATE(1844), + [sym_do_statement] = STATE(1844), + [sym_for_statement] = STATE(1844), + [sym_return_statement] = STATE(1844), + [sym_break_statement] = STATE(1844), + [sym_continue_statement] = STATE(1844), + [sym_goto_statement] = STATE(1844), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(39), + [anon_sym_if] = ACTIONS(1150), + [anon_sym_switch] = ACTIONS(57), + [anon_sym_case] = ACTIONS(1460), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1152), + [anon_sym_do] = ACTIONS(65), + [anon_sym_for] = ACTIONS(1154), + [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), }, - [438] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(420), - [sym_attributed_statement] = STATE(420), - [sym_labeled_statement] = STATE(420), - [sym_expression_statement] = STATE(420), - [sym_if_statement] = STATE(420), - [sym_switch_statement] = STATE(420), - [sym_case_statement] = STATE(420), - [sym_while_statement] = STATE(420), - [sym_do_statement] = STATE(420), - [sym_for_statement] = STATE(420), - [sym_return_statement] = STATE(420), - [sym_break_statement] = STATE(420), - [sym_continue_statement] = STATE(420), - [sym_goto_statement] = STATE(420), + [432] = { + [sym_attribute_declaration] = STATE(404), + [sym_compound_statement] = STATE(270), + [sym_attributed_statement] = STATE(270), + [sym_labeled_statement] = STATE(270), + [sym_expression_statement] = STATE(270), + [sym_if_statement] = STATE(270), + [sym_switch_statement] = STATE(270), + [sym_case_statement] = STATE(270), + [sym_while_statement] = STATE(270), + [sym_do_statement] = STATE(270), + [sym_for_statement] = STATE(270), + [sym_return_statement] = STATE(270), + [sym_break_statement] = STATE(270), + [sym_continue_statement] = STATE(270), + [sym_goto_statement] = STATE(270), + [sym__expression] = STATE(1083), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1813), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(404), + [sym_identifier] = ACTIONS(1456), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_switch] = ACTIONS(597), + [anon_sym_case] = ACTIONS(599), + [anon_sym_default] = ACTIONS(601), + [anon_sym_while] = ACTIONS(603), + [anon_sym_do] = ACTIONS(605), + [anon_sym_for] = ACTIONS(607), + [anon_sym_return] = ACTIONS(609), + [anon_sym_break] = ACTIONS(611), + [anon_sym_continue] = ACTIONS(613), + [anon_sym_goto] = ACTIONS(615), + [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(301), + [sym_compound_statement] = STATE(444), + [sym_attributed_statement] = STATE(444), + [sym_labeled_statement] = STATE(444), + [sym_expression_statement] = STATE(444), + [sym_if_statement] = STATE(444), + [sym_switch_statement] = STATE(444), + [sym_case_statement] = STATE(444), + [sym_while_statement] = STATE(444), + [sym_do_statement] = STATE(444), + [sym_for_statement] = STATE(444), + [sym_return_statement] = STATE(444), + [sym_break_statement] = STATE(444), + [sym_continue_statement] = STATE(444), + [sym_goto_statement] = STATE(444), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57990,20 +57576,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(460), + [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), @@ -58028,133 +57614,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [439] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = 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), + [434] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), + }, + [435] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1196), + [anon_sym_unsigned] = ACTIONS(1196), + [anon_sym_long] = ACTIONS(1196), + [anon_sym_short] = 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), + }, + [436] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1304), + [anon_sym_unsigned] = ACTIONS(1304), + [anon_sym_long] = ACTIONS(1304), + [anon_sym_short] = 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), }, - [440] = { - [sym_attribute_declaration] = STATE(258), - [sym_compound_statement] = STATE(1903), - [sym_attributed_statement] = STATE(1903), - [sym_labeled_statement] = STATE(1903), - [sym_expression_statement] = STATE(1903), - [sym_if_statement] = STATE(1903), - [sym_switch_statement] = STATE(1903), - [sym_case_statement] = STATE(1903), - [sym_while_statement] = STATE(1903), - [sym_do_statement] = STATE(1903), - [sym_for_statement] = STATE(1903), - [sym_return_statement] = STATE(1903), - [sym_break_statement] = STATE(1903), - [sym_continue_statement] = STATE(1903), - [sym_goto_statement] = STATE(1903), - [sym__expression] = STATE(1068), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1888), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(258), - [sym_identifier] = ACTIONS(1456), + [437] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(436), + [sym_attributed_statement] = STATE(436), + [sym_labeled_statement] = STATE(436), + [sym_expression_statement] = STATE(436), + [sym_if_statement] = STATE(436), + [sym_switch_statement] = STATE(436), + [sym_case_statement] = STATE(436), + [sym_while_statement] = STATE(436), + [sym_do_statement] = STATE(436), + [sym_for_statement] = STATE(436), + [sym_return_statement] = STATE(436), + [sym_break_statement] = STATE(436), + [sym_continue_statement] = STATE(436), + [sym_goto_statement] = STATE(436), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58164,18 +57922,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_switch] = ACTIONS(57), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1152), - [anon_sym_do] = ACTIONS(65), - [anon_sym_for] = ACTIONS(1154), - [anon_sym_return] = ACTIONS(69), - [anon_sym_break] = ACTIONS(71), - [anon_sym_continue] = ACTIONS(73), - [anon_sym_goto] = ACTIONS(75), + [anon_sym_LBRACE] = ACTIONS(460), + [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), @@ -58200,305 +57958,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_attribute_declaration] = STATE(441), - [sym_compound_statement] = STATE(365), - [sym_attributed_statement] = STATE(365), - [sym_labeled_statement] = STATE(365), - [sym_expression_statement] = STATE(365), - [sym_if_statement] = STATE(365), - [sym_switch_statement] = STATE(365), - [sym_case_statement] = STATE(365), - [sym_while_statement] = STATE(365), - [sym_do_statement] = STATE(365), - [sym_for_statement] = STATE(365), - [sym_return_statement] = STATE(365), - [sym_break_statement] = STATE(365), - [sym_continue_statement] = STATE(365), - [sym_goto_statement] = STATE(365), - [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(441), - [sym_identifier] = ACTIONS(1701), - [anon_sym_LPAREN2] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1472), - [anon_sym_TILDE] = ACTIONS(1472), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1713), - [anon_sym_case] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1719), - [anon_sym_while] = ACTIONS(1722), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1731), - [anon_sym_break] = ACTIONS(1734), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_goto] = ACTIONS(1740), - [anon_sym_DASH_DASH] = ACTIONS(1523), - [anon_sym_PLUS_PLUS] = ACTIONS(1523), - [anon_sym_sizeof] = ACTIONS(1526), - [anon_sym_offsetof] = ACTIONS(1529), - [anon_sym__Generic] = ACTIONS(1532), - [anon_sym_asm] = ACTIONS(1535), - [anon_sym___asm__] = ACTIONS(1535), - [sym_number_literal] = ACTIONS(1538), - [anon_sym_L_SQUOTE] = ACTIONS(1541), - [anon_sym_u_SQUOTE] = ACTIONS(1541), - [anon_sym_U_SQUOTE] = ACTIONS(1541), - [anon_sym_u8_SQUOTE] = ACTIONS(1541), - [anon_sym_SQUOTE] = ACTIONS(1541), - [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(1547), - [sym_false] = ACTIONS(1547), - [anon_sym_NULL] = ACTIONS(1550), - [anon_sym_nullptr] = ACTIONS(1550), + [438] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1300), + [anon_sym_unsigned] = ACTIONS(1300), + [anon_sym_long] = ACTIONS(1300), + [anon_sym_short] = 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), }, - [442] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1212), - [anon_sym_unsigned] = ACTIONS(1212), - [anon_sym_long] = ACTIONS(1212), - [anon_sym_short] = 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), + [439] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1296), + [anon_sym_unsigned] = ACTIONS(1296), + [anon_sym_long] = ACTIONS(1296), + [anon_sym_short] = 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), }, - [443] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = 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), + [440] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [444] = { - [sym_attribute_declaration] = STATE(364), - [sym_compound_statement] = STATE(217), - [sym_attributed_statement] = STATE(217), - [sym_labeled_statement] = STATE(217), - [sym_expression_statement] = STATE(217), - [sym_if_statement] = STATE(217), - [sym_switch_statement] = STATE(217), - [sym_case_statement] = STATE(217), - [sym_while_statement] = STATE(217), - [sym_do_statement] = STATE(217), - [sym_for_statement] = STATE(217), - [sym_return_statement] = STATE(217), - [sym_break_statement] = STATE(217), - [sym_continue_statement] = STATE(217), - [sym_goto_statement] = STATE(217), + [441] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1288), + [anon_sym_unsigned] = ACTIONS(1288), + [anon_sym_long] = ACTIONS(1288), + [anon_sym_short] = ACTIONS(1288), + [sym_primitive_type] = ACTIONS(1288), + [anon_sym_enum] = ACTIONS(1288), + [anon_sym_struct] = ACTIONS(1288), + [anon_sym_union] = ACTIONS(1288), + [anon_sym_if] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1288), + [anon_sym_switch] = ACTIONS(1288), + [anon_sym_case] = ACTIONS(1288), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_while] = ACTIONS(1288), + [anon_sym_do] = ACTIONS(1288), + [anon_sym_for] = ACTIONS(1288), + [anon_sym_return] = ACTIONS(1288), + [anon_sym_break] = ACTIONS(1288), + [anon_sym_continue] = ACTIONS(1288), + [anon_sym_goto] = ACTIONS(1288), + [anon_sym_DASH_DASH] = ACTIONS(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_comment] = ACTIONS(3), + }, + [442] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(438), + [sym_attributed_statement] = STATE(438), + [sym_labeled_statement] = STATE(438), + [sym_expression_statement] = STATE(438), + [sym_if_statement] = STATE(438), + [sym_switch_statement] = STATE(438), + [sym_case_statement] = STATE(438), + [sym_while_statement] = STATE(438), + [sym_do_statement] = STATE(438), + [sym_for_statement] = STATE(438), + [sym_return_statement] = STATE(438), + [sym_break_statement] = STATE(438), + [sym_continue_statement] = STATE(438), + [sym_goto_statement] = STATE(438), [sym__expression] = STATE(1052), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1925), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1576), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58506,20 +58350,20 @@ 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(577), + [anon_sym_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_switch] = ACTIONS(587), - [anon_sym_case] = ACTIONS(589), - [anon_sym_default] = ACTIONS(591), - [anon_sym_while] = ACTIONS(593), - [anon_sym_do] = ACTIONS(595), - [anon_sym_for] = ACTIONS(597), - [anon_sym_return] = ACTIONS(599), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(603), - [anon_sym_goto] = ACTIONS(605), + [anon_sym_LBRACE] = ACTIONS(460), + [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), @@ -58544,219 +58388,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [445] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1228), - [anon_sym_unsigned] = ACTIONS(1228), - [anon_sym_long] = ACTIONS(1228), - [anon_sym_short] = 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), - }, - [446] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1220), - [anon_sym_unsigned] = ACTIONS(1220), - [anon_sym_long] = ACTIONS(1220), - [anon_sym_short] = 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), - }, - [447] = { - [sym_attribute_declaration] = STATE(406), - [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(1062), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1711), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [aux_sym_attributed_declarator_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1452), + [443] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(439), + [sym_attributed_statement] = STATE(439), + [sym_labeled_statement] = STATE(439), + [sym_expression_statement] = STATE(439), + [sym_if_statement] = STATE(439), + [sym_switch_statement] = STATE(439), + [sym_case_statement] = STATE(439), + [sym_while_statement] = STATE(439), + [sym_do_statement] = STATE(439), + [sym_for_statement] = STATE(439), + [sym_return_statement] = STATE(439), + [sym_break_statement] = STATE(439), + [sym_continue_statement] = STATE(439), + [sym_goto_statement] = STATE(439), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58764,20 +58436,20 @@ 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_SEMI] = ACTIONS(454), [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [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_LBRACE] = ACTIONS(460), + [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), @@ -58802,1116 +58474,1120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [448] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), - }, - [449] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1236), - [anon_sym_unsigned] = ACTIONS(1236), - [anon_sym_long] = ACTIONS(1236), - [anon_sym_short] = 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), + [444] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1284), + [anon_sym_unsigned] = ACTIONS(1284), + [anon_sym_long] = ACTIONS(1284), + [anon_sym_short] = 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), }, - [450] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1252), - [anon_sym_unsigned] = ACTIONS(1252), - [anon_sym_long] = ACTIONS(1252), - [anon_sym_short] = 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), + [445] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(440), + [sym_attributed_statement] = STATE(440), + [sym_labeled_statement] = STATE(440), + [sym_expression_statement] = STATE(440), + [sym_if_statement] = STATE(440), + [sym_switch_statement] = STATE(440), + [sym_case_statement] = STATE(440), + [sym_while_statement] = STATE(440), + [sym_do_statement] = STATE(440), + [sym_for_statement] = STATE(440), + [sym_return_statement] = STATE(440), + [sym_break_statement] = STATE(440), + [sym_continue_statement] = STATE(440), + [sym_goto_statement] = STATE(440), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), }, - [451] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1204), - [anon_sym_unsigned] = ACTIONS(1204), - [anon_sym_long] = ACTIONS(1204), - [anon_sym_short] = 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), + [446] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1280), + [anon_sym_unsigned] = ACTIONS(1280), + [anon_sym_long] = ACTIONS(1280), + [anon_sym_short] = 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), }, - [452] = { - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [447] = { + [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_RBRACE] = ACTIONS(1270), + [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_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), + [anon_sym_signed] = ACTIONS(1268), + [anon_sym_unsigned] = ACTIONS(1268), + [anon_sym_long] = ACTIONS(1268), + [anon_sym_short] = 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_comment] = ACTIONS(3), }, - [453] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = 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_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), + [448] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1276), + [anon_sym_unsigned] = ACTIONS(1276), + [anon_sym_long] = ACTIONS(1276), + [anon_sym_short] = 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), }, - [454] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [449] = { + [sym_attribute_declaration] = STATE(301), + [sym_compound_statement] = STATE(441), + [sym_attributed_statement] = STATE(441), + [sym_labeled_statement] = STATE(441), + [sym_expression_statement] = STATE(441), + [sym_if_statement] = STATE(441), + [sym_switch_statement] = STATE(441), + [sym_case_statement] = STATE(441), + [sym_while_statement] = STATE(441), + [sym_do_statement] = STATE(441), + [sym_for_statement] = STATE(441), + [sym_return_statement] = STATE(441), + [sym_break_statement] = STATE(441), + [sym_continue_statement] = STATE(441), + [sym_goto_statement] = STATE(441), + [sym__expression] = STATE(1052), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1765), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [aux_sym_attributed_declarator_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = 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(454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(460), + [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), }, - [455] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [450] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1272), + [anon_sym_unsigned] = ACTIONS(1272), + [anon_sym_long] = ACTIONS(1272), + [anon_sym_short] = 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), }, - [456] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = 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_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), + [451] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1336), + [anon_sym_unsigned] = ACTIONS(1336), + [anon_sym_long] = ACTIONS(1336), + [anon_sym_short] = 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), + }, + [452] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = 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), }, - [457] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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), + [453] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = 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), }, - [458] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = 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), + [454] = { + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token2] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [459] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token2] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [455] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = 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), }, - [460] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = 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), + [456] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = 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), }, - [461] = { + [457] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -59996,7 +59672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [462] = { + [458] = { [sym_identifier] = ACTIONS(1426), [aux_sym_preproc_include_token1] = ACTIONS(1426), [aux_sym_preproc_def_token1] = ACTIONS(1426), @@ -60081,92 +59757,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1426), [sym_comment] = ACTIONS(3), }, - [463] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = 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), + [459] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = 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_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), }, - [464] = { + [460] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = 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), + }, + [461] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = 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), + }, + [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_if_token2] = 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_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_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), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = 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_identifier] = ACTIONS(1430), [aux_sym_preproc_include_token1] = ACTIONS(1430), [aux_sym_preproc_def_token1] = ACTIONS(1430), @@ -60251,181 +60182,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1430), [sym_comment] = ACTIONS(3), }, - [465] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token2] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [466] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = 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), + [464] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = 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), }, - [467] = { + [465] = { [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), @@ -60449,7 +60296,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1364), [anon_sym___vectorcall] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), [anon_sym_static] = ACTIONS(1364), [anon_sym_auto] = ACTIONS(1364), [anon_sym_register] = ACTIONS(1364), @@ -60476,466 +60322,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [468] = { - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_SEMI] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), - [sym_comment] = ACTIONS(3), - }, - [469] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [470] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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), + [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), }, - [471] = { - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_SEMI] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), + [466] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = 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), }, - [472] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = 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), + [467] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = 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_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_comment] = ACTIONS(3), }, - [473] = { + [468] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = 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), + }, + [469] = { [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), @@ -60959,7 +60636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1406), [anon_sym___vectorcall] = ACTIONS(1406), [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), [anon_sym_static] = ACTIONS(1406), [anon_sym_auto] = ACTIONS(1406), [anon_sym_register] = ACTIONS(1406), @@ -61016,92 +60692,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [474] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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), + [470] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = 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), + }, + [471] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = 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), + }, + [472] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = 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), + }, + [473] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = 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), }, - [475] = { + [474] = { [sym_identifier] = ACTIONS(1422), [aux_sym_preproc_include_token1] = ACTIONS(1422), [aux_sym_preproc_def_token1] = ACTIONS(1422), @@ -61186,1032 +61117,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1422), [sym_comment] = ACTIONS(3), }, - [476] = { - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token2] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), - [sym_comment] = ACTIONS(3), - }, - [477] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1356), - [anon_sym_unsigned] = ACTIONS(1356), - [anon_sym_long] = ACTIONS(1356), - [anon_sym_short] = 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), - }, - [478] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1364), - [anon_sym_unsigned] = ACTIONS(1364), - [anon_sym_long] = ACTIONS(1364), - [anon_sym_short] = 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), - }, - [479] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = 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), - }, - [480] = { - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token2] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_SEMI] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - }, - [481] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = 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), - }, - [482] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = 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_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), - }, - [483] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [484] = { - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token2] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_SEMI] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), - [sym_comment] = ACTIONS(3), - }, - [485] = { - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token2] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), + [475] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = 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), }, - [486] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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), + [476] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = 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), }, - [487] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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), + [477] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = 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_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_comment] = ACTIONS(3), }, - [488] = { + [478] = { [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), [aux_sym_preproc_def_token1] = ACTIONS(1394), [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token2] = ACTIONS(1394), [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), [sym_preproc_directive] = ACTIONS(1394), @@ -62235,6 +61400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1394), [anon_sym___vectorcall] = ACTIONS(1394), [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_RBRACE] = ACTIONS(1396), [anon_sym_static] = ACTIONS(1394), [anon_sym_auto] = ACTIONS(1394), [anon_sym_register] = ACTIONS(1394), @@ -62291,853 +61457,857 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [489] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = 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), - }, - [490] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = 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), + [479] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = 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), }, - [491] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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), + [480] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1364), + [anon_sym_unsigned] = ACTIONS(1364), + [anon_sym_long] = ACTIONS(1364), + [anon_sym_short] = 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), }, - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = 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), + [481] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = 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), }, - [493] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1348), - [anon_sym_unsigned] = ACTIONS(1348), - [anon_sym_long] = ACTIONS(1348), - [anon_sym_short] = 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_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), + [482] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = 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), + }, + [483] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = 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), }, - [494] = { - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [aux_sym_preproc_include_token1] = ACTIONS(1745), - [aux_sym_preproc_def_token1] = ACTIONS(1745), - [aux_sym_preproc_if_token1] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1745), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1745), - [sym_preproc_directive] = ACTIONS(1745), - [anon_sym_LPAREN2] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_TILDE] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1745), - [anon_sym_PLUS] = ACTIONS(1745), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_typedef] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym___attribute__] = ACTIONS(1745), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1743), - [anon_sym___declspec] = ACTIONS(1745), - [anon_sym___cdecl] = ACTIONS(1745), - [anon_sym___clrcall] = ACTIONS(1745), - [anon_sym___stdcall] = ACTIONS(1745), - [anon_sym___fastcall] = ACTIONS(1745), - [anon_sym___thiscall] = ACTIONS(1745), - [anon_sym___vectorcall] = ACTIONS(1745), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_auto] = ACTIONS(1745), - [anon_sym_register] = ACTIONS(1745), - [anon_sym_inline] = ACTIONS(1745), - [anon_sym_thread_local] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_constexpr] = ACTIONS(1745), - [anon_sym_volatile] = ACTIONS(1745), - [anon_sym_restrict] = ACTIONS(1745), - [anon_sym___restrict__] = ACTIONS(1745), - [anon_sym__Atomic] = ACTIONS(1745), - [anon_sym__Noreturn] = ACTIONS(1745), - [anon_sym_noreturn] = ACTIONS(1745), - [anon_sym_signed] = ACTIONS(1745), - [anon_sym_unsigned] = ACTIONS(1745), - [anon_sym_long] = ACTIONS(1745), - [anon_sym_short] = ACTIONS(1745), - [sym_primitive_type] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_switch] = ACTIONS(1745), - [anon_sym_case] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_do] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_goto] = ACTIONS(1745), - [anon_sym_DASH_DASH] = ACTIONS(1743), - [anon_sym_PLUS_PLUS] = ACTIONS(1743), - [anon_sym_sizeof] = ACTIONS(1745), - [anon_sym_offsetof] = ACTIONS(1745), - [anon_sym__Generic] = ACTIONS(1745), - [anon_sym_asm] = ACTIONS(1745), - [anon_sym___asm__] = ACTIONS(1745), - [sym_number_literal] = ACTIONS(1743), - [anon_sym_L_SQUOTE] = ACTIONS(1743), - [anon_sym_u_SQUOTE] = ACTIONS(1743), - [anon_sym_U_SQUOTE] = ACTIONS(1743), - [anon_sym_u8_SQUOTE] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1743), - [anon_sym_L_DQUOTE] = ACTIONS(1743), - [anon_sym_u_DQUOTE] = ACTIONS(1743), - [anon_sym_U_DQUOTE] = ACTIONS(1743), - [anon_sym_u8_DQUOTE] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1743), - [sym_true] = ACTIONS(1745), - [sym_false] = ACTIONS(1745), - [anon_sym_NULL] = ACTIONS(1745), - [anon_sym_nullptr] = ACTIONS(1745), + [484] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = 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), }, - [495] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1360), - [anon_sym_unsigned] = ACTIONS(1360), - [anon_sym_long] = ACTIONS(1360), - [anon_sym_short] = 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), + [485] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = 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), }, - [496] = { - [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_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_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_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), - [anon_sym_signed] = ACTIONS(1352), - [anon_sym_unsigned] = ACTIONS(1352), - [anon_sym_long] = ACTIONS(1352), - [anon_sym_short] = 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_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), + [486] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = 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), }, - [497] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_identifier] = ACTIONS(1378), - [aux_sym_preproc_include_token1] = ACTIONS(1378), - [aux_sym_preproc_def_token1] = ACTIONS(1378), - [aux_sym_preproc_if_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1378), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1378), - [sym_preproc_directive] = ACTIONS(1378), - [anon_sym_LPAREN2] = ACTIONS(1380), - [anon_sym_BANG] = ACTIONS(1380), - [anon_sym_TILDE] = ACTIONS(1380), - [anon_sym_DASH] = ACTIONS(1378), - [anon_sym_PLUS] = ACTIONS(1378), - [anon_sym_STAR] = ACTIONS(1380), - [anon_sym_AMP] = ACTIONS(1380), - [anon_sym_typedef] = ACTIONS(1378), - [anon_sym_extern] = ACTIONS(1378), - [anon_sym___attribute__] = ACTIONS(1378), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1380), - [anon_sym___declspec] = ACTIONS(1378), - [anon_sym___cdecl] = ACTIONS(1378), - [anon_sym___clrcall] = ACTIONS(1378), - [anon_sym___stdcall] = ACTIONS(1378), - [anon_sym___fastcall] = ACTIONS(1378), - [anon_sym___thiscall] = ACTIONS(1378), - [anon_sym___vectorcall] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1380), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym_const] = ACTIONS(1378), - [anon_sym_constexpr] = ACTIONS(1378), - [anon_sym_volatile] = ACTIONS(1378), - [anon_sym_restrict] = ACTIONS(1378), - [anon_sym___restrict__] = ACTIONS(1378), - [anon_sym__Atomic] = ACTIONS(1378), - [anon_sym__Noreturn] = ACTIONS(1378), - [anon_sym_noreturn] = ACTIONS(1378), - [anon_sym_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [sym_primitive_type] = ACTIONS(1378), - [anon_sym_enum] = ACTIONS(1378), - [anon_sym_struct] = ACTIONS(1378), - [anon_sym_union] = ACTIONS(1378), - [anon_sym_if] = ACTIONS(1378), - [anon_sym_switch] = ACTIONS(1378), - [anon_sym_case] = ACTIONS(1378), - [anon_sym_default] = ACTIONS(1378), - [anon_sym_while] = ACTIONS(1378), - [anon_sym_do] = ACTIONS(1378), - [anon_sym_for] = ACTIONS(1378), - [anon_sym_return] = ACTIONS(1378), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_goto] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym_offsetof] = ACTIONS(1378), - [anon_sym__Generic] = ACTIONS(1378), - [anon_sym_asm] = ACTIONS(1378), - [anon_sym___asm__] = ACTIONS(1378), - [sym_number_literal] = ACTIONS(1380), - [anon_sym_L_SQUOTE] = ACTIONS(1380), - [anon_sym_u_SQUOTE] = ACTIONS(1380), - [anon_sym_U_SQUOTE] = ACTIONS(1380), - [anon_sym_u8_SQUOTE] = ACTIONS(1380), - [anon_sym_SQUOTE] = ACTIONS(1380), - [anon_sym_L_DQUOTE] = ACTIONS(1380), - [anon_sym_u_DQUOTE] = ACTIONS(1380), - [anon_sym_U_DQUOTE] = ACTIONS(1380), - [anon_sym_u8_DQUOTE] = ACTIONS(1380), - [anon_sym_DQUOTE] = ACTIONS(1380), - [sym_true] = ACTIONS(1378), - [sym_false] = ACTIONS(1378), - [anon_sym_NULL] = ACTIONS(1378), - [anon_sym_nullptr] = ACTIONS(1378), + [487] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = 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), }, - [498] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1394), - [aux_sym_preproc_include_token1] = ACTIONS(1394), - [aux_sym_preproc_def_token1] = ACTIONS(1394), - [aux_sym_preproc_if_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), - [sym_preproc_directive] = ACTIONS(1394), - [anon_sym_LPAREN2] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1396), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1396), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym___attribute__] = ACTIONS(1394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), - [anon_sym___declspec] = ACTIONS(1394), - [anon_sym___cdecl] = ACTIONS(1394), - [anon_sym___clrcall] = ACTIONS(1394), - [anon_sym___stdcall] = ACTIONS(1394), - [anon_sym___fastcall] = ACTIONS(1394), - [anon_sym___thiscall] = ACTIONS(1394), - [anon_sym___vectorcall] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym_const] = ACTIONS(1394), - [anon_sym_constexpr] = ACTIONS(1394), - [anon_sym_volatile] = ACTIONS(1394), - [anon_sym_restrict] = ACTIONS(1394), - [anon_sym___restrict__] = ACTIONS(1394), - [anon_sym__Atomic] = ACTIONS(1394), - [anon_sym__Noreturn] = ACTIONS(1394), - [anon_sym_noreturn] = ACTIONS(1394), - [anon_sym_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [sym_primitive_type] = ACTIONS(1394), - [anon_sym_enum] = ACTIONS(1394), - [anon_sym_struct] = ACTIONS(1394), - [anon_sym_union] = ACTIONS(1394), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_while] = ACTIONS(1394), - [anon_sym_do] = ACTIONS(1394), - [anon_sym_for] = ACTIONS(1394), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_goto] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym_offsetof] = ACTIONS(1394), - [anon_sym__Generic] = ACTIONS(1394), - [anon_sym_asm] = ACTIONS(1394), - [anon_sym___asm__] = ACTIONS(1394), - [sym_number_literal] = ACTIONS(1396), - [anon_sym_L_SQUOTE] = ACTIONS(1396), - [anon_sym_u_SQUOTE] = ACTIONS(1396), - [anon_sym_U_SQUOTE] = ACTIONS(1396), - [anon_sym_u8_SQUOTE] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1396), - [anon_sym_L_DQUOTE] = ACTIONS(1396), - [anon_sym_u_DQUOTE] = ACTIONS(1396), - [anon_sym_U_DQUOTE] = ACTIONS(1396), - [anon_sym_u8_DQUOTE] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1396), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [anon_sym_NULL] = ACTIONS(1394), - [anon_sym_nullptr] = ACTIONS(1394), + [488] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = 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), }, - [499] = { - [ts_builtin_sym_end] = ACTIONS(1350), + [489] = { [sym_identifier] = ACTIONS(1348), [aux_sym_preproc_include_token1] = ACTIONS(1348), [aux_sym_preproc_def_token1] = ACTIONS(1348), @@ -63152,6 +62322,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -63164,6 +62335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1348), [anon_sym___vectorcall] = ACTIONS(1348), [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), [anon_sym_static] = ACTIONS(1348), [anon_sym_auto] = ACTIONS(1348), [anon_sym_register] = ACTIONS(1348), @@ -63220,8 +62392,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1348), [sym_comment] = ACTIONS(3), }, - [500] = { - [ts_builtin_sym_end] = ACTIONS(1358), + [490] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = 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), + }, + [491] = { [sym_identifier] = ACTIONS(1356), [aux_sym_preproc_include_token1] = ACTIONS(1356), [aux_sym_preproc_def_token1] = ACTIONS(1356), @@ -63236,6 +62492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -63248,6 +62505,7 @@ 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_static] = ACTIONS(1356), [anon_sym_auto] = ACTIONS(1356), [anon_sym_register] = ACTIONS(1356), @@ -63304,7 +62562,429 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1356), [sym_comment] = ACTIONS(3), }, - [501] = { + [492] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = 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), + }, + [493] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = 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), + }, + [494] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = 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), + }, + [495] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = 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), + }, + [496] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = 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), + }, + [497] = { [ts_builtin_sym_end] = ACTIONS(1404), [sym_identifier] = ACTIONS(1402), [aux_sym_preproc_include_token1] = ACTIONS(1402), @@ -63388,259 +63068,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [502] = { - [ts_builtin_sym_end] = ACTIONS(1372), - [sym_identifier] = ACTIONS(1370), - [aux_sym_preproc_include_token1] = ACTIONS(1370), - [aux_sym_preproc_def_token1] = ACTIONS(1370), - [aux_sym_preproc_if_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1370), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1370), - [sym_preproc_directive] = ACTIONS(1370), - [anon_sym_LPAREN2] = ACTIONS(1372), - [anon_sym_BANG] = ACTIONS(1372), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_typedef] = ACTIONS(1370), - [anon_sym_extern] = ACTIONS(1370), - [anon_sym___attribute__] = ACTIONS(1370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1372), - [anon_sym___declspec] = ACTIONS(1370), - [anon_sym___cdecl] = ACTIONS(1370), - [anon_sym___clrcall] = ACTIONS(1370), - [anon_sym___stdcall] = ACTIONS(1370), - [anon_sym___fastcall] = ACTIONS(1370), - [anon_sym___thiscall] = ACTIONS(1370), - [anon_sym___vectorcall] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym_const] = ACTIONS(1370), - [anon_sym_constexpr] = ACTIONS(1370), - [anon_sym_volatile] = ACTIONS(1370), - [anon_sym_restrict] = ACTIONS(1370), - [anon_sym___restrict__] = ACTIONS(1370), - [anon_sym__Atomic] = ACTIONS(1370), - [anon_sym__Noreturn] = ACTIONS(1370), - [anon_sym_noreturn] = ACTIONS(1370), - [anon_sym_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [sym_primitive_type] = ACTIONS(1370), - [anon_sym_enum] = ACTIONS(1370), - [anon_sym_struct] = ACTIONS(1370), - [anon_sym_union] = ACTIONS(1370), - [anon_sym_if] = ACTIONS(1370), - [anon_sym_switch] = ACTIONS(1370), - [anon_sym_case] = ACTIONS(1370), - [anon_sym_default] = ACTIONS(1370), - [anon_sym_while] = ACTIONS(1370), - [anon_sym_do] = ACTIONS(1370), - [anon_sym_for] = ACTIONS(1370), - [anon_sym_return] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1370), - [anon_sym_continue] = ACTIONS(1370), - [anon_sym_goto] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym_offsetof] = ACTIONS(1370), - [anon_sym__Generic] = ACTIONS(1370), - [anon_sym_asm] = ACTIONS(1370), - [anon_sym___asm__] = ACTIONS(1370), - [sym_number_literal] = ACTIONS(1372), - [anon_sym_L_SQUOTE] = ACTIONS(1372), - [anon_sym_u_SQUOTE] = ACTIONS(1372), - [anon_sym_U_SQUOTE] = ACTIONS(1372), - [anon_sym_u8_SQUOTE] = ACTIONS(1372), - [anon_sym_SQUOTE] = ACTIONS(1372), - [anon_sym_L_DQUOTE] = ACTIONS(1372), - [anon_sym_u_DQUOTE] = ACTIONS(1372), - [anon_sym_U_DQUOTE] = ACTIONS(1372), - [anon_sym_u8_DQUOTE] = ACTIONS(1372), - [anon_sym_DQUOTE] = ACTIONS(1372), - [sym_true] = ACTIONS(1370), - [sym_false] = ACTIONS(1370), - [anon_sym_NULL] = ACTIONS(1370), - [anon_sym_nullptr] = ACTIONS(1370), + [498] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1384), + [anon_sym_unsigned] = ACTIONS(1384), + [anon_sym_long] = ACTIONS(1384), + [anon_sym_short] = 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), }, - [503] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1426), - [anon_sym_unsigned] = ACTIONS(1426), - [anon_sym_long] = ACTIONS(1426), - [anon_sym_short] = 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), + [499] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1376), + [anon_sym_unsigned] = ACTIONS(1376), + [anon_sym_long] = ACTIONS(1376), + [anon_sym_short] = 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), }, - [504] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1430), - [anon_sym_unsigned] = ACTIONS(1430), - [anon_sym_long] = ACTIONS(1430), - [anon_sym_short] = 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), + [500] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = 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_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_comment] = ACTIONS(3), + }, + [501] = { + [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_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_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_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), + [anon_sym_signed] = ACTIONS(1348), + [anon_sym_unsigned] = ACTIONS(1348), + [anon_sym_long] = ACTIONS(1348), + [anon_sym_short] = 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_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), + }, + [502] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1360), + [anon_sym_unsigned] = ACTIONS(1360), + [anon_sym_long] = ACTIONS(1360), + [anon_sym_short] = 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), + }, + [503] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = 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), }, - [505] = { + [504] = { [ts_builtin_sym_end] = ACTIONS(1408), [sym_identifier] = ACTIONS(1406), [aux_sym_preproc_include_token1] = ACTIONS(1406), @@ -63724,88 +63656,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, + [505] = { + [ts_builtin_sym_end] = ACTIONS(1396), + [sym_identifier] = ACTIONS(1394), + [aux_sym_preproc_include_token1] = ACTIONS(1394), + [aux_sym_preproc_def_token1] = ACTIONS(1394), + [aux_sym_preproc_if_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1394), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1394), + [sym_preproc_directive] = ACTIONS(1394), + [anon_sym_LPAREN2] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_TILDE] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_typedef] = ACTIONS(1394), + [anon_sym_extern] = ACTIONS(1394), + [anon_sym___attribute__] = ACTIONS(1394), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1396), + [anon_sym___declspec] = ACTIONS(1394), + [anon_sym___cdecl] = ACTIONS(1394), + [anon_sym___clrcall] = ACTIONS(1394), + [anon_sym___stdcall] = ACTIONS(1394), + [anon_sym___fastcall] = ACTIONS(1394), + [anon_sym___thiscall] = ACTIONS(1394), + [anon_sym___vectorcall] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym_const] = ACTIONS(1394), + [anon_sym_constexpr] = ACTIONS(1394), + [anon_sym_volatile] = ACTIONS(1394), + [anon_sym_restrict] = ACTIONS(1394), + [anon_sym___restrict__] = ACTIONS(1394), + [anon_sym__Atomic] = ACTIONS(1394), + [anon_sym__Noreturn] = ACTIONS(1394), + [anon_sym_noreturn] = ACTIONS(1394), + [anon_sym_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [sym_primitive_type] = ACTIONS(1394), + [anon_sym_enum] = ACTIONS(1394), + [anon_sym_struct] = ACTIONS(1394), + [anon_sym_union] = ACTIONS(1394), + [anon_sym_if] = ACTIONS(1394), + [anon_sym_switch] = ACTIONS(1394), + [anon_sym_case] = ACTIONS(1394), + [anon_sym_default] = ACTIONS(1394), + [anon_sym_while] = ACTIONS(1394), + [anon_sym_do] = ACTIONS(1394), + [anon_sym_for] = ACTIONS(1394), + [anon_sym_return] = ACTIONS(1394), + [anon_sym_break] = ACTIONS(1394), + [anon_sym_continue] = ACTIONS(1394), + [anon_sym_goto] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym_offsetof] = ACTIONS(1394), + [anon_sym__Generic] = ACTIONS(1394), + [anon_sym_asm] = ACTIONS(1394), + [anon_sym___asm__] = ACTIONS(1394), + [sym_number_literal] = ACTIONS(1396), + [anon_sym_L_SQUOTE] = ACTIONS(1396), + [anon_sym_u_SQUOTE] = ACTIONS(1396), + [anon_sym_U_SQUOTE] = ACTIONS(1396), + [anon_sym_u8_SQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_L_DQUOTE] = ACTIONS(1396), + [anon_sym_u_DQUOTE] = ACTIONS(1396), + [anon_sym_U_DQUOTE] = ACTIONS(1396), + [anon_sym_u8_DQUOTE] = ACTIONS(1396), + [anon_sym_DQUOTE] = ACTIONS(1396), + [sym_true] = ACTIONS(1394), + [sym_false] = ACTIONS(1394), + [anon_sym_NULL] = ACTIONS(1394), + [anon_sym_nullptr] = ACTIONS(1394), + [sym_comment] = ACTIONS(3), + }, [506] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1422), - [anon_sym_unsigned] = ACTIONS(1422), - [anon_sym_long] = ACTIONS(1422), - [anon_sym_short] = 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), + [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_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_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), + [anon_sym_signed] = ACTIONS(1372), + [anon_sym_unsigned] = ACTIONS(1372), + [anon_sym_long] = ACTIONS(1372), + [anon_sym_short] = 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), }, [507] = { @@ -63893,174 +63909,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(1384), - [sym_identifier] = ACTIONS(1382), - [aux_sym_preproc_include_token1] = ACTIONS(1382), - [aux_sym_preproc_def_token1] = ACTIONS(1382), - [aux_sym_preproc_if_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1382), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1382), - [sym_preproc_directive] = ACTIONS(1382), - [anon_sym_LPAREN2] = ACTIONS(1384), - [anon_sym_BANG] = ACTIONS(1384), - [anon_sym_TILDE] = ACTIONS(1384), - [anon_sym_DASH] = ACTIONS(1382), - [anon_sym_PLUS] = ACTIONS(1382), - [anon_sym_STAR] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1384), - [anon_sym_typedef] = ACTIONS(1382), - [anon_sym_extern] = ACTIONS(1382), - [anon_sym___attribute__] = ACTIONS(1382), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1384), - [anon_sym___declspec] = ACTIONS(1382), - [anon_sym___cdecl] = ACTIONS(1382), - [anon_sym___clrcall] = ACTIONS(1382), - [anon_sym___stdcall] = ACTIONS(1382), - [anon_sym___fastcall] = ACTIONS(1382), - [anon_sym___thiscall] = ACTIONS(1382), - [anon_sym___vectorcall] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym_const] = ACTIONS(1382), - [anon_sym_constexpr] = ACTIONS(1382), - [anon_sym_volatile] = ACTIONS(1382), - [anon_sym_restrict] = ACTIONS(1382), - [anon_sym___restrict__] = ACTIONS(1382), - [anon_sym__Atomic] = ACTIONS(1382), - [anon_sym__Noreturn] = ACTIONS(1382), - [anon_sym_noreturn] = ACTIONS(1382), - [anon_sym_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [sym_primitive_type] = ACTIONS(1382), - [anon_sym_enum] = ACTIONS(1382), - [anon_sym_struct] = ACTIONS(1382), - [anon_sym_union] = ACTIONS(1382), - [anon_sym_if] = ACTIONS(1382), - [anon_sym_switch] = ACTIONS(1382), - [anon_sym_case] = ACTIONS(1382), - [anon_sym_default] = ACTIONS(1382), - [anon_sym_while] = ACTIONS(1382), - [anon_sym_do] = ACTIONS(1382), - [anon_sym_for] = ACTIONS(1382), - [anon_sym_return] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1382), - [anon_sym_continue] = ACTIONS(1382), - [anon_sym_goto] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym_offsetof] = ACTIONS(1382), - [anon_sym__Generic] = ACTIONS(1382), - [anon_sym_asm] = ACTIONS(1382), - [anon_sym___asm__] = ACTIONS(1382), - [sym_number_literal] = ACTIONS(1384), - [anon_sym_L_SQUOTE] = ACTIONS(1384), - [anon_sym_u_SQUOTE] = ACTIONS(1384), - [anon_sym_U_SQUOTE] = ACTIONS(1384), - [anon_sym_u8_SQUOTE] = ACTIONS(1384), - [anon_sym_SQUOTE] = ACTIONS(1384), - [anon_sym_L_DQUOTE] = ACTIONS(1384), - [anon_sym_u_DQUOTE] = ACTIONS(1384), - [anon_sym_U_DQUOTE] = ACTIONS(1384), - [anon_sym_u8_DQUOTE] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [anon_sym_NULL] = ACTIONS(1382), - [anon_sym_nullptr] = ACTIONS(1382), + [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_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_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), + [anon_sym_signed] = ACTIONS(1356), + [anon_sym_unsigned] = ACTIONS(1356), + [anon_sym_long] = ACTIONS(1356), + [anon_sym_short] = 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), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(1376), - [sym_identifier] = ACTIONS(1374), - [aux_sym_preproc_include_token1] = ACTIONS(1374), - [aux_sym_preproc_def_token1] = ACTIONS(1374), - [aux_sym_preproc_if_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1374), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1374), - [sym_preproc_directive] = ACTIONS(1374), - [anon_sym_LPAREN2] = ACTIONS(1376), - [anon_sym_BANG] = ACTIONS(1376), - [anon_sym_TILDE] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1374), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_typedef] = ACTIONS(1374), - [anon_sym_extern] = ACTIONS(1374), - [anon_sym___attribute__] = ACTIONS(1374), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1376), - [anon_sym___declspec] = ACTIONS(1374), - [anon_sym___cdecl] = ACTIONS(1374), - [anon_sym___clrcall] = ACTIONS(1374), - [anon_sym___stdcall] = ACTIONS(1374), - [anon_sym___fastcall] = ACTIONS(1374), - [anon_sym___thiscall] = ACTIONS(1374), - [anon_sym___vectorcall] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym_const] = ACTIONS(1374), - [anon_sym_constexpr] = ACTIONS(1374), - [anon_sym_volatile] = ACTIONS(1374), - [anon_sym_restrict] = ACTIONS(1374), - [anon_sym___restrict__] = ACTIONS(1374), - [anon_sym__Atomic] = ACTIONS(1374), - [anon_sym__Noreturn] = ACTIONS(1374), - [anon_sym_noreturn] = ACTIONS(1374), - [anon_sym_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [sym_primitive_type] = ACTIONS(1374), - [anon_sym_enum] = ACTIONS(1374), - [anon_sym_struct] = ACTIONS(1374), - [anon_sym_union] = ACTIONS(1374), - [anon_sym_if] = ACTIONS(1374), - [anon_sym_switch] = ACTIONS(1374), - [anon_sym_case] = ACTIONS(1374), - [anon_sym_default] = ACTIONS(1374), - [anon_sym_while] = ACTIONS(1374), - [anon_sym_do] = ACTIONS(1374), - [anon_sym_for] = ACTIONS(1374), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_break] = ACTIONS(1374), - [anon_sym_continue] = ACTIONS(1374), - [anon_sym_goto] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym_offsetof] = ACTIONS(1374), - [anon_sym__Generic] = ACTIONS(1374), - [anon_sym_asm] = ACTIONS(1374), - [anon_sym___asm__] = ACTIONS(1374), - [sym_number_literal] = ACTIONS(1376), - [anon_sym_L_SQUOTE] = ACTIONS(1376), - [anon_sym_u_SQUOTE] = ACTIONS(1376), - [anon_sym_U_SQUOTE] = ACTIONS(1376), - [anon_sym_u8_SQUOTE] = ACTIONS(1376), - [anon_sym_SQUOTE] = ACTIONS(1376), - [anon_sym_L_DQUOTE] = ACTIONS(1376), - [anon_sym_u_DQUOTE] = ACTIONS(1376), - [anon_sym_U_DQUOTE] = ACTIONS(1376), - [anon_sym_u8_DQUOTE] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1376), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [anon_sym_NULL] = ACTIONS(1374), - [anon_sym_nullptr] = ACTIONS(1374), + [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_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_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), + [anon_sym_signed] = ACTIONS(1368), + [anon_sym_unsigned] = ACTIONS(1368), + [anon_sym_long] = ACTIONS(1368), + [anon_sym_short] = 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), }, [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_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_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), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = 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), + }, + [511] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1388), + [anon_sym_unsigned] = ACTIONS(1388), + [anon_sym_long] = ACTIONS(1388), + [anon_sym_short] = 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), + }, + [512] = { + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_identifier] = ACTIONS(1745), + [aux_sym_preproc_include_token1] = ACTIONS(1745), + [aux_sym_preproc_def_token1] = ACTIONS(1745), + [aux_sym_preproc_if_token1] = ACTIONS(1745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1745), + [sym_preproc_directive] = ACTIONS(1745), + [anon_sym_LPAREN2] = ACTIONS(1743), + [anon_sym_BANG] = ACTIONS(1743), + [anon_sym_TILDE] = ACTIONS(1743), + [anon_sym_DASH] = ACTIONS(1745), + [anon_sym_PLUS] = ACTIONS(1745), + [anon_sym_STAR] = ACTIONS(1743), + [anon_sym_AMP] = ACTIONS(1743), + [anon_sym_typedef] = ACTIONS(1745), + [anon_sym_extern] = ACTIONS(1745), + [anon_sym___attribute__] = ACTIONS(1745), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1743), + [anon_sym___declspec] = ACTIONS(1745), + [anon_sym___cdecl] = ACTIONS(1745), + [anon_sym___clrcall] = ACTIONS(1745), + [anon_sym___stdcall] = ACTIONS(1745), + [anon_sym___fastcall] = ACTIONS(1745), + [anon_sym___thiscall] = ACTIONS(1745), + [anon_sym___vectorcall] = ACTIONS(1745), + [anon_sym_LBRACE] = ACTIONS(1743), + [anon_sym_static] = ACTIONS(1745), + [anon_sym_auto] = ACTIONS(1745), + [anon_sym_register] = ACTIONS(1745), + [anon_sym_inline] = ACTIONS(1745), + [anon_sym_thread_local] = ACTIONS(1745), + [anon_sym_const] = ACTIONS(1745), + [anon_sym_constexpr] = ACTIONS(1745), + [anon_sym_volatile] = ACTIONS(1745), + [anon_sym_restrict] = ACTIONS(1745), + [anon_sym___restrict__] = ACTIONS(1745), + [anon_sym__Atomic] = ACTIONS(1745), + [anon_sym__Noreturn] = ACTIONS(1745), + [anon_sym_noreturn] = ACTIONS(1745), + [anon_sym_signed] = ACTIONS(1745), + [anon_sym_unsigned] = ACTIONS(1745), + [anon_sym_long] = ACTIONS(1745), + [anon_sym_short] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1745), + [anon_sym_enum] = ACTIONS(1745), + [anon_sym_struct] = ACTIONS(1745), + [anon_sym_union] = ACTIONS(1745), + [anon_sym_if] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1745), + [anon_sym_case] = ACTIONS(1745), + [anon_sym_default] = ACTIONS(1745), + [anon_sym_while] = ACTIONS(1745), + [anon_sym_do] = ACTIONS(1745), + [anon_sym_for] = ACTIONS(1745), + [anon_sym_return] = ACTIONS(1745), + [anon_sym_break] = ACTIONS(1745), + [anon_sym_continue] = ACTIONS(1745), + [anon_sym_goto] = ACTIONS(1745), + [anon_sym_DASH_DASH] = ACTIONS(1743), + [anon_sym_PLUS_PLUS] = ACTIONS(1743), + [anon_sym_sizeof] = ACTIONS(1745), + [anon_sym_offsetof] = ACTIONS(1745), + [anon_sym__Generic] = ACTIONS(1745), + [anon_sym_asm] = ACTIONS(1745), + [anon_sym___asm__] = ACTIONS(1745), + [sym_number_literal] = ACTIONS(1743), + [anon_sym_L_SQUOTE] = ACTIONS(1743), + [anon_sym_u_SQUOTE] = ACTIONS(1743), + [anon_sym_U_SQUOTE] = ACTIONS(1743), + [anon_sym_u8_SQUOTE] = ACTIONS(1743), + [anon_sym_SQUOTE] = ACTIONS(1743), + [anon_sym_L_DQUOTE] = ACTIONS(1743), + [anon_sym_u_DQUOTE] = ACTIONS(1743), + [anon_sym_U_DQUOTE] = ACTIONS(1743), + [anon_sym_u8_DQUOTE] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(1743), + [sym_true] = ACTIONS(1745), + [sym_false] = ACTIONS(1745), + [anon_sym_NULL] = ACTIONS(1745), + [anon_sym_nullptr] = ACTIONS(1745), + [sym_comment] = ACTIONS(3), + }, + [513] = { [ts_builtin_sym_end] = ACTIONS(1416), [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), @@ -64144,175 +64412,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [511] = { - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1386), - [aux_sym_preproc_include_token1] = ACTIONS(1386), - [aux_sym_preproc_def_token1] = ACTIONS(1386), - [aux_sym_preproc_if_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1386), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1386), - [sym_preproc_directive] = ACTIONS(1386), - [anon_sym_LPAREN2] = ACTIONS(1388), - [anon_sym_BANG] = ACTIONS(1388), - [anon_sym_TILDE] = ACTIONS(1388), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_STAR] = ACTIONS(1388), - [anon_sym_AMP] = ACTIONS(1388), - [anon_sym_typedef] = ACTIONS(1386), - [anon_sym_extern] = ACTIONS(1386), - [anon_sym___attribute__] = ACTIONS(1386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1388), - [anon_sym___declspec] = ACTIONS(1386), - [anon_sym___cdecl] = ACTIONS(1386), - [anon_sym___clrcall] = ACTIONS(1386), - [anon_sym___stdcall] = ACTIONS(1386), - [anon_sym___fastcall] = ACTIONS(1386), - [anon_sym___thiscall] = ACTIONS(1386), - [anon_sym___vectorcall] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym_const] = ACTIONS(1386), - [anon_sym_constexpr] = ACTIONS(1386), - [anon_sym_volatile] = ACTIONS(1386), - [anon_sym_restrict] = ACTIONS(1386), - [anon_sym___restrict__] = ACTIONS(1386), - [anon_sym__Atomic] = ACTIONS(1386), - [anon_sym__Noreturn] = ACTIONS(1386), - [anon_sym_noreturn] = ACTIONS(1386), - [anon_sym_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [sym_primitive_type] = ACTIONS(1386), - [anon_sym_enum] = ACTIONS(1386), - [anon_sym_struct] = ACTIONS(1386), - [anon_sym_union] = ACTIONS(1386), - [anon_sym_if] = ACTIONS(1386), - [anon_sym_switch] = ACTIONS(1386), - [anon_sym_case] = ACTIONS(1386), - [anon_sym_default] = ACTIONS(1386), - [anon_sym_while] = ACTIONS(1386), - [anon_sym_do] = ACTIONS(1386), - [anon_sym_for] = ACTIONS(1386), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_break] = ACTIONS(1386), - [anon_sym_continue] = ACTIONS(1386), - [anon_sym_goto] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym_offsetof] = ACTIONS(1386), - [anon_sym__Generic] = ACTIONS(1386), - [anon_sym_asm] = ACTIONS(1386), - [anon_sym___asm__] = ACTIONS(1386), - [sym_number_literal] = ACTIONS(1388), - [anon_sym_L_SQUOTE] = ACTIONS(1388), - [anon_sym_u_SQUOTE] = ACTIONS(1388), - [anon_sym_U_SQUOTE] = ACTIONS(1388), - [anon_sym_u8_SQUOTE] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1388), - [anon_sym_L_DQUOTE] = ACTIONS(1388), - [anon_sym_u_DQUOTE] = ACTIONS(1388), - [anon_sym_U_DQUOTE] = ACTIONS(1388), - [anon_sym_u8_DQUOTE] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1388), - [sym_true] = ACTIONS(1386), - [sym_false] = ACTIONS(1386), - [anon_sym_NULL] = ACTIONS(1386), - [anon_sym_nullptr] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - }, - [512] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = 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), + [514] = { + [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_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_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), + [anon_sym_signed] = ACTIONS(1380), + [anon_sym_unsigned] = ACTIONS(1380), + [anon_sym_long] = ACTIONS(1380), + [anon_sym_short] = 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), }, - [513] = { + [515] = { [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1364), [aux_sym_preproc_include_token1] = ACTIONS(1364), @@ -64396,208 +64580,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1364), [sym_comment] = ACTIONS(3), }, - [514] = { - [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_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_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), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = 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), - }, - [515] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1390), - [aux_sym_preproc_include_token1] = ACTIONS(1390), - [aux_sym_preproc_def_token1] = ACTIONS(1390), - [aux_sym_preproc_if_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1390), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1390), - [sym_preproc_directive] = ACTIONS(1390), - [anon_sym_LPAREN2] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_DASH] = ACTIONS(1390), - [anon_sym_PLUS] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_typedef] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym___attribute__] = ACTIONS(1390), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1392), - [anon_sym___declspec] = ACTIONS(1390), - [anon_sym___cdecl] = ACTIONS(1390), - [anon_sym___clrcall] = ACTIONS(1390), - [anon_sym___stdcall] = ACTIONS(1390), - [anon_sym___fastcall] = ACTIONS(1390), - [anon_sym___thiscall] = ACTIONS(1390), - [anon_sym___vectorcall] = ACTIONS(1390), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_constexpr] = ACTIONS(1390), - [anon_sym_volatile] = ACTIONS(1390), - [anon_sym_restrict] = ACTIONS(1390), - [anon_sym___restrict__] = ACTIONS(1390), - [anon_sym__Atomic] = ACTIONS(1390), - [anon_sym__Noreturn] = ACTIONS(1390), - [anon_sym_noreturn] = ACTIONS(1390), - [anon_sym_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [sym_primitive_type] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_switch] = ACTIONS(1390), - [anon_sym_case] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_do] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_goto] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym_offsetof] = ACTIONS(1390), - [anon_sym__Generic] = ACTIONS(1390), - [anon_sym_asm] = ACTIONS(1390), - [anon_sym___asm__] = ACTIONS(1390), - [sym_number_literal] = ACTIONS(1392), - [anon_sym_L_SQUOTE] = ACTIONS(1392), - [anon_sym_u_SQUOTE] = ACTIONS(1392), - [anon_sym_U_SQUOTE] = ACTIONS(1392), - [anon_sym_u8_SQUOTE] = ACTIONS(1392), - [anon_sym_SQUOTE] = ACTIONS(1392), - [anon_sym_L_DQUOTE] = ACTIONS(1392), - [anon_sym_u_DQUOTE] = ACTIONS(1392), - [anon_sym_U_DQUOTE] = ACTIONS(1392), - [anon_sym_u8_DQUOTE] = ACTIONS(1392), - [anon_sym_DQUOTE] = ACTIONS(1392), - [sym_true] = ACTIONS(1390), - [sym_false] = ACTIONS(1390), - [anon_sym_NULL] = ACTIONS(1390), - [anon_sym_nullptr] = ACTIONS(1390), - [sym_comment] = ACTIONS(3), - }, [516] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1896), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1984), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64619,7 +64635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -64647,39 +64663,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [517] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1805), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1923), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64701,7 +64717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -64729,39 +64745,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [518] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1689), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1888), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64783,7 +64799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -64811,39 +64827,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [519] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1687), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1760), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64865,7 +64881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -64893,39 +64909,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [520] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1754), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1742), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -64947,7 +64963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -64975,39 +64991,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [521] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1862), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1854), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65029,7 +65045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -65057,39 +65073,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [522] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1700), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1800), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65111,7 +65127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -65139,39 +65155,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [523] = { - [sym_type_qualifier] = STATE(1156), - [sym__type_specifier] = STATE(1161), - [sym_sized_type_specifier] = STATE(1136), - [sym_enum_specifier] = STATE(1136), - [sym_struct_specifier] = STATE(1136), - [sym_union_specifier] = STATE(1136), - [sym__expression] = STATE(1069), - [sym__expression_not_binary] = STATE(806), - [sym_comma_expression] = STATE(1897), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_type_descriptor] = STATE(1833), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_macro_type_specifier] = STATE(1136), - [aux_sym_type_definition_repeat1] = STATE(1156), - [aux_sym_sized_type_specifier_repeat1] = STATE(1176), + [sym_type_qualifier] = STATE(1154), + [sym__type_specifier] = STATE(1188), + [sym_sized_type_specifier] = STATE(1147), + [sym_enum_specifier] = STATE(1147), + [sym_struct_specifier] = STATE(1147), + [sym_union_specifier] = STATE(1147), + [sym__expression] = STATE(1078), + [sym__expression_not_binary] = STATE(797), + [sym_comma_expression] = STATE(1980), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_type_descriptor] = STATE(1763), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_macro_type_specifier] = STATE(1147), + [aux_sym_type_definition_repeat1] = STATE(1154), + [aux_sym_sized_type_specifier_repeat1] = STATE(1196), [sym_identifier] = ACTIONS(1747), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -65193,7 +65209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_long] = ACTIONS(1749), [anon_sym_short] = ACTIONS(1749), [sym_primitive_type] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1751), [anon_sym_struct] = ACTIONS(51), [anon_sym_union] = ACTIONS(53), [anon_sym_DASH_DASH] = ACTIONS(77), @@ -65221,59 +65237,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [524] = { - [sym__expression] = STATE(766), - [sym__expression_not_binary] = STATE(806), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(818), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(818), - [sym_call_expression] = STATE(818), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(818), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(818), - [sym_initializer_list] = STATE(812), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_identifier] = ACTIONS(1751), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), + [sym__expression] = STATE(777), + [sym__expression_not_binary] = STATE(797), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(811), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(811), + [sym_call_expression] = STATE(811), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(811), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(811), + [sym_initializer_list] = STATE(776), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_identifier] = ACTIONS(1753), + [anon_sym_COMMA] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1172), [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(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_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_SLASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1172), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1172), + [anon_sym_AMP] = ACTIONS(1180), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1172), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_SEMI] = ACTIONS(1172), + [anon_sym___attribute__] = ACTIONS(1182), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_RBRACE] = ACTIONS(1172), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_COLON] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), [anon_sym_DASH_DASH] = ACTIONS(77), [anon_sym_PLUS_PLUS] = ACTIONS(77), [anon_sym_sizeof] = ACTIONS(79), @@ -65281,8 +65298,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DASH_GT] = ACTIONS(1172), [sym_number_literal] = ACTIONS(147), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), @@ -65301,216 +65318,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [525] = { - [sym_identifier] = ACTIONS(1753), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_RPAREN] = ACTIONS(1755), - [anon_sym_LPAREN2] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_TILDE] = ACTIONS(1755), - [anon_sym_DASH] = ACTIONS(1753), - [anon_sym_PLUS] = ACTIONS(1753), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym___attribute__] = ACTIONS(1753), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1755), - [anon_sym___declspec] = ACTIONS(1753), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1753), - [anon_sym_EQ] = ACTIONS(1755), - [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_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), - [anon_sym_signed] = ACTIONS(1753), - [anon_sym_unsigned] = ACTIONS(1753), - [anon_sym_long] = ACTIONS(1753), - [anon_sym_short] = ACTIONS(1753), - [sym_primitive_type] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_COLON] = ACTIONS(1755), - [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(1755), - [anon_sym_PLUS_PLUS] = ACTIONS(1755), - [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(1755), - [anon_sym_L_SQUOTE] = ACTIONS(1755), - [anon_sym_u_SQUOTE] = ACTIONS(1755), - [anon_sym_U_SQUOTE] = ACTIONS(1755), - [anon_sym_u8_SQUOTE] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1755), - [anon_sym_L_DQUOTE] = ACTIONS(1755), - [anon_sym_u_DQUOTE] = ACTIONS(1755), - [anon_sym_U_DQUOTE] = ACTIONS(1755), - [anon_sym_u8_DQUOTE] = ACTIONS(1755), - [anon_sym_DQUOTE] = ACTIONS(1755), - [sym_true] = ACTIONS(1753), - [sym_false] = ACTIONS(1753), - [anon_sym_NULL] = ACTIONS(1753), - [anon_sym_nullptr] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1757), + [anon_sym_RPAREN] = ACTIONS(1757), + [anon_sym_LPAREN2] = ACTIONS(1757), + [anon_sym_BANG] = ACTIONS(1757), + [anon_sym_TILDE] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1757), + [anon_sym_AMP] = ACTIONS(1757), + [anon_sym_SEMI] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym___attribute__] = ACTIONS(1755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1757), + [anon_sym___declspec] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1755), + [anon_sym_EQ] = ACTIONS(1757), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_auto] = ACTIONS(1755), + [anon_sym_register] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_thread_local] = ACTIONS(1755), + [anon_sym_const] = ACTIONS(1755), + [anon_sym_constexpr] = ACTIONS(1755), + [anon_sym_volatile] = ACTIONS(1755), + [anon_sym_restrict] = ACTIONS(1755), + [anon_sym___restrict__] = ACTIONS(1755), + [anon_sym__Atomic] = ACTIONS(1755), + [anon_sym__Noreturn] = ACTIONS(1755), + [anon_sym_noreturn] = ACTIONS(1755), + [anon_sym_signed] = ACTIONS(1755), + [anon_sym_unsigned] = ACTIONS(1755), + [anon_sym_long] = ACTIONS(1755), + [anon_sym_short] = ACTIONS(1755), + [sym_primitive_type] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_COLON] = ACTIONS(1757), + [anon_sym_struct] = ACTIONS(1755), + [anon_sym_union] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_goto] = ACTIONS(1755), + [anon_sym_DASH_DASH] = ACTIONS(1757), + [anon_sym_PLUS_PLUS] = ACTIONS(1757), + [anon_sym_sizeof] = ACTIONS(1755), + [anon_sym_offsetof] = ACTIONS(1755), + [anon_sym__Generic] = ACTIONS(1755), + [anon_sym_asm] = ACTIONS(1755), + [anon_sym___asm__] = ACTIONS(1755), + [sym_number_literal] = ACTIONS(1757), + [anon_sym_L_SQUOTE] = ACTIONS(1757), + [anon_sym_u_SQUOTE] = ACTIONS(1757), + [anon_sym_U_SQUOTE] = ACTIONS(1757), + [anon_sym_u8_SQUOTE] = ACTIONS(1757), + [anon_sym_SQUOTE] = ACTIONS(1757), + [anon_sym_L_DQUOTE] = ACTIONS(1757), + [anon_sym_u_DQUOTE] = ACTIONS(1757), + [anon_sym_U_DQUOTE] = ACTIONS(1757), + [anon_sym_u8_DQUOTE] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym_true] = ACTIONS(1755), + [sym_false] = ACTIONS(1755), + [anon_sym_NULL] = ACTIONS(1755), + [anon_sym_nullptr] = ACTIONS(1755), [sym_comment] = ACTIONS(3), }, [526] = { - [sym_identifier] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym___attribute__] = ACTIONS(1757), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1759), - [anon_sym___declspec] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_auto] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_inline] = ACTIONS(1757), - [anon_sym_thread_local] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_constexpr] = ACTIONS(1757), - [anon_sym_volatile] = ACTIONS(1757), - [anon_sym_restrict] = ACTIONS(1757), - [anon_sym___restrict__] = ACTIONS(1757), - [anon_sym__Atomic] = ACTIONS(1757), - [anon_sym__Noreturn] = ACTIONS(1757), - [anon_sym_noreturn] = ACTIONS(1757), - [anon_sym_signed] = ACTIONS(1757), - [anon_sym_unsigned] = ACTIONS(1757), - [anon_sym_long] = ACTIONS(1757), - [anon_sym_short] = ACTIONS(1757), - [sym_primitive_type] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_COLON] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_switch] = ACTIONS(1757), - [anon_sym_case] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(1759), - [anon_sym_sizeof] = ACTIONS(1757), - [anon_sym_offsetof] = ACTIONS(1757), - [anon_sym__Generic] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym___asm__] = ACTIONS(1757), - [sym_number_literal] = ACTIONS(1759), - [anon_sym_L_SQUOTE] = ACTIONS(1759), - [anon_sym_u_SQUOTE] = ACTIONS(1759), - [anon_sym_U_SQUOTE] = ACTIONS(1759), - [anon_sym_u8_SQUOTE] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1759), - [anon_sym_L_DQUOTE] = ACTIONS(1759), - [anon_sym_u_DQUOTE] = ACTIONS(1759), - [anon_sym_U_DQUOTE] = ACTIONS(1759), - [anon_sym_u8_DQUOTE] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [anon_sym_NULL] = ACTIONS(1757), - [anon_sym_nullptr] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_RPAREN] = ACTIONS(1761), + [anon_sym_LPAREN2] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_SEMI] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1759), + [anon_sym___attribute__] = ACTIONS(1759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1761), + [anon_sym___declspec] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1759), + [anon_sym_auto] = ACTIONS(1759), + [anon_sym_register] = ACTIONS(1759), + [anon_sym_inline] = ACTIONS(1759), + [anon_sym_thread_local] = ACTIONS(1759), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_constexpr] = ACTIONS(1759), + [anon_sym_volatile] = ACTIONS(1759), + [anon_sym_restrict] = ACTIONS(1759), + [anon_sym___restrict__] = ACTIONS(1759), + [anon_sym__Atomic] = ACTIONS(1759), + [anon_sym__Noreturn] = ACTIONS(1759), + [anon_sym_noreturn] = ACTIONS(1759), + [anon_sym_signed] = ACTIONS(1759), + [anon_sym_unsigned] = ACTIONS(1759), + [anon_sym_long] = ACTIONS(1759), + [anon_sym_short] = ACTIONS(1759), + [sym_primitive_type] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1759), + [anon_sym_default] = ACTIONS(1759), + [anon_sym_while] = ACTIONS(1759), + [anon_sym_do] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym_DASH_DASH] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1761), + [anon_sym_sizeof] = ACTIONS(1759), + [anon_sym_offsetof] = ACTIONS(1759), + [anon_sym__Generic] = ACTIONS(1759), + [anon_sym_asm] = ACTIONS(1759), + [anon_sym___asm__] = ACTIONS(1759), + [sym_number_literal] = ACTIONS(1761), + [anon_sym_L_SQUOTE] = ACTIONS(1761), + [anon_sym_u_SQUOTE] = ACTIONS(1761), + [anon_sym_U_SQUOTE] = ACTIONS(1761), + [anon_sym_u8_SQUOTE] = ACTIONS(1761), + [anon_sym_SQUOTE] = ACTIONS(1761), + [anon_sym_L_DQUOTE] = ACTIONS(1761), + [anon_sym_u_DQUOTE] = ACTIONS(1761), + [anon_sym_U_DQUOTE] = ACTIONS(1761), + [anon_sym_u8_DQUOTE] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(1761), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [anon_sym_NULL] = ACTIONS(1759), + [anon_sym_nullptr] = ACTIONS(1759), [sym_comment] = ACTIONS(3), }, [527] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(806), - [sym_conditional_expression] = STATE(806), - [sym_assignment_expression] = STATE(806), - [sym_pointer_expression] = STATE(848), - [sym_unary_expression] = STATE(806), - [sym_binary_expression] = STATE(806), - [sym_update_expression] = STATE(806), - [sym_cast_expression] = STATE(806), - [sym_sizeof_expression] = STATE(806), - [sym_offsetof_expression] = STATE(806), - [sym_generic_expression] = STATE(806), - [sym_subscript_expression] = STATE(848), - [sym_call_expression] = STATE(848), - [sym_gnu_asm_expression] = STATE(806), - [sym_field_expression] = STATE(848), - [sym_compound_literal_expression] = STATE(806), - [sym_parenthesized_expression] = STATE(848), - [sym_initializer_list] = STATE(812), - [sym_char_literal] = STATE(806), - [sym_concatenated_string] = STATE(806), - [sym_string_literal] = STATE(754), - [sym_null] = STATE(806), - [sym_identifier] = ACTIONS(1761), - [anon_sym_LPAREN2] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1765), - [anon_sym_TILDE] = ACTIONS(1767), - [anon_sym_DASH] = ACTIONS(1765), - [anon_sym_PLUS] = ACTIONS(1765), - [anon_sym_STAR] = ACTIONS(1769), - [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), + [sym__expression] = STATE(841), + [sym__expression_not_binary] = STATE(797), + [sym_conditional_expression] = STATE(797), + [sym_assignment_expression] = STATE(797), + [sym_pointer_expression] = STATE(847), + [sym_unary_expression] = STATE(797), + [sym_binary_expression] = STATE(797), + [sym_update_expression] = STATE(797), + [sym_cast_expression] = STATE(797), + [sym_sizeof_expression] = STATE(797), + [sym_offsetof_expression] = STATE(797), + [sym_generic_expression] = STATE(797), + [sym_subscript_expression] = STATE(847), + [sym_call_expression] = STATE(847), + [sym_gnu_asm_expression] = STATE(797), + [sym_field_expression] = STATE(847), + [sym_compound_literal_expression] = STATE(797), + [sym_parenthesized_expression] = STATE(847), + [sym_initializer_list] = STATE(776), + [sym_char_literal] = STATE(797), + [sym_concatenated_string] = STATE(797), + [sym_string_literal] = STATE(753), + [sym_null] = STATE(797), + [sym_identifier] = ACTIONS(1763), + [anon_sym_LPAREN2] = ACTIONS(1765), + [anon_sym_BANG] = ACTIONS(1767), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1767), + [anon_sym_PLUS] = ACTIONS(1767), + [anon_sym_STAR] = ACTIONS(1771), + [anon_sym_SLASH] = ACTIONS(1182), + [anon_sym_PERCENT] = ACTIONS(1172), + [anon_sym_PIPE_PIPE] = ACTIONS(1172), + [anon_sym_AMP_AMP] = ACTIONS(1172), + [anon_sym_PIPE] = ACTIONS(1182), + [anon_sym_CARET] = ACTIONS(1172), [anon_sym_AMP] = ACTIONS(1446), - [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(1771), - [anon_sym_PLUS_PLUS] = ACTIONS(1771), - [anon_sym_sizeof] = ACTIONS(1773), + [anon_sym_EQ_EQ] = ACTIONS(1172), + [anon_sym_BANG_EQ] = ACTIONS(1172), + [anon_sym_GT] = ACTIONS(1182), + [anon_sym_GT_EQ] = ACTIONS(1172), + [anon_sym_LT_EQ] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(1182), + [anon_sym_LT_LT] = ACTIONS(1172), + [anon_sym_GT_GT] = ACTIONS(1172), + [anon_sym_LBRACE] = ACTIONS(1184), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_RBRACK] = ACTIONS(1172), + [anon_sym_QMARK] = ACTIONS(1172), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_sizeof] = ACTIONS(1775), [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), + [anon_sym_DOT] = ACTIONS(1182), + [anon_sym_DASH_GT] = ACTIONS(1172), [sym_number_literal] = ACTIONS(147), [anon_sym_L_SQUOTE] = ACTIONS(89), [anon_sym_u_SQUOTE] = ACTIONS(89), @@ -65529,146 +65546,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [528] = { - [sym_else_clause] = STATE(414), - [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_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_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), - [anon_sym_signed] = ACTIONS(1172), - [anon_sym_unsigned] = ACTIONS(1172), - [anon_sym_long] = ACTIONS(1172), - [anon_sym_short] = 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(1775), - [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), + [sym_else_clause] = STATE(416), + [sym_identifier] = ACTIONS(1190), + [anon_sym_LPAREN2] = ACTIONS(1192), + [anon_sym_BANG] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1192), + [anon_sym_DASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1190), + [anon_sym_STAR] = ACTIONS(1192), + [anon_sym_AMP] = ACTIONS(1192), + [anon_sym_SEMI] = ACTIONS(1192), + [anon_sym_typedef] = ACTIONS(1190), + [anon_sym_extern] = ACTIONS(1190), + [anon_sym___attribute__] = ACTIONS(1190), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1192), + [anon_sym___declspec] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1192), + [anon_sym_static] = ACTIONS(1190), + [anon_sym_auto] = ACTIONS(1190), + [anon_sym_register] = ACTIONS(1190), + [anon_sym_inline] = ACTIONS(1190), + [anon_sym_thread_local] = ACTIONS(1190), + [anon_sym_const] = ACTIONS(1190), + [anon_sym_constexpr] = ACTIONS(1190), + [anon_sym_volatile] = ACTIONS(1190), + [anon_sym_restrict] = ACTIONS(1190), + [anon_sym___restrict__] = ACTIONS(1190), + [anon_sym__Atomic] = ACTIONS(1190), + [anon_sym__Noreturn] = ACTIONS(1190), + [anon_sym_noreturn] = ACTIONS(1190), + [anon_sym_signed] = ACTIONS(1190), + [anon_sym_unsigned] = ACTIONS(1190), + [anon_sym_long] = ACTIONS(1190), + [anon_sym_short] = ACTIONS(1190), + [sym_primitive_type] = ACTIONS(1190), + [anon_sym_enum] = ACTIONS(1190), + [anon_sym_struct] = ACTIONS(1190), + [anon_sym_union] = ACTIONS(1190), + [anon_sym_if] = ACTIONS(1190), + [anon_sym_else] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1190), + [anon_sym_while] = ACTIONS(1190), + [anon_sym_do] = ACTIONS(1190), + [anon_sym_for] = ACTIONS(1190), + [anon_sym_return] = ACTIONS(1190), + [anon_sym_break] = ACTIONS(1190), + [anon_sym_continue] = ACTIONS(1190), + [anon_sym_goto] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_PLUS_PLUS] = ACTIONS(1192), + [anon_sym_sizeof] = ACTIONS(1190), + [anon_sym_offsetof] = ACTIONS(1190), + [anon_sym__Generic] = ACTIONS(1190), + [anon_sym_asm] = ACTIONS(1190), + [anon_sym___asm__] = ACTIONS(1190), + [sym_number_literal] = ACTIONS(1192), + [anon_sym_L_SQUOTE] = ACTIONS(1192), + [anon_sym_u_SQUOTE] = ACTIONS(1192), + [anon_sym_U_SQUOTE] = ACTIONS(1192), + [anon_sym_u8_SQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1192), + [anon_sym_L_DQUOTE] = ACTIONS(1192), + [anon_sym_u_DQUOTE] = ACTIONS(1192), + [anon_sym_U_DQUOTE] = ACTIONS(1192), + [anon_sym_u8_DQUOTE] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1192), + [sym_true] = ACTIONS(1190), + [sym_false] = ACTIONS(1190), + [anon_sym_NULL] = ACTIONS(1190), + [anon_sym_nullptr] = ACTIONS(1190), [sym_comment] = ACTIONS(3), }, [529] = { - [sym_identifier] = ACTIONS(1777), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_SEMI] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym___attribute__] = ACTIONS(1784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1786), - [anon_sym___declspec] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_auto] = ACTIONS(1784), - [anon_sym_register] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_thread_local] = ACTIONS(1784), - [anon_sym_const] = ACTIONS(1784), - [anon_sym_constexpr] = ACTIONS(1784), - [anon_sym_volatile] = ACTIONS(1784), - [anon_sym_restrict] = ACTIONS(1784), - [anon_sym___restrict__] = ACTIONS(1784), - [anon_sym__Atomic] = ACTIONS(1784), - [anon_sym__Noreturn] = ACTIONS(1784), - [anon_sym_noreturn] = ACTIONS(1784), - [anon_sym_signed] = ACTIONS(1784), - [anon_sym_unsigned] = ACTIONS(1784), - [anon_sym_long] = ACTIONS(1784), - [anon_sym_short] = ACTIONS(1784), - [sym_primitive_type] = ACTIONS(1784), - [anon_sym_enum] = ACTIONS(1784), - [anon_sym_struct] = ACTIONS(1784), - [anon_sym_union] = ACTIONS(1784), - [anon_sym_if] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1782), - [anon_sym_default] = ACTIONS(1782), - [anon_sym_while] = ACTIONS(1782), - [anon_sym_do] = ACTIONS(1782), - [anon_sym_for] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1782), - [anon_sym_break] = ACTIONS(1782), - [anon_sym_continue] = ACTIONS(1782), - [anon_sym_goto] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1780), - [anon_sym_sizeof] = ACTIONS(1782), - [anon_sym_offsetof] = ACTIONS(1782), - [anon_sym__Generic] = ACTIONS(1782), - [anon_sym_asm] = ACTIONS(1782), - [anon_sym___asm__] = ACTIONS(1782), - [sym_number_literal] = ACTIONS(1780), - [anon_sym_L_SQUOTE] = ACTIONS(1780), - [anon_sym_u_SQUOTE] = ACTIONS(1780), - [anon_sym_U_SQUOTE] = ACTIONS(1780), - [anon_sym_u8_SQUOTE] = ACTIONS(1780), - [anon_sym_SQUOTE] = ACTIONS(1780), - [anon_sym_L_DQUOTE] = ACTIONS(1780), - [anon_sym_u_DQUOTE] = ACTIONS(1780), - [anon_sym_U_DQUOTE] = ACTIONS(1780), - [anon_sym_u8_DQUOTE] = ACTIONS(1780), - [anon_sym_DQUOTE] = ACTIONS(1780), - [sym_true] = ACTIONS(1782), - [sym_false] = ACTIONS(1782), - [anon_sym_NULL] = ACTIONS(1782), - [anon_sym_nullptr] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1779), + [anon_sym_LPAREN2] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_extern] = ACTIONS(1786), + [anon_sym___attribute__] = ACTIONS(1786), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1788), + [anon_sym___declspec] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_static] = ACTIONS(1786), + [anon_sym_auto] = ACTIONS(1786), + [anon_sym_register] = ACTIONS(1786), + [anon_sym_inline] = ACTIONS(1786), + [anon_sym_thread_local] = ACTIONS(1786), + [anon_sym_const] = ACTIONS(1786), + [anon_sym_constexpr] = ACTIONS(1786), + [anon_sym_volatile] = ACTIONS(1786), + [anon_sym_restrict] = ACTIONS(1786), + [anon_sym___restrict__] = ACTIONS(1786), + [anon_sym__Atomic] = ACTIONS(1786), + [anon_sym__Noreturn] = ACTIONS(1786), + [anon_sym_noreturn] = ACTIONS(1786), + [anon_sym_signed] = ACTIONS(1786), + [anon_sym_unsigned] = ACTIONS(1786), + [anon_sym_long] = ACTIONS(1786), + [anon_sym_short] = ACTIONS(1786), + [sym_primitive_type] = ACTIONS(1786), + [anon_sym_enum] = ACTIONS(1786), + [anon_sym_struct] = ACTIONS(1786), + [anon_sym_union] = ACTIONS(1786), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_switch] = ACTIONS(1784), + [anon_sym_case] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_do] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1784), + [anon_sym_DASH_DASH] = ACTIONS(1782), + [anon_sym_PLUS_PLUS] = ACTIONS(1782), + [anon_sym_sizeof] = ACTIONS(1784), + [anon_sym_offsetof] = ACTIONS(1784), + [anon_sym__Generic] = ACTIONS(1784), + [anon_sym_asm] = ACTIONS(1784), + [anon_sym___asm__] = ACTIONS(1784), + [sym_number_literal] = ACTIONS(1782), + [anon_sym_L_SQUOTE] = ACTIONS(1782), + [anon_sym_u_SQUOTE] = ACTIONS(1782), + [anon_sym_U_SQUOTE] = ACTIONS(1782), + [anon_sym_u8_SQUOTE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1782), + [anon_sym_L_DQUOTE] = ACTIONS(1782), + [anon_sym_u_DQUOTE] = ACTIONS(1782), + [anon_sym_U_DQUOTE] = ACTIONS(1782), + [anon_sym_u8_DQUOTE] = ACTIONS(1782), + [anon_sym_DQUOTE] = ACTIONS(1782), + [sym_true] = ACTIONS(1784), + [sym_false] = ACTIONS(1784), + [anon_sym_NULL] = ACTIONS(1784), + [anon_sym_nullptr] = ACTIONS(1784), [sym_comment] = ACTIONS(3), }, }; @@ -65683,21 +65700,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1791), 1, + anon_sym_STAR, + ACTIONS(1793), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1110), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(534), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1797), 1, + anon_sym_STAR, + ACTIONS(1799), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1132), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(813), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [226] = 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(1763), 1, sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1801), 1, + anon_sym_STAR, + ACTIONS(1803), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1101), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(813), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [339] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1769), 1, + ACTIONS(1771), 1, anon_sym_AMP, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1789), 1, + ACTIONS(1805), 1, anon_sym_STAR, - ACTIONS(1791), 1, + ACTIONS(1807), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1082), 1, + STATE(1111), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65708,16 +65992,105 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(532), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [452] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1809), 1, + anon_sym_STAR, + ACTIONS(1811), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1108), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(816), 2, + STATE(813), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65732,13 +66105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1793), 8, + ACTIONS(1795), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -65747,7 +66120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65763,7 +66136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [113] = 24, + [565] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -65772,21 +66145,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1763), 1, sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1813), 1, + anon_sym_STAR, + ACTIONS(1815), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1139), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(813), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [678] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1769), 1, + ACTIONS(1771), 1, anon_sym_AMP, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1795), 1, + ACTIONS(1817), 1, anon_sym_STAR, - ACTIONS(1797), 1, + ACTIONS(1819), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1093), 1, + STATE(1114), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -65797,16 +66259,105 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(537), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [791] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1821), 1, + anon_sym_STAR, + ACTIONS(1823), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1118), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - STATE(816), 2, + STATE(813), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(89), 5, @@ -65821,13 +66372,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1793), 8, + ACTIONS(1795), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -65836,7 +66387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65852,7 +66403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [226] = 24, + [904] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -65861,22 +66412,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1763), 1, sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1771), 1, + anon_sym_AMP, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(1825), 1, + anon_sym_STAR, + ACTIONS(1827), 1, + anon_sym_RBRACK, + STATE(753), 1, + sym_string_literal, + STATE(1130), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(535), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [1017] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1769), 1, + ACTIONS(1771), 1, anon_sym_AMP, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(1799), 1, + ACTIONS(1829), 1, anon_sym_STAR, - ACTIONS(1801), 1, + ACTIONS(1831), 1, anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, + sym_string_literal, + STATE(1093), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + STATE(531), 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + ACTIONS(1795), 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(797), 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, + [1130] = 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(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(1833), 1, + anon_sym_COMMA, + ACTIONS(1835), 1, + anon_sym_RBRACE, + ACTIONS(1837), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_DOT, + STATE(753), 1, sym_string_literal, - STATE(1116), 1, + STATE(1010), 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__, @@ -65886,18 +66631,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(535), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1610), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1462), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -65910,22 +66650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1793), 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(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -65941,71 +66672,538 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [339] = 24, + [1248] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1761), 1, + 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(1841), 1, sym_identifier, - ACTIONS(1763), 1, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1847), 1, + aux_sym_preproc_if_token2, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1881), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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(545), 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, + [1366] = 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(1841), 1, + sym_identifier, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1857), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1876), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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(549), 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, + [1484] = 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(1859), 1, + sym_identifier, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1863), 1, + anon_sym_RPAREN, + ACTIONS(1865), 1, anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1803), 1, + ACTIONS(1867), 1, anon_sym_STAR, - ACTIONS(1805), 1, - anon_sym_RBRACK, - STATE(754), 1, - sym_string_literal, - STATE(1089), 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(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(531), 2, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(1871), 1, + anon_sym_LBRACK, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1289), 1, + sym__declaration_specifiers, + STATE(1452), 1, + sym__declarator, + STATE(1504), 1, + sym_parameter_list, + STATE(1514), 1, + sym__abstract_declarator, + STATE(1811), 1, + sym_ms_based_modifier, + STATE(1638), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1482), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [1608] = 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(1841), 1, + sym_identifier, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1873), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1973), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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(553), 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, + [1726] = 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(1841), 1, + sym_identifier, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1875), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1970), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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(553), 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(1841), 1, + sym_identifier, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1877), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1729), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(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(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1793), 8, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -66014,87 +67212,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(806), 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, - [452] = 24, + STATE(548), 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, + [1962] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1761), 1, + 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(1841), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1807), 1, - anon_sym_STAR, - ACTIONS(1809), 1, - anon_sym_RBRACK, - STATE(754), 1, - sym_string_literal, - STATE(1086), 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(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(530), 2, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1879), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1948), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(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(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1793), 8, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -66103,87 +67303,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(806), 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, - [565] = 24, + STATE(544), 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, + [2080] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1761), 1, + 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(1841), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1811), 1, - anon_sym_STAR, - ACTIONS(1813), 1, - anon_sym_RBRACK, - STATE(754), 1, - sym_string_literal, - STATE(1107), 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(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(816), 2, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1881), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1747), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(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(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1793), 8, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -66192,87 +67394,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(806), 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, - [678] = 24, + STATE(553), 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, + [2198] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1761), 1, + 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(1841), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1815), 1, - anon_sym_STAR, - ACTIONS(1817), 1, - anon_sym_RBRACK, - STATE(754), 1, - sym_string_literal, - STATE(1094), 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(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(538), 2, + ACTIONS(1843), 1, + aux_sym_preproc_def_token1, + ACTIONS(1845), 1, + aux_sym_preproc_if_token1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1855), 1, + sym_preproc_directive, + ACTIONS(1883), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(113), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + ACTIONS(1849), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1861), 3, + sym_preproc_elifdef, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(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(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - ACTIONS(1793), 8, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -66281,47 +67485,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(806), 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, - [791] = 24, + STATE(553), 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, + [2316] = 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(1761), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1819), 1, - anon_sym_STAR, - ACTIONS(1821), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1837), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_DOT, + ACTIONS(1885), 1, + anon_sym_RBRACE, + STATE(753), 1, sym_string_literal, - STATE(1081), 1, + STATE(1087), 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__, @@ -66331,18 +67542,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(539), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1696), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1462), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -66355,22 +67561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1793), 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(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66386,31 +67583,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [904] = 24, + [2431] = 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(1761), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1823), 1, - anon_sym_STAR, - ACTIONS(1825), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1837), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_DOT, + ACTIONS(1887), 1, + anon_sym_RBRACE, + STATE(753), 1, sym_string_literal, - STATE(1115), 1, + STATE(1087), 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__, @@ -66420,18 +67631,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(816), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1696), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1462), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -66444,22 +67650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1793), 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(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66475,31 +67672,43 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1017] = 24, + [2546] = 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(1761), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1769), 1, - anon_sym_AMP, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(1827), 1, - anon_sym_STAR, - ACTIONS(1829), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1837), 1, + anon_sym_LBRACK, + ACTIONS(1839), 1, + anon_sym_DOT, + STATE(753), 1, sym_string_literal, - STATE(1080), 1, + STATE(1087), 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__, @@ -66509,18 +67718,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - STATE(816), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, + STATE(1696), 2, + sym_initializer_list, + sym_initializer_pair, + STATE(1462), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -66533,22 +67737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - ACTIONS(1793), 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(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -66564,7 +67759,91 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1130] = 27, + [2658] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1889), 1, + sym_identifier, + ACTIONS(1892), 1, + aux_sym_preproc_def_token1, + ACTIONS(1895), 1, + aux_sym_preproc_if_token1, + ACTIONS(1903), 1, + sym_preproc_directive, + ACTIONS(1909), 1, + anon_sym___attribute__, + ACTIONS(1912), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1915), 1, + anon_sym___declspec, + ACTIONS(1924), 1, + sym_primitive_type, + ACTIONS(1927), 1, + anon_sym_enum, + ACTIONS(1930), 1, + anon_sym_struct, + ACTIONS(1933), 1, + anon_sym_union, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1334), 1, + sym__declaration_specifiers, + ACTIONS(1900), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(1921), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1898), 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(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(1906), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(1918), 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(553), 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, + [2765] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66581,34 +67860,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(1833), 1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1936), 1, aux_sym_preproc_def_token1, - ACTIONS(1835), 1, + ACTIONS(1938), 1, aux_sym_preproc_if_token1, - ACTIONS(1837), 1, + ACTIONS(1940), 1, aux_sym_preproc_if_token2, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1944), 1, sym_preproc_directive, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1702), 3, - sym_preproc_elifdef, + STATE(1744), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -66616,7 +67891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66629,7 +67904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66646,7 +67921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(559), 8, + STATE(557), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66655,7 +67930,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1248] = 27, + [2878] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66672,34 +67947,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1833), 1, - aux_sym_preproc_def_token1, - ACTIONS(1835), 1, - aux_sym_preproc_if_token1, ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1847), 1, + ACTIONS(1946), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1695), 3, - sym_preproc_elifdef, + STATE(1906), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -66707,7 +67978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66720,7 +67991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66737,7 +68008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(543), 8, + STATE(574), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66746,7 +68017,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1366] = 27, + [2991] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66763,34 +68034,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1833), 1, - aux_sym_preproc_def_token1, - ACTIONS(1835), 1, - aux_sym_preproc_if_token1, ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1849), 1, + ACTIONS(1948), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1740), 3, - sym_preproc_elifdef, + STATE(1869), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -66798,7 +68065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66811,7 +68078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66828,7 +68095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(540), 8, + STATE(574), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66837,7 +68104,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1484] = 27, + [3104] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66854,34 +68121,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1833), 1, - aux_sym_preproc_def_token1, - ACTIONS(1835), 1, - aux_sym_preproc_if_token1, ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1851), 1, + ACTIONS(1950), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1863), 3, - sym_preproc_elifdef, + STATE(1790), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -66889,7 +68152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66902,7 +68165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -66919,7 +68182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(559), 8, + STATE(574), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -66928,7 +68191,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1602] = 27, + [3217] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -66945,34 +68208,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1833), 1, - aux_sym_preproc_def_token1, - ACTIONS(1835), 1, - aux_sym_preproc_if_token1, ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1853), 1, + ACTIONS(1952), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1801), 3, - sym_preproc_elifdef, + STATE(1846), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -66980,7 +68239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -66993,7 +68252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67010,7 +68269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(559), 8, + STATE(574), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67019,7 +68278,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1720] = 30, + [3330] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67036,59 +68295,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1855), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(1857), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1859), 1, - anon_sym_RPAREN, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_STAR, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(1867), 1, - anon_sym_LBRACK, - STATE(938), 1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, + sym_preproc_directive, + ACTIONS(1954), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1232), 1, + STATE(1331), 1, sym__declaration_specifiers, - STATE(1393), 1, - sym__declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1449), 1, - sym__abstract_declarator, - STATE(1871), 1, - sym_ms_based_modifier, - STATE(1507), 2, - sym_variadic_parameter, - sym_parameter_declaration, + ACTIONS(1942), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1978), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1441), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, ACTIONS(41), 6, anon_sym_extern, anon_sym_static, @@ -67096,7 +68339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67113,7 +68356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [1844] = 27, + STATE(556), 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, + [3443] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67130,34 +68382,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1833), 1, - aux_sym_preproc_def_token1, - ACTIONS(1835), 1, - aux_sym_preproc_if_token1, ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1869), 1, + ACTIONS(1956), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1866), 3, - sym_preproc_elifdef, + STATE(1864), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -67165,7 +68413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67178,7 +68426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67195,7 +68443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(559), 8, + STATE(558), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67204,7 +68452,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [1962] = 27, + [3556] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67221,34 +68469,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(1833), 1, + ACTIONS(1851), 1, + aux_sym_preproc_else_token1, + ACTIONS(1853), 1, + aux_sym_preproc_elif_token1, + ACTIONS(1936), 1, aux_sym_preproc_def_token1, - ACTIONS(1835), 1, + ACTIONS(1938), 1, aux_sym_preproc_if_token1, + ACTIONS(1944), 1, + sym_preproc_directive, + ACTIONS(1958), 1, + aux_sym_preproc_if_token2, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1331), 1, + sym__declaration_specifiers, + ACTIONS(1942), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(1972), 2, + sym_preproc_else_in_field_declaration_list, + sym_preproc_elif_in_field_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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(562), 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, + [3669] = 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(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1871), 1, + ACTIONS(1960), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1817), 3, - sym_preproc_elifdef, + STATE(1943), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -67256,7 +68587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67269,7 +68600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67286,7 +68617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(546), 8, + STATE(574), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67295,98 +68626,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2080] = 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(1751), 1, - sym_identifier, - ACTIONS(1873), 1, - anon_sym_COMMA, - ACTIONS(1875), 1, - anon_sym_RBRACE, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1879), 1, - anon_sym_DOT, - STATE(754), 1, - sym_string_literal, - STATE(971), 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(1525), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1427), 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [2198] = 27, + [3782] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -67403,34 +68643,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1833), 1, - aux_sym_preproc_def_token1, - ACTIONS(1835), 1, - aux_sym_preproc_if_token1, ACTIONS(1841), 1, + sym_identifier, + ACTIONS(1851), 1, aux_sym_preproc_else_token1, - ACTIONS(1843), 1, + ACTIONS(1853), 1, aux_sym_preproc_elif_token1, - ACTIONS(1845), 1, + ACTIONS(1936), 1, + aux_sym_preproc_def_token1, + ACTIONS(1938), 1, + aux_sym_preproc_if_token1, + ACTIONS(1944), 1, sym_preproc_directive, - ACTIONS(1881), 1, + ACTIONS(1962), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(113), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - ACTIONS(1839), 2, + ACTIONS(1942), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1712), 3, - sym_preproc_elifdef, + STATE(1919), 2, sym_preproc_else_in_field_declaration_list, sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, @@ -67438,7 +68674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -67451,7 +68687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -67468,7 +68704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(544), 8, + STATE(555), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -67477,341 +68713,488 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [2316] = 26, + [3895] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1968), 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(1751), 1, - sym_identifier, - ACTIONS(1877), 1, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1981), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1972), 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(1879), 1, + ACTIONS(1966), 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, - ACTIONS(1883), 1, - anon_sym_RBRACE, - STATE(754), 1, - sym_string_literal, - STATE(999), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + anon_sym_DASH_GT, + ACTIONS(1964), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [3975] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1985), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + 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(1966), 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(1964), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4055] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1972), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1966), 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, - 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(1591), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1427), 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [2431] = 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1964), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4135] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1968), 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(1751), 1, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1989), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1972), 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(1966), 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(1964), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - ACTIONS(1877), 1, + [4215] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1991), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1972), 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(1879), 1, + ACTIONS(1966), 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, - ACTIONS(1885), 1, - anon_sym_RBRACE, - STATE(754), 1, - sym_string_literal, - STATE(999), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + anon_sym_DASH_GT, + ACTIONS(1964), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4295] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1993), 1, + anon_sym_COLON, + ACTIONS(1983), 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(1972), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1966), 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, - 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(1591), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1427), 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [2546] = 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(1964), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [4375] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(1968), 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(1751), 1, - sym_identifier, - ACTIONS(1877), 1, - anon_sym_LBRACK, - ACTIONS(1879), 1, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1989), 1, + anon_sym_COLON, + ACTIONS(1995), 1, + anon_sym_SEMI, + ACTIONS(1983), 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(1966), 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, - STATE(754), 1, - sym_string_literal, - STATE(999), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + anon_sym_DASH_GT, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, 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(1591), 2, - sym_initializer_list, - sym_initializer_pair, - STATE(1427), 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [2658] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(31), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + ACTIONS(1964), 18, + anon_sym_extern, 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(1831), 1, - sym_identifier, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, - aux_sym_preproc_def_token1, - ACTIONS(1889), 1, - aux_sym_preproc_if_token1, - ACTIONS(1891), 1, - aux_sym_preproc_if_token2, - ACTIONS(1895), 1, - sym_preproc_directive, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, - sym__declaration_specifiers, - ACTIONS(1893), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1874), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, + anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67820,85 +69203,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(576), 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, - [2771] = 26, + sym_identifier, + [4457] = 11, 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, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, - aux_sym_preproc_def_token1, - ACTIONS(1889), 1, - aux_sym_preproc_if_token1, - ACTIONS(1895), 1, - sym_preproc_directive, - ACTIONS(1897), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, - sym__declaration_specifiers, - ACTIONS(1893), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1820), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_COLON, + ACTIONS(1995), 1, + anon_sym_SEMI, + ACTIONS(1983), 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(1966), 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(1972), 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(1964), 18, 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, - STATE(821), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67907,85 +69274,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(576), 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, - [2884] = 26, + sym_identifier, + [4539] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1993), 1, + anon_sym_COLON, + ACTIONS(1995), 1, + anon_sym_SEMI, + ACTIONS(1983), 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(1966), 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(1972), 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(1964), 18, + anon_sym_extern, 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(1831), 1, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, - aux_sym_preproc_def_token1, - ACTIONS(1889), 1, - aux_sym_preproc_if_token1, - ACTIONS(1895), 1, - sym_preproc_directive, - ACTIONS(1899), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, - sym__declaration_specifiers, - ACTIONS(1893), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1703), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, + [4621] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1985), 1, + anon_sym_COLON, + ACTIONS(1995), 1, + anon_sym_SEMI, + ACTIONS(1983), 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(1966), 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(1972), 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(1964), 18, 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, - STATE(821), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -67994,77 +69416,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(560), 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, - [2997] = 26, + sym_identifier, + [4703] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1889), 1, + sym_identifier, + ACTIONS(1909), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(1912), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1915), 1, anon_sym___declspec, - ACTIONS(47), 1, + ACTIONS(1924), 1, sym_primitive_type, - ACTIONS(49), 1, + ACTIONS(1927), 1, anon_sym_enum, - ACTIONS(51), 1, + ACTIONS(1930), 1, anon_sym_struct, - ACTIONS(53), 1, + ACTIONS(1933), 1, anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, + ACTIONS(1998), 1, aux_sym_preproc_def_token1, - ACTIONS(1889), 1, + ACTIONS(2001), 1, aux_sym_preproc_if_token1, - ACTIONS(1895), 1, + ACTIONS(2007), 1, sym_preproc_directive, - ACTIONS(1901), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, + STATE(1331), 1, sym__declaration_specifiers, - ACTIONS(1893), 2, + ACTIONS(2004), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1686), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(1898), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + ACTIONS(1921), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(1906), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68072,7 +69481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(1918), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68081,7 +69490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(563), 8, + STATE(574), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68090,76 +69499,135 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3110] = 26, + [4808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1981), 1, + anon_sym_COLON, + ACTIONS(1995), 1, + anon_sym_SEMI, + ACTIONS(1983), 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(1966), 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(1972), 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(1964), 18, + anon_sym_extern, 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(1831), 1, + anon_sym___based, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, - aux_sym_preproc_def_token1, - ACTIONS(1889), 1, - aux_sym_preproc_if_token1, - ACTIONS(1895), 1, - sym_preproc_directive, - ACTIONS(1903), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, - sym__declaration_specifiers, - ACTIONS(1893), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(1858), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, + [4889] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1977), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1983), 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(1972), 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(1966), 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(1964), 18, 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, - STATE(821), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68168,16 +69636,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(562), 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, - [3223] = 26, + sym_identifier, + [4966] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -68194,38 +69654,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, + sym_identifier, + ACTIONS(2010), 1, aux_sym_preproc_def_token1, - ACTIONS(1889), 1, + ACTIONS(2012), 1, aux_sym_preproc_if_token1, - ACTIONS(1895), 1, + ACTIONS(2016), 1, sym_preproc_directive, - ACTIONS(1905), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, + ACTIONS(2018), 1, + anon_sym_RBRACE, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, + STATE(1333), 1, sym__declaration_specifiers, - ACTIONS(1893), 2, + ACTIONS(2014), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1797), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68238,7 +69691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68255,7 +69708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(553), 8, + STATE(578), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68264,65 +69717,61 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3336] = 23, + [5069] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + ACTIONS(1889), 1, sym_identifier, - ACTIONS(1910), 1, - aux_sym_preproc_def_token1, - ACTIONS(1913), 1, - aux_sym_preproc_if_token1, - ACTIONS(1921), 1, - sym_preproc_directive, - ACTIONS(1927), 1, + ACTIONS(1909), 1, anon_sym___attribute__, - ACTIONS(1930), 1, + ACTIONS(1912), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1933), 1, + ACTIONS(1915), 1, anon_sym___declspec, - ACTIONS(1942), 1, + ACTIONS(1924), 1, sym_primitive_type, - ACTIONS(1945), 1, + ACTIONS(1927), 1, anon_sym_enum, - ACTIONS(1948), 1, + ACTIONS(1930), 1, anon_sym_struct, - ACTIONS(1951), 1, + ACTIONS(1933), 1, anon_sym_union, - STATE(938), 1, + ACTIONS(2020), 1, + aux_sym_preproc_def_token1, + ACTIONS(2023), 1, + aux_sym_preproc_if_token1, + ACTIONS(2029), 1, + sym_preproc_directive, + ACTIONS(2032), 1, + anon_sym_RBRACE, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1301), 1, + STATE(1333), 1, sym__declaration_specifiers, - ACTIONS(1918), 2, + ACTIONS(2026), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(1939), 4, + ACTIONS(1921), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1916), 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(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(1924), 6, + ACTIONS(1906), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68330,7 +69779,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(1936), 8, + ACTIONS(1918), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68339,7 +69788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(559), 8, + STATE(578), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68348,7 +69797,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3443] = 26, + [5172] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -68365,38 +69814,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, + sym_identifier, + ACTIONS(2034), 1, aux_sym_preproc_def_token1, - ACTIONS(1889), 1, + ACTIONS(2036), 1, aux_sym_preproc_if_token1, - ACTIONS(1895), 1, - sym_preproc_directive, - ACTIONS(1954), 1, + ACTIONS(2038), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + ACTIONS(2042), 1, + sym_preproc_directive, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1893), 2, + ACTIONS(2040), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1683), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68409,7 +69851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68426,7 +69868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(576), 8, + STATE(582), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68435,7 +69877,167 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3556] = 26, + [5275] = 23, + 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_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2044), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(992), 1, + sym__expression, + STATE(1634), 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(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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [5378] = 23, + 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_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2046), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1007), 1, + sym__expression, + STATE(1553), 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(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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [5481] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -68452,38 +70054,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, + sym_identifier, + ACTIONS(2034), 1, aux_sym_preproc_def_token1, - ACTIONS(1889), 1, + ACTIONS(2036), 1, aux_sym_preproc_if_token1, - ACTIONS(1895), 1, + ACTIONS(2042), 1, sym_preproc_directive, - ACTIONS(1956), 1, + ACTIONS(2048), 1, aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1893), 2, + ACTIONS(2040), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1726), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68496,7 +70091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68513,7 +70108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(554), 8, + STATE(583), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68522,68 +70117,61 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3669] = 26, + [5584] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(1889), 1, + sym_identifier, + ACTIONS(1898), 1, + aux_sym_preproc_if_token2, + ACTIONS(1909), 1, anon_sym___attribute__, - ACTIONS(35), 1, + ACTIONS(1912), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1915), 1, anon_sym___declspec, - ACTIONS(47), 1, + ACTIONS(1924), 1, sym_primitive_type, - ACTIONS(49), 1, + ACTIONS(1927), 1, anon_sym_enum, - ACTIONS(51), 1, + ACTIONS(1930), 1, anon_sym_struct, - ACTIONS(53), 1, + ACTIONS(1933), 1, anon_sym_union, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, + ACTIONS(2050), 1, aux_sym_preproc_def_token1, - ACTIONS(1889), 1, + ACTIONS(2053), 1, aux_sym_preproc_if_token1, - ACTIONS(1895), 1, + ACTIONS(2059), 1, sym_preproc_directive, - ACTIONS(1958), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, + STATE(1332), 1, sym__declaration_specifiers, - ACTIONS(1893), 2, + ACTIONS(2056), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1891), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, - ACTIONS(45), 4, + ACTIONS(1921), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - ACTIONS(41), 6, + ACTIONS(1906), 6, anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68591,7 +70179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(43), 8, + ACTIONS(1918), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -68600,7 +70188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(576), 8, + STATE(583), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68609,7 +70197,7 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3782] = 26, + [5687] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -68626,38 +70214,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, - sym_identifier, ACTIONS(1841), 1, - aux_sym_preproc_else_token1, - ACTIONS(1843), 1, - aux_sym_preproc_elif_token1, - ACTIONS(1887), 1, + sym_identifier, + ACTIONS(2010), 1, aux_sym_preproc_def_token1, - ACTIONS(1889), 1, + ACTIONS(2012), 1, aux_sym_preproc_if_token1, - ACTIONS(1895), 1, + ACTIONS(2016), 1, sym_preproc_directive, - ACTIONS(1960), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, + ACTIONS(2062), 1, + anon_sym_RBRACE, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, + STATE(1333), 1, sym__declaration_specifiers, - ACTIONS(1893), 2, + ACTIONS(2014), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1748), 2, - sym_preproc_else_in_field_declaration_list, - sym_preproc_elif_in_field_declaration_list, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -68670,7 +70251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -68687,7 +70268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(576), 8, + STATE(577), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -68696,937 +70277,713 @@ static const uint16_t ts_small_parse_table[] = { sym__field_declaration_list_item, sym_field_declaration, aux_sym_preproc_if_in_field_declaration_list_repeat1, - [3895] = 10, + [5790] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1979), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1970), 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(1964), 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(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + 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(1753), 1, sym_identifier, - [3975] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, - anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1983), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1970), 12, + ACTIONS(2064), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1016), 1, + sym__expression, + STATE(1989), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1964), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4055] = 10, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [5890] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1985), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1970), 12, + 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(1753), 1, + sym_identifier, + ACTIONS(2066), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1035), 1, + sym__expression, + STATE(1936), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1964), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4135] = 11, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [5990] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1990), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1964), 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(1970), 12, + 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(1753), 1, + sym_identifier, + ACTIONS(2068), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1061), 1, + sym__expression, + STATE(1889), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, 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(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4217] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, - anon_sym_LPAREN2, - ACTIONS(1972), 1, + ACTIONS(25), 2, anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1992), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1964), 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_AMP, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1970), 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(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4299] = 10, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6090] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1994), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1970), 12, + 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(1753), 1, + sym_identifier, + ACTIONS(2070), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1058), 1, + sym__expression, + STATE(1891), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1964), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4379] = 10, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6190] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1992), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1970), 12, + 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(1753), 1, + sym_identifier, + ACTIONS(2072), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1065), 1, + sym__expression, + STATE(1780), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1964), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4459] = 11, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6290] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1983), 1, - anon_sym_COLON, - ACTIONS(1987), 1, + 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(1753), 1, + sym_identifier, + ACTIONS(2074), 1, anon_sym_SEMI, - ACTIONS(1981), 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(1964), 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(1970), 12, + STATE(753), 1, + sym_string_literal, + STATE(1071), 1, + sym__expression, + STATE(1817), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4541] = 10, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6390] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1990), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1970), 12, + 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(1753), 1, + sym_identifier, + ACTIONS(2076), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1077), 1, + sym__expression, + STATE(1755), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1964), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4621] = 11, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6490] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1994), 1, - anon_sym_COLON, - ACTIONS(1981), 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(1964), 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(1970), 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(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, + 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(1753), 1, sym_identifier, - [4703] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1966), 1, - anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1981), 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(1970), 12, + ACTIONS(2078), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1066), 1, + sym__expression, + STATE(1782), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1964), 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, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4780] = 11, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6590] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 1, + ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1975), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1985), 1, - anon_sym_COLON, - ACTIONS(1987), 1, - anon_sym_SEMI, - ACTIONS(1981), 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(1964), 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(1970), 12, + 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(1753), 1, + sym_identifier, + ACTIONS(2080), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1072), 1, + sym__expression, + STATE(1784), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(25), 2, + anon_sym_STAR, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - ACTIONS(1962), 18, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [4861] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1907), 1, - sym_identifier, - ACTIONS(1927), 1, - anon_sym___attribute__, - ACTIONS(1930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1933), 1, - anon_sym___declspec, - ACTIONS(1942), 1, - sym_primitive_type, - ACTIONS(1945), 1, - anon_sym_enum, - ACTIONS(1948), 1, - anon_sym_struct, - ACTIONS(1951), 1, - anon_sym_union, - ACTIONS(1996), 1, - aux_sym_preproc_def_token1, - ACTIONS(1999), 1, - aux_sym_preproc_if_token1, - ACTIONS(2005), 1, - sym_preproc_directive, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1312), 1, - sym__declaration_specifiers, - ACTIONS(2002), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1916), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - ACTIONS(1939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1924), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(1936), 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(576), 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, - [4966] = 23, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6690] = 22, 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, @@ -69635,16 +70992,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2008), 1, + ACTIONS(2082), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(970), 1, + STATE(1062), 1, sym__expression, - STATE(1521), 1, - sym_compound_statement, + STATE(1887), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -69678,13 +71035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -69700,327 +71057,241 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5069] = 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(1831), 1, - sym_identifier, - ACTIONS(2010), 1, - aux_sym_preproc_def_token1, - ACTIONS(2012), 1, - aux_sym_preproc_if_token1, - ACTIONS(2014), 1, - aux_sym_preproc_if_token2, - ACTIONS(2018), 1, - sym_preproc_directive, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, - sym__declaration_specifiers, - ACTIONS(2016), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(43), 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(580), 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, - [5172] = 23, + [6790] = 22, 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(1831), 1, + 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(1753), 1, sym_identifier, - ACTIONS(2020), 1, - aux_sym_preproc_def_token1, - ACTIONS(2022), 1, - aux_sym_preproc_if_token1, - ACTIONS(2026), 1, - sym_preproc_directive, - ACTIONS(2028), 1, - anon_sym_RBRACE, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 1, - sym__declaration_specifiers, - ACTIONS(2024), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(43), 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(582), 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, - [5275] = 23, + ACTIONS(2084), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1064), 1, + sym__expression, + STATE(1966), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6890] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + 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(1753), 1, sym_identifier, - ACTIONS(1916), 1, - aux_sym_preproc_if_token2, - ACTIONS(1927), 1, - anon_sym___attribute__, - ACTIONS(1930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1933), 1, - anon_sym___declspec, - ACTIONS(1942), 1, - sym_primitive_type, - ACTIONS(1945), 1, - anon_sym_enum, - ACTIONS(1948), 1, - anon_sym_struct, - ACTIONS(1951), 1, - anon_sym_union, - ACTIONS(2030), 1, - aux_sym_preproc_def_token1, - ACTIONS(2033), 1, - aux_sym_preproc_if_token1, - ACTIONS(2039), 1, - sym_preproc_directive, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, - sym__declaration_specifiers, - ACTIONS(2036), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1924), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(1936), 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(580), 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, - [5378] = 23, + ACTIONS(2086), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1073), 1, + sym__expression, + STATE(1786), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [6990] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1907), 1, + 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(1753), 1, sym_identifier, - ACTIONS(1927), 1, - anon_sym___attribute__, - ACTIONS(1930), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1933), 1, - anon_sym___declspec, - ACTIONS(1942), 1, - sym_primitive_type, - ACTIONS(1945), 1, - anon_sym_enum, - ACTIONS(1948), 1, - anon_sym_struct, - ACTIONS(1951), 1, - anon_sym_union, - ACTIONS(2042), 1, - aux_sym_preproc_def_token1, - ACTIONS(2045), 1, - aux_sym_preproc_if_token1, - ACTIONS(2051), 1, - sym_preproc_directive, - ACTIONS(2054), 1, - anon_sym_RBRACE, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1296), 1, - sym__declaration_specifiers, - ACTIONS(2048), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(1939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(1924), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(1936), 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(581), 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, - [5481] = 23, + ACTIONS(2088), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1012), 1, + sym__expression, + STATE(1883), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [7090] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -70037,31 +71308,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(2020), 1, - aux_sym_preproc_def_token1, - ACTIONS(2022), 1, - aux_sym_preproc_if_token1, - ACTIONS(2026), 1, - sym_preproc_directive, - ACTIONS(2056), 1, - anon_sym_RBRACE, - STATE(938), 1, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1863), 1, + anon_sym_RPAREN, + ACTIONS(1871), 1, + anon_sym_LBRACK, + ACTIONS(2090), 1, + anon_sym_LPAREN2, + ACTIONS(2092), 1, + anon_sym_STAR, + STATE(945), 1, sym__type_specifier, - STATE(958), 1, + STATE(981), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1296), 1, + STATE(1289), 1, sym__declaration_specifiers, - ACTIONS(2024), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, + STATE(1504), 1, + sym_parameter_list, + STATE(1514), 1, + sym__abstract_declarator, + STATE(1638), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1482), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -70074,7 +71356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(821), 7, + STATE(819), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -70091,102 +71373,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - STATE(581), 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, - [5584] = 23, + [7198] = 20, 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(1831), 1, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(776), 1, + sym_initializer_list, + STATE(777), 1, + sym__expression, + 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(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(149), 3, + sym_true, + sym_false, sym_identifier, - ACTIONS(2010), 1, - aux_sym_preproc_def_token1, - ACTIONS(2012), 1, - aux_sym_preproc_if_token1, - ACTIONS(2018), 1, - sym_preproc_directive, - ACTIONS(2058), 1, - aux_sym_preproc_if_token2, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1304), 1, - sym__declaration_specifiers, - ACTIONS(2016), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(43), 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(578), 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, - [5687] = 23, + 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(797), 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, + [7294] = 22, 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, @@ -70195,16 +71462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2060), 1, + ACTIONS(2094), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(977), 1, + STATE(1056), 1, sym__expression, - STATE(1500), 1, - sym_compound_statement, + STATE(1894), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -70238,13 +71505,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70260,49 +71527,50 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5790] = 20, + [7394] = 22, 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, + ACTIONS(1184), 1, anon_sym_LBRACE, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(812), 1, + STATE(776), 1, sym_initializer_list, - STATE(837), 1, + STATE(777), 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(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -70315,11 +71583,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -70327,16 +71600,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [5886] = 22, + [7494] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70349,15 +71618,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2062), 1, + ACTIONS(2096), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(989), 1, + STATE(1074), 1, sym__expression, - STATE(1682), 1, + STATE(1789), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70392,13 +71661,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70414,7 +71683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5986] = 22, + [7594] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70427,15 +71696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2064), 1, + ACTIONS(2098), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1063), 1, + STATE(1080), 1, sym__expression, - STATE(1722), 1, + STATE(1880), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70470,13 +71739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70492,7 +71761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6086] = 22, + [7694] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70505,15 +71774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2066), 1, + ACTIONS(2100), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1065), 1, + STATE(1030), 1, sym__expression, - STATE(1783), 1, + STATE(1810), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70548,13 +71817,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70570,7 +71839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6186] = 22, + [7794] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70583,16 +71852,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2102), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(766), 1, + STATE(1037), 1, sym__expression, - STATE(812), 1, - sym_initializer_list, + STATE(1792), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -70626,13 +71895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70648,7 +71917,83 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6286] = 22, + [7894] = 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(1184), 1, + anon_sym_LBRACE, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(776), 1, + sym_initializer_list, + STATE(841), 1, + sym__expression, + ACTIONS(85), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(95), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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(797), 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, + [7990] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70661,15 +72006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2068), 1, + ACTIONS(2104), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1058), 1, + STATE(1060), 1, sym__expression, - STATE(1720), 1, + STATE(1963), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70704,13 +72049,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70726,7 +72071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6386] = 22, + [8090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70739,15 +72084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2070), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2106), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(990), 1, + STATE(1011), 1, sym__expression, - STATE(1842), 1, + STATE(1938), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70782,13 +72127,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70804,7 +72149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6486] = 22, + [8190] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70817,15 +72162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2072), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2108), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1025), 1, + STATE(1033), 1, sym__expression, - STATE(1785), 1, + STATE(1805), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70860,13 +72205,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70882,7 +72227,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6586] = 22, + [8290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70895,15 +72240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2074), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2110), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1033), 1, + STATE(1055), 1, sym__expression, - STATE(1718), 1, + STATE(1941), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -70938,13 +72283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -70960,7 +72305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6686] = 22, + [8390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -70973,15 +72318,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2076), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2112), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1072), 1, + STATE(1038), 1, sym__expression, - STATE(1895), 1, + STATE(1779), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71016,13 +72361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71038,89 +72383,85 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6786] = 26, + [8490] = 22, 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(1831), 1, + 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(1753), 1, sym_identifier, - ACTIONS(1857), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1859), 1, + ACTIONS(2114), 1, anon_sym_RPAREN, - ACTIONS(1867), 1, - anon_sym_LBRACK, - ACTIONS(2078), 1, - anon_sym_LPAREN2, - ACTIONS(2080), 1, + STATE(753), 1, + sym_string_literal, + STATE(1040), 1, + sym__expression, + STATE(1774), 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, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1232), 1, - sym__declaration_specifiers, - STATE(1442), 1, - sym_parameter_list, - STATE(1449), 1, - sym__abstract_declarator, - STATE(1507), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1441), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(43), 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, - [6894] = 22, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [8590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71133,15 +72474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2082), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2116), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1076), 1, + STATE(1046), 1, sym__expression, - STATE(1735), 1, + STATE(1767), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71176,13 +72517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71198,7 +72539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6994] = 22, + [8690] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71211,15 +72552,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2118), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1073), 1, + STATE(1048), 1, sym__expression, - STATE(1893), 1, + STATE(1838), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71254,13 +72595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71276,7 +72617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7094] = 22, + [8790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71289,15 +72630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2086), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2120), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, STATE(1053), 1, sym__expression, - STATE(1870), 1, + STATE(1814), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71332,13 +72673,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71354,7 +72695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7194] = 22, + [8890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71367,15 +72708,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2088), 1, + STATE(753), 1, + sym_string_literal, + STATE(1019), 1, + sym__expression, + STATE(1695), 1, + sym_initializer_list, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [8990] = 22, + 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(1753), 1, + sym_identifier, + ACTIONS(2122), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1041), 1, + STATE(1015), 1, sym__expression, - STATE(1877), 1, + STATE(1927), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71410,13 +72829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71432,7 +72851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7294] = 22, + [9090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71445,13 +72864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2090), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2124), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1051), 1, + STATE(1079), 1, sym__expression, STATE(1716), 1, sym_comma_expression, @@ -71488,13 +72907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71510,7 +72929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7394] = 22, + [9190] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71523,15 +72942,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2092), 1, + ACTIONS(2126), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1039), 1, + STATE(1067), 1, sym__expression, - STATE(1846), 1, + STATE(1871), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71566,13 +72985,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71588,7 +73007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7494] = 22, + [9290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71601,15 +73020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2094), 1, + ACTIONS(2128), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(997), 1, + STATE(1076), 1, sym__expression, - STATE(1790), 1, + STATE(1718), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71644,13 +73063,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71666,11 +73085,13 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7594] = 22, + [9390] = 22, 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, @@ -71679,16 +73100,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(996), 1, + STATE(1023), 1, sym__expression, - STATE(1669), 1, - sym_initializer_list, + STATE(1694), 1, + sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -71722,13 +73141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71744,7 +73163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7694] = 22, + [9490] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71757,15 +73176,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2096), 1, + ACTIONS(2130), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1054), 1, + sym__expression, + STATE(1954), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [9590] = 22, + 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(1753), 1, + sym_identifier, + ACTIONS(2132), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1071), 1, + STATE(1081), 1, + sym__expression, + STATE(1853), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [9690] = 22, + 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(1753), 1, + sym_identifier, + ACTIONS(2134), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1047), 1, sym__expression, - STATE(1725), 1, + STATE(1956), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71800,13 +73375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71822,7 +73397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7794] = 22, + [9790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71835,15 +73410,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2098), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2136), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1040), 1, + STATE(1036), 1, sym__expression, - STATE(1875), 1, + STATE(1776), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -71878,13 +73453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -71900,86 +73475,85 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7894] = 23, + [9890] = 22, 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(1831), 1, + 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(1753), 1, sym_identifier, - ACTIONS(2100), 1, - anon_sym_LBRACE, - STATE(767), 1, - sym_ms_call_modifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(986), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1298), 1, - sym__function_declaration_specifiers, - STATE(1299), 1, - sym__declaration_specifiers, - STATE(139), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 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(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(817), 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(43), 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, - [7996] = 22, + ACTIONS(2138), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_string_literal, + STATE(1013), 1, + sym__expression, + STATE(1974), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [9990] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -71992,15 +73566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2102), 1, + ACTIONS(2140), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1047), 1, + STATE(1031), 1, sym__expression, - STATE(1829), 1, + STATE(1773), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72035,13 +73609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72057,7 +73631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8096] = 22, + [10090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72070,15 +73644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2104), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2142), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1029), 1, + STATE(1028), 1, sym__expression, - STATE(1784), 1, + STATE(1911), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72113,13 +73687,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72135,13 +73709,11 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8196] = 22, + [10190] = 22, 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, @@ -72150,14 +73722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2144), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1074), 1, + STATE(1082), 1, sym__expression, - STATE(1660), 1, - sym_compound_statement, + STATE(1851), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72191,13 +73765,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72213,86 +73787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8296] = 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(1831), 1, - sym_identifier, - ACTIONS(2106), 1, - anon_sym_LBRACE, - STATE(782), 1, - sym_ms_call_modifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(986), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1302), 1, - sym__function_declaration_specifiers, - STATE(1309), 1, - sym__declaration_specifiers, - STATE(480), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 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(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(817), 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(43), 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, - [8398] = 22, + [10290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72305,16 +73800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2108), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1070), 1, + STATE(1085), 1, sym__expression, - STATE(1737), 1, - sym_comma_expression, + STATE(1657), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -72348,13 +73843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72370,7 +73865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8498] = 22, + [10390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72383,15 +73878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2110), 1, + ACTIONS(2146), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1054), 1, + STATE(1088), 1, sym__expression, - STATE(1780), 1, + STATE(1849), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72426,13 +73921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72448,7 +73943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8598] = 22, + [10490] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72461,15 +73956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2112), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2148), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1055), 1, + STATE(1026), 1, sym__expression, - STATE(1832), 1, + STATE(1932), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72504,13 +73999,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72526,7 +74021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8698] = 22, + [10590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72539,15 +74034,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2114), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2150), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1042), 1, + STATE(1086), 1, sym__expression, - STATE(1713), 1, + STATE(1847), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72582,13 +74077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72604,86 +74099,85 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8798] = 23, + [10690] = 22, 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(1831), 1, + 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(1753), 1, sym_identifier, - ACTIONS(2116), 1, - anon_sym_LBRACE, - STATE(804), 1, - sym_ms_call_modifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(986), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1310), 1, - sym__function_declaration_specifiers, - STATE(1311), 1, - sym__declaration_specifiers, - STATE(509), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 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(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(817), 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(43), 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, - [8900] = 22, + ACTIONS(2152), 1, + anon_sym_RPAREN, + STATE(753), 1, + sym_string_literal, + STATE(1042), 1, + sym__expression, + STATE(1920), 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, + 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [10790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72696,15 +74190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2118), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2154), 1, + anon_sym_RPAREN, + STATE(753), 1, sym_string_literal, - STATE(1048), 1, + STATE(1049), 1, sym__expression, - STATE(1880), 1, + STATE(1986), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72739,13 +74233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72761,7 +74255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9000] = 22, + [10890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72774,15 +74268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2120), 1, + ACTIONS(2156), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1034), 1, + STATE(1045), 1, sym__expression, - STATE(1890), 1, + STATE(1918), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72817,13 +74311,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72839,7 +74333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9100] = 22, + [10990] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72852,15 +74346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2122), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2158), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1038), 1, + STATE(1017), 1, sym__expression, - STATE(1710), 1, + STATE(1769), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -72895,13 +74389,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72917,7 +74411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9200] = 22, + [11090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -72930,13 +74424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2124), 1, + ACTIONS(2160), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1037), 1, + STATE(1070), 1, sym__expression, STATE(1843), 1, sym_comma_expression, @@ -72973,13 +74467,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -72995,7 +74489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9300] = 22, + [11190] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73008,15 +74502,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2126), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2162), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1027), 1, + STATE(1014), 1, sym__expression, - STATE(1923), 1, + STATE(1959), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73051,13 +74545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73073,7 +74567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9400] = 22, + [11290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73086,15 +74580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2128), 1, + ACTIONS(2164), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1043), 1, + STATE(1057), 1, sym__expression, - STATE(1884), 1, + STATE(1840), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73129,13 +74623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73151,7 +74645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9500] = 22, + [11390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73164,15 +74658,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2130), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2166), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1003), 1, + STATE(1020), 1, sym__expression, - STATE(1698), 1, + STATE(1766), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73207,13 +74701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73229,7 +74723,85 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9600] = 22, + [11490] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_offsetof, + ACTIONS(83), 1, + anon_sym__Generic, + ACTIONS(147), 1, + sym_number_literal, + ACTIONS(1184), 1, + anon_sym_LBRACE, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(776), 1, + sym_initializer_list, + STATE(841), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [11590] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73242,15 +74814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2132), 1, + ACTIONS(2168), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1004), 1, + STATE(1068), 1, sym__expression, - STATE(1699), 1, + STATE(1930), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73285,13 +74857,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73307,7 +74879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9700] = 22, + [11690] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73320,15 +74892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2134), 1, + ACTIONS(2170), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1007), 1, + STATE(1089), 1, sym__expression, - STATE(1788), 1, + STATE(1921), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73363,13 +74935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73385,7 +74957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9800] = 22, + [11790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73398,15 +74970,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2136), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2172), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(1009), 1, + STATE(1021), 1, sym__expression, - STATE(1685), 1, + STATE(1971), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73441,13 +75013,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73463,7 +75035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9900] = 22, + [11890] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73476,15 +75048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2138), 1, + ACTIONS(2174), 1, anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1060), 1, + STATE(1050), 1, sym__expression, - STATE(1898), 1, + STATE(1837), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73519,13 +75091,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73541,86 +75113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10000] = 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(1831), 1, - sym_identifier, - ACTIONS(2140), 1, - anon_sym_LBRACE, - STATE(788), 1, - sym_ms_call_modifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(986), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1306), 1, - sym__function_declaration_specifiers, - STATE(1308), 1, - sym__declaration_specifiers, - STATE(469), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 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(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(817), 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(43), 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, - [10102] = 22, + [11990] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73633,15 +75126,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2142), 1, + ACTIONS(2176), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1022), 1, + STATE(1027), 1, sym__expression, - STATE(1786), 1, + STATE(1872), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73676,13 +75169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73698,86 +75191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10202] = 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(1831), 1, - sym_identifier, - ACTIONS(2144), 1, - anon_sym_LBRACE, - STATE(765), 1, - sym_ms_call_modifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(986), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1314), 1, - sym__declaration_specifiers, - STATE(1315), 1, - sym__function_declaration_specifiers, - STATE(213), 3, - sym_function_definition, - sym_declaration, - sym_declaration_list, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 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(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(817), 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(43), 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, - [10304] = 22, + [12090] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73790,16 +75204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2178), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(992), 1, + STATE(1032), 1, sym__expression, - STATE(1633), 1, - sym_initializer_list, + STATE(1969), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -73833,13 +75247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -73855,49 +75269,50 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10404] = 20, + [12190] = 22, 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(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + ACTIONS(2180), 1, + anon_sym_SEMI, + STATE(753), 1, sym_string_literal, - STATE(766), 1, + STATE(1029), 1, sym__expression, - STATE(812), 1, - sym_initializer_list, + STATE(1834), 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, 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, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -73910,11 +75325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -73922,16 +75342,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [10500] = 22, + [12290] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -73944,15 +75360,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2146), 1, + ACTIONS(2182), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(998), 1, + STATE(1051), 1, sym__expression, - STATE(1753), 1, + STATE(1962), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -73987,13 +75403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74009,7 +75425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10600] = 22, + [12390] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74022,15 +75438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2148), 1, + ACTIONS(2184), 1, anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1023), 1, + STATE(1084), 1, sym__expression, - STATE(1731), 1, + STATE(1908), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74065,13 +75481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74087,7 +75503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10700] = 22, + [12490] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74100,15 +75516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2150), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1026), 1, + STATE(1078), 1, sym__expression, - STATE(1827), 1, + STATE(1980), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74143,13 +75557,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74165,7 +75579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10800] = 22, + [12587] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74178,16 +75592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2152), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2186), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(1030), 1, + STATE(1096), 1, sym__expression, - STATE(1902), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74221,13 +75633,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74243,7 +75655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10900] = 22, + [12684] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74256,15 +75668,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2154), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1017), 1, + STATE(985), 1, sym__expression, - STATE(1818), 1, + STATE(1640), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74299,13 +75709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74321,7 +75731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11000] = 22, + [12781] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74334,15 +75744,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2156), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1012), 1, + STATE(1025), 1, sym__expression, - STATE(1821), 1, + STATE(1764), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74377,13 +75785,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74399,50 +75807,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11100] = 22, + [12878] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2158), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2188), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1035), 1, + STATE(843), 1, sym__expression, - STATE(1886), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -74455,16 +75860,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74472,12 +75872,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11200] = 22, + [12971] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74490,16 +75894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2160), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(2190), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(991), 1, + STATE(1122), 1, sym__expression, - STATE(1777), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74533,13 +75935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -74555,50 +75957,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11300] = 22, + [13068] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2162), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2192), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1057), 1, + STATE(843), 1, sym__expression, - STATE(1907), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -74611,16 +76010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74628,55 +76022,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11400] = 22, + [13161] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2164), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2194), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(987), 1, + STATE(843), 1, sym__expression, - STATE(1793), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -74689,16 +76084,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74706,55 +76096,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11500] = 22, + [13254] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2166), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2196), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(993), 1, + STATE(843), 1, sym__expression, - STATE(1774), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -74767,16 +76158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74784,55 +76170,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11600] = 22, + [13347] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2168), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2198), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1010), 1, + STATE(843), 1, sym__expression, - STATE(1706), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -74845,16 +76232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74862,55 +76244,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11700] = 22, + [13440] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2170), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2200), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1000), 1, + STATE(843), 1, sym__expression, - STATE(1771), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -74923,16 +76306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -74940,12 +76318,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [11800] = 22, + [13533] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74958,16 +76340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2172), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2202), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(1024), 1, + STATE(1121), 1, sym__expression, - STATE(1908), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75001,13 +76381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75023,7 +76403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11900] = 22, + [13630] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75036,16 +76416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2174), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(2204), 1, + anon_sym_COLON, + STATE(753), 1, sym_string_literal, - STATE(1021), 1, + STATE(1125), 1, sym__expression, - STATE(1910), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75079,13 +76457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75101,50 +76479,47 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12000] = 22, + [13727] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2176), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2206), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1018), 1, + STATE(843), 1, sym__expression, - STATE(1913), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -75157,16 +76532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75174,55 +76544,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12100] = 22, + [13820] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2178), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2208), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1016), 1, + STATE(843), 1, sym__expression, - STATE(1704), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -75235,16 +76606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75252,55 +76618,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12200] = 22, + [13913] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2180), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2210), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(1049), 1, + STATE(843), 1, sym__expression, - STATE(1881), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -75313,16 +76680,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75330,55 +76692,56 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12300] = 22, + [14006] = 19, 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(1751), 1, - sym_identifier, - ACTIONS(2182), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2212), 1, + anon_sym_RBRACK, + STATE(753), 1, sym_string_literal, - STATE(995), 1, + STATE(843), 1, sym__expression, - STATE(1800), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -75391,16 +76754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75408,12 +76766,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12400] = 22, + [14099] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75426,16 +76788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2184), 1, - anon_sym_RPAREN, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1015), 1, + STATE(954), 1, sym__expression, - STATE(1825), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75469,13 +76827,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75491,50 +76849,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12500] = 22, + [14193] = 18, 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(1751), 1, - sym_identifier, - ACTIONS(2186), 1, - anon_sym_RPAREN, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1075), 1, + STATE(768), 1, sym__expression, - STATE(1736), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 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, @@ -75547,16 +76900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75564,46 +76912,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [12600] = 22, + [14283] = 20, 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(1751), 1, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(2188), 1, - anon_sym_SEMI, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1045), 1, + STATE(1129), 1, sym__expression, - STATE(1701), 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, anon_sym_asm, anon_sym___asm__, @@ -75613,6 +76949,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75625,13 +76973,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75647,7 +76995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12700] = 22, + [14377] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75660,16 +77008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2190), 1, - anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1061), 1, + STATE(1006), 1, sym__expression, - STATE(1857), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75703,13 +77047,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75725,7 +77069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12800] = 22, + [14471] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -75734,19 +77078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1190), 1, - anon_sym_LBRACE, - ACTIONS(1761), 1, - sym_identifier, ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(812), 1, - sym_initializer_list, - STATE(837), 1, + STATE(1126), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -75757,16 +77097,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -75781,13 +77121,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75803,7 +77143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12900] = 22, + [14565] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75816,16 +77156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2192), 1, - anon_sym_SEMI, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1006), 1, + STATE(1024), 1, sym__expression, - STATE(1773), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75859,13 +77195,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -75881,7 +77217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13000] = 19, + [14659] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -75890,15 +77226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - ACTIONS(2194), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(1124), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -75906,22 +77242,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -75934,11 +77269,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75946,56 +77286,51 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13093] = 19, + [14753] = 20, 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(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2196), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(1127), 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(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76008,11 +77343,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76020,56 +77360,126 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13186] = 19, + [14847] = 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(1841), 1, + sym_identifier, + ACTIONS(2214), 1, + anon_sym_LBRACE, + STATE(812), 1, + sym_ms_call_modifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1349), 1, + sym__declaration_specifiers, + STATE(464), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 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(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [14943] = 20, 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(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2198), 1, - anon_sym_RBRACK, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(936), 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(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76082,11 +77492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76094,48 +77509,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13279] = 21, + [15037] = 20, 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(1751), 1, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(2200), 1, - anon_sym_COLON, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1117), 1, + STATE(1102), 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__, @@ -76145,6 +77542,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76157,13 +77566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76179,48 +77588,120 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13376] = 21, + [15131] = 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(1841), 1, + sym_identifier, + ACTIONS(2216), 1, + anon_sym_LBRACE, + STATE(814), 1, + sym_ms_call_modifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1341), 1, + sym__declaration_specifiers, + STATE(487), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 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(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [15227] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(968), 1, + STATE(769), 1, sym__expression, - STATE(1624), 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, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 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, @@ -76233,16 +77714,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76250,53 +77726,54 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13473] = 21, + [15317] = 18, 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(1751), 1, - sym_identifier, - ACTIONS(2202), 1, - anon_sym_COLON, - STATE(754), 1, + ACTIONS(1450), 1, + anon_sym_sizeof, + ACTIONS(2218), 1, + anon_sym_LPAREN2, + STATE(753), 1, sym_string_literal, - STATE(1083), 1, + STATE(827), 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, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -76309,16 +77786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76326,12 +77798,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13570] = 19, + [15407] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76344,11 +77820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2204), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(837), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76365,7 +77839,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -76384,7 +77858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76405,124 +77879,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13663] = 21, + [15497] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1002), 1, + STATE(792), 1, sym__expression, - STATE(1684), 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, 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [13760] = 21, - 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(1751), 1, - sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(1069), 1, - sym__expression, - STATE(1897), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 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, + ACTIONS(149), 3, sym_true, sym_false, + sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -76535,16 +77930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76552,12 +77942,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [13857] = 19, + [15587] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76570,11 +77964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2206), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(842), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76591,7 +77983,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -76610,7 +78002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76631,7 +78023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13950] = 21, + [15677] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76644,13 +78036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2208), 1, - anon_sym_COLON, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1113), 1, + STATE(973), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76685,13 +78075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76707,7 +78097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14047] = 19, + [15771] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76720,11 +78110,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2210), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(839), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76741,7 +78129,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -76760,7 +78148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76781,7 +78169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14140] = 19, + [15861] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76794,11 +78182,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2212), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(834), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76815,7 +78201,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -76834,7 +78220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76855,7 +78241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14233] = 19, + [15951] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76868,11 +78254,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2214), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(845), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -76889,7 +78273,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -76908,7 +78292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -76929,7 +78313,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14326] = 19, + [16041] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -76938,108 +78322,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - ACTIONS(2216), 1, - anon_sym_RBRACK, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(788), 1, sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(25), 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(806), 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, - [14419] = 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(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - ACTIONS(2218), 1, - anon_sym_RBRACK, - STATE(754), 1, - sym_string_literal, - STATE(838), 1, - sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -77056,7 +78364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77077,7 +78385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14512] = 21, + [16131] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77090,13 +78398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2220), 1, - anon_sym_COLON, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1087), 1, + STATE(1095), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77131,13 +78437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77153,7 +78459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14609] = 20, + [16225] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77162,15 +78468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1763), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1097), 1, + STATE(844), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77178,21 +78482,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1765), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -77205,16 +78510,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77222,12 +78522,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14703] = 20, + [16315] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77240,11 +78544,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(959), 1, + STATE(1120), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77279,13 +78583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77301,7 +78605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14797] = 18, + [16409] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77310,32 +78614,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(811), 1, + STATE(835), 1, sym__expression, - 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, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -77352,7 +78656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77373,7 +78677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14887] = 20, + [16499] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77382,15 +78686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1763), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1108), 1, + STATE(838), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77398,21 +78700,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1765), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -77425,16 +78728,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77442,12 +78740,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14981] = 18, + [16589] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77456,32 +78758,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(841), 1, + STATE(793), 1, sym__expression, + 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(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -77498,7 +78800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77519,37 +78821,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15071] = 20, + [16679] = 20, 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(1751), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1106), 1, + STATE(1098), 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__, @@ -77559,80 +78849,18 @@ static const uint16_t ts_small_parse_table[] = { 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [15165] = 20, - 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(1751), 1, - sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(948), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(77), 2, + ACTIONS(1773), 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, @@ -77645,13 +78873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77667,7 +78895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15259] = 18, + [16773] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77676,32 +78904,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(840), 1, + STATE(774), 1, sym__expression, + 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(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -77718,7 +78946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77739,7 +78967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15349] = 20, + [16863] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77752,11 +78980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(980), 1, + STATE(948), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -77791,13 +79019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77813,7 +79041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15443] = 20, + [16957] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -77822,15 +79050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1088), 1, + STATE(1099), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77841,16 +79069,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -77865,13 +79093,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77887,24 +79115,98 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15537] = 20, + [17051] = 20, 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(1761), 1, + ACTIONS(1753), 1, sym_identifier, + STATE(753), 1, + sym_string_literal, + STATE(914), 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(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [17145] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1079), 1, + STATE(1134), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -77915,16 +79217,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -77939,13 +79241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -77961,25 +79263,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15631] = 20, + [17239] = 20, 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(1761), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1078), 1, + STATE(1123), 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__, @@ -77989,18 +79303,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78013,13 +79315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78035,45 +79337,46 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15725] = 18, + [17333] = 20, 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(1180), 1, - anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(780), 1, + STATE(910), 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(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(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78086,11 +79389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78098,54 +79406,51 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15815] = 18, + [17427] = 20, 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(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(1753), 1, + sym_identifier, + STATE(753), 1, sym_string_literal, - STATE(836), 1, + STATE(964), 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(1442), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, + ACTIONS(149), 2, sym_true, sym_false, - sym_identifier, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78158,11 +79463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78170,16 +79480,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15905] = 20, + [17521] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78188,15 +79494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1099), 1, + STATE(1133), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78207,16 +79513,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -78231,13 +79537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78253,46 +79559,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15999] = 20, + [17615] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1050), 1, + STATE(829), 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, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -78305,16 +79610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78322,12 +79622,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [16093] = 20, + [17705] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78336,15 +79640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1101), 1, + STATE(1119), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78355,16 +79659,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -78379,13 +79683,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78401,7 +79705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16187] = 20, + [17799] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78414,11 +79718,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1103), 1, + STATE(956), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78453,13 +79757,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78475,99 +79779,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16281] = 20, + [17893] = 20, 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(1761), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1102), 1, + STATE(961), 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(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(77), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - 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(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [16375] = 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(1761), 1, - sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(1105), 1, - sym__expression, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -78577,18 +79819,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78601,13 +79831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78623,25 +79853,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16469] = 20, + [17987] = 20, 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(1761), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(840), 1, + STATE(963), 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__, @@ -78651,18 +79893,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78675,13 +79905,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78697,25 +79927,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16563] = 20, + [18081] = 20, 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(1761), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1091), 1, + STATE(774), 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__, @@ -78725,18 +79967,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -78749,13 +79979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78771,7 +80001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16657] = 20, + [18175] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78784,11 +80014,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(797), 1, + STATE(975), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78823,13 +80053,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78845,7 +80075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16751] = 20, + [18269] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78854,37 +80084,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + ACTIONS(2220), 1, + anon_sym_LPAREN2, + STATE(753), 1, sym_string_literal, - STATE(1109), 1, + STATE(790), 1, sym__expression, + 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(149), 2, - sym_true, - sym_false, - ACTIONS(1765), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1186), 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, @@ -78897,16 +80126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78914,12 +80138,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [16845] = 20, + [18359] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -78928,15 +80156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1119), 1, + STATE(1091), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -78947,16 +80175,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -78971,13 +80199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -78993,46 +80221,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16939] = 20, + [18453] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1032), 1, + STATE(786), 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, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 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, @@ -79045,16 +80272,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79062,12 +80284,91 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17033] = 20, + [18543] = 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(1841), 1, + sym_identifier, + ACTIONS(2222), 1, + anon_sym_LBRACE, + STATE(816), 1, + sym_ms_call_modifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1339), 1, + sym__declaration_specifiers, + STATE(205), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 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(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [18639] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79076,15 +80377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, + ACTIONS(1763), 1, sym_identifier, - ACTIONS(1773), 1, - anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(1765), 1, anon_sym_LPAREN2, - STATE(754), 1, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1084), 1, + STATE(1135), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79095,16 +80396,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -79119,13 +80420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79141,7 +80442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17127] = 20, + [18733] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79150,15 +80451,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1763), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(832), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79166,21 +80465,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(149), 2, - sym_true, - sym_false, - ACTIONS(1765), 2, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -79193,16 +80493,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79210,12 +80505,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17221] = 18, + [18823] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79224,32 +80523,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1194), 1, - anon_sym_sizeof, - ACTIONS(2224), 1, + ACTIONS(1440), 1, anon_sym_LPAREN2, - STATE(754), 1, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(769), 1, + STATE(830), 1, sym__expression, - 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, + ACTIONS(1442), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1444), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79266,7 +80565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79287,7 +80586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17311] = 18, + [18913] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79296,13 +80595,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(797), 1, + STATE(798), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -79313,13 +80612,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(149), 3, @@ -79338,7 +80637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79359,7 +80658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17401] = 18, + [19003] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79368,13 +80667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(838), 1, + STATE(832), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79382,22 +80683,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(149), 2, + sym_true, + sym_false, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79410,11 +80710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(847), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79422,18 +80727,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17491] = 20, + [19097] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -79442,13 +80745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(2226), 1, - anon_sym_LPAREN2, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(946), 1, + STATE(989), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79483,13 +80784,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [19191] = 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(1763), 1, + sym_identifier, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, + sym_string_literal, + STATE(1136), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79505,7 +80880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17585] = 18, + [19285] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79514,32 +80889,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(831), 1, + STATE(803), 1, sym__expression, + 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(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -79556,7 +80931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79577,11 +80952,9 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17675] = 20, + [19375] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, ACTIONS(79), 1, anon_sym_sizeof, ACTIONS(81), 1, @@ -79590,11 +80963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + ACTIONS(2224), 1, + anon_sym_LPAREN2, + STATE(753), 1, sym_string_literal, - STATE(1085), 1, + STATE(946), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79629,13 +81004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79651,7 +81026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17769] = 18, + [19469] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79660,13 +81035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(768), 1, + STATE(806), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -79677,13 +81052,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(149), 3, @@ -79702,7 +81077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79723,25 +81098,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17859] = 20, + [19559] = 20, 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(1761), 1, + ACTIONS(1753), 1, sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(834), 1, + STATE(1112), 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__, @@ -79751,18 +81138,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1771), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -79775,13 +81150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79797,46 +81172,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17953] = 20, + [19653] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1104), 1, + STATE(807), 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, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 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, @@ -79849,16 +81223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79866,12 +81235,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [18047] = 18, + [19743] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -79880,13 +81253,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, + ACTIONS(1440), 1, + anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(842), 1, + STATE(831), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -79903,7 +81276,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -79922,7 +81295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -79943,7 +81316,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18137] = 20, + [19833] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79956,11 +81329,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(813), 1, + STATE(809), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79995,13 +81368,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80017,7 +81390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18231] = 20, + [19927] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80030,11 +81403,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(952), 1, + STATE(1131), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80069,13 +81442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80091,7 +81464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18325] = 20, + [20021] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80104,11 +81477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1090), 1, + STATE(1104), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80143,13 +81516,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(797), 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, + [20115] = 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(1763), 1, + sym_identifier, + ACTIONS(1775), 1, + anon_sym_sizeof, + ACTIONS(2226), 1, + anon_sym_LPAREN2, + STATE(753), 1, + sym_string_literal, + STATE(1128), 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(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + 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(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80165,7 +81612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18419] = 18, + [20209] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80178,9 +81625,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(1450), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(845), 1, + STATE(833), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80197,7 +81644,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1448), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(149), 3, @@ -80216,7 +81663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80237,7 +81684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18509] = 20, + [20299] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80246,15 +81693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, ACTIONS(1763), 1, + sym_identifier, + ACTIONS(1765), 1, anon_sym_LPAREN2, - ACTIONS(1773), 1, + ACTIONS(1775), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1112), 1, + STATE(837), 1, sym__expression, ACTIONS(85), 2, anon_sym_asm, @@ -80265,16 +81712,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, - ACTIONS(1765), 2, + ACTIONS(1767), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, + ACTIONS(1769), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1769), 2, + ACTIONS(1771), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1771), 2, + ACTIONS(1773), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(89), 5, @@ -80289,13 +81736,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(848), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80311,46 +81758,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18603] = 20, + [20393] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1095), 1, + STATE(836), 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, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -80363,16 +81809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80380,12 +81821,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [18697] = 20, + [20483] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80398,11 +81843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(951), 1, + STATE(932), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80437,13 +81882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80459,37 +81904,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18791] = 20, + [20577] = 20, 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(1751), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1100), 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(77), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, @@ -80499,6 +81932,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -80511,13 +81956,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80533,7 +81978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18885] = 18, + [20671] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80542,32 +81987,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(847), 1, + STATE(778), 1, sym__expression, + 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(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -80584,7 +82029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80605,7 +82050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18975] = 20, + [20761] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80618,11 +82063,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(1011), 1, + STATE(1063), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80657,13 +82102,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80679,7 +82124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19069] = 20, + [20855] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80692,11 +82137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(950), 1, + STATE(787), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80731,13 +82176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80753,7 +82198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19163] = 18, + [20949] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -80762,32 +82207,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(830), 1, + STATE(787), 1, sym__expression, + 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(1442), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1448), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(149), 3, sym_true, sym_false, @@ -80804,7 +82249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80825,46 +82270,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19253] = 20, + [21039] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1440), 1, + anon_sym_LPAREN2, + ACTIONS(1450), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(1111), 1, + STATE(843), 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, + ACTIONS(1442), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1444), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1448), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1771), 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, @@ -80877,16 +82321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80894,12 +82333,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19347] = 20, + [21129] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -80912,11 +82355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(947), 1, + STATE(1105), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -80951,13 +82394,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -80973,37 +82416,100 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19441] = 20, + [21223] = 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(1841), 1, + sym_identifier, + ACTIONS(2228), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym_ms_call_modifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1343), 1, + sym__declaration_specifiers, + STATE(499), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 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(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [21319] = 20, 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(1751), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(957), 1, + STATE(1106), 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__, @@ -81013,6 +82519,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81025,13 +82543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81047,7 +82565,82 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19535] = 18, + [21413] = 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(1841), 1, + sym_identifier, + ACTIONS(2230), 1, + anon_sym_LBRACE, + STATE(817), 1, + sym_ms_call_modifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1355), 1, + sym__declaration_specifiers, + STATE(139), 3, + sym_function_definition, + sym_declaration, + sym_declaration_list, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 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(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [21509] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -81056,13 +82649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1180), 1, + ACTIONS(1174), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, + ACTIONS(1188), 1, anon_sym_sizeof, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(813), 1, + STATE(809), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -81073,13 +82666,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(95), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1182), 2, + ACTIONS(1176), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, + ACTIONS(1178), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1192), 2, + ACTIONS(1186), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(149), 3, @@ -81098,7 +82691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 20, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81119,37 +82712,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19625] = 20, + [21599] = 20, 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(1751), 1, + ACTIONS(1763), 1, sym_identifier, - STATE(754), 1, + ACTIONS(1765), 1, + anon_sym_LPAREN2, + ACTIONS(1775), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(956), 1, + STATE(842), 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__, @@ -81159,6 +82740,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(149), 2, sym_true, sym_false, + ACTIONS(1767), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1769), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1771), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(1773), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, @@ -81171,13 +82764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(847), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81193,46 +82786,45 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19719] = 20, + [21693] = 18, 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(1751), 1, - sym_identifier, - STATE(754), 1, + ACTIONS(1174), 1, + anon_sym_LPAREN2, + ACTIONS(1188), 1, + anon_sym_sizeof, + STATE(753), 1, sym_string_literal, - STATE(955), 1, + STATE(767), 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, + ACTIONS(1176), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1178), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1186), 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, @@ -81245,16 +82837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 20, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81262,12 +82849,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19813] = 20, + [21783] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -81280,11 +82871,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(147), 1, sym_number_literal, - ACTIONS(1751), 1, + ACTIONS(1753), 1, sym_identifier, - STATE(754), 1, + STATE(753), 1, sym_string_literal, - STATE(953), 1, + STATE(1107), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -81319,13 +82910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, + STATE(811), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(806), 15, + STATE(797), 15, sym__expression_not_binary, sym_conditional_expression, sym_assignment_expression, @@ -81341,1615 +82932,1825 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19907] = 18, + [21877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, + ACTIONS(2232), 1, + sym_identifier, + STATE(754), 2, sym_string_literal, - STATE(834), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, + 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(1972), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + ACTIONS(1966), 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, - ACTIONS(1769), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + [21942] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2234), 1, + sym_identifier, + STATE(755), 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(2238), 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, - ACTIONS(149), 3, - sym_true, - sym_false, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + ACTIONS(2236), 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, + [22007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2240), 1, 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, + STATE(755), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2247), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 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, - [19997] = 18, + ACTIONS(2245), 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(2243), 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, + [22072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(829), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(2250), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, 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, + ACTIONS(2252), 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, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 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, - [20087] = 20, + [22129] = 3, 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(1751), 1, - sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(949), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2254), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(77), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, + sym_identifier, + ACTIONS(2256), 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, - 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_DOT, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [20181] = 18, + [22186] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, + ACTIONS(1964), 1, + anon_sym_const, + ACTIONS(1968), 1, anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(833), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(1974), 1, + anon_sym_STAR, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1995), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(1977), 7, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(1983), 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(1972), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, + 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(1966), 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, - ACTIONS(1769), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, + anon_sym_DOT, + anon_sym_DASH_GT, + [22254] = 20, + 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(1841), 1, 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(806), 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, - [20271] = 18, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1863), 1, + anon_sym_RPAREN, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1289), 1, + sym__declaration_specifiers, + STATE(1638), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [22341] = 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(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(835), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, + 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(1841), 1, + sym_identifier, + ACTIONS(1861), 1, + anon_sym_DOT_DOT_DOT, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1289), 1, + sym__declaration_specifiers, + STATE(1705), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [22425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2260), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2258), 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, - ACTIONS(1769), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + [22477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, - ACTIONS(149), 3, - sym_true, - sym_false, - sym_identifier, - ACTIONS(89), 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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, - ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(806), 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, - [20361] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, + ACTIONS(1755), 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, - ACTIONS(81), 1, anon_sym_offsetof, - ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1751), 1, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(787), 1, - sym__expression, - ACTIONS(21), 2, + [22529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1761), 21, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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, + sym_number_literal, 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [20455] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(79), 1, + ACTIONS(1759), 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, - ACTIONS(81), 1, anon_sym_offsetof, - ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1751), 1, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(954), 1, - sym__expression, - ACTIONS(21), 2, + [22581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2258), 21, + anon_sym_LPAREN2, 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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, + sym_number_literal, 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [20549] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, + ACTIONS(2260), 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, - ACTIONS(83), 1, anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(846), 1, - sym__expression, - ACTIONS(85), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(95), 2, + sym_true, + sym_false, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1442), 2, + sym_identifier, + [22633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2264), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2262), 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, - ACTIONS(1769), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + [22684] = 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, - 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(806), 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, - [20639] = 20, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2266), 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, + [22735] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(2272), 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(1751), 1, - sym_identifier, - STATE(754), 1, - sym_string_literal, - STATE(1096), 1, - sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2274), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + 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), 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, + [22798] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2290), 1, + anon_sym_AMP_AMP, + ACTIONS(2292), 1, + anon_sym_PIPE, + ACTIONS(2294), 1, + anon_sym_CARET, + ACTIONS(2296), 1, + anon_sym_AMP, + ACTIONS(2306), 1, + anon_sym_EQ, + ACTIONS(2308), 1, + anon_sym_QMARK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2284), 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, + [22883] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2294), 1, + anon_sym_CARET, + ACTIONS(2296), 1, anon_sym_AMP, - ACTIONS(77), 2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2274), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2280), 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(818), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [20733] = 18, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2270), 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, + [22960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(844), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(2312), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, 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(806), 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, - [20823] = 18, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2310), 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, + 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, + [23011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1440), 1, - anon_sym_LPAREN2, - ACTIONS(1450), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(843), 1, - sym__expression, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1442), 2, + ACTIONS(2316), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1444), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1448), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1769), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, 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(806), 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, - [20913] = 18, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2314), 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, + [23062] = 3, 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(754), 1, - sym_string_literal, - STATE(789), 1, - sym__expression, - 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, + ACTIONS(2320), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2318), 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, - 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(806), 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, - [21003] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23113] = 3, 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(754), 1, - sym_string_literal, - STATE(792), 1, - sym__expression, - 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, + ACTIONS(2324), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2322), 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, - 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(806), 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, - [21093] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23164] = 8, 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, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(793), 1, - sym__expression, - 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, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 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(806), 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, - [21183] = 18, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2274), 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), 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, + [23225] = 3, 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(754), 1, - sym_string_literal, - STATE(796), 1, - sym__expression, - ACTIONS(25), 2, + ACTIONS(2328), 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, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2326), 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, + [23276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2332), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2330), 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, - 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(806), 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, - [21273] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23327] = 8, 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, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(798), 1, - sym__expression, - 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, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 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(806), 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, - [21363] = 18, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2336), 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(2334), 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, + [23388] = 8, 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, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(799), 1, - sym__expression, - ACTIONS(25), 2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2340), 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, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2338), 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, + [23449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2344), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2342), 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, - 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(806), 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, - [21453] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23500] = 3, 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(754), 1, - sym_string_literal, - STATE(800), 1, - sym__expression, - 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, + ACTIONS(2348), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2346), 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, + 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, - 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(806), 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, - [21543] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2352), 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(2350), 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, + [23602] = 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(1180), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(801), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2290), 1, + anon_sym_AMP_AMP, + ACTIONS(2292), 1, + anon_sym_PIPE, + ACTIONS(2294), 1, + anon_sym_CARET, + ACTIONS(2296), 1, 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, + ACTIONS(2356), 1, + anon_sym_EQ, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 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(806), 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, - [21633] = 20, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2354), 17, + 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, + 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, + [23685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_offsetof, - ACTIONS(83), 1, - anon_sym__Generic, - ACTIONS(147), 1, - sym_number_literal, - ACTIONS(1761), 1, - sym_identifier, - ACTIONS(1763), 1, - anon_sym_LPAREN2, - ACTIONS(1773), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(1118), 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(1765), 2, + ACTIONS(2360), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1767), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1769), 2, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(1771), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2358), 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, - 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(848), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(806), 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, - [21727] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23736] = 3, 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(754), 1, - sym_string_literal, - STATE(787), 1, - sym__expression, - ACTIONS(25), 2, + ACTIONS(2364), 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, - ACTIONS(85), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(95), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1182), 2, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2362), 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, + [23787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2368), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1184), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1192), 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2366), 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, - 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(806), 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, - [21817] = 18, + anon_sym_DOT, + anon_sym_DASH_GT, + [23838] = 15, 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, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(1194), 1, - anon_sym_sizeof, - STATE(754), 1, - sym_string_literal, - STATE(802), 1, - sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2296), 1, 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, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 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(806), 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, - [21907] = 6, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2274), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2270), 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, + [23913] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, - sym_identifier, - STATE(753), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2237), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2235), 13, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2372), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -82962,21 +84763,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2233), 29, + anon_sym_EQ, + ACTIONS(2370), 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, + 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, + [23972] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2274), 1, + anon_sym_EQ, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2290), 1, + anon_sym_AMP_AMP, + ACTIONS(2292), 1, + anon_sym_PIPE, + ACTIONS(2294), 1, + anon_sym_CARET, + ACTIONS(2296), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2270), 18, 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, @@ -82989,25 +84853,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, - anon_sym_DOT, - anon_sym_DASH_GT, - [21971] = 6, + [24053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, - sym_identifier, - STATE(755), 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(1970), 13, + ACTIONS(2376), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83021,7 +84870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1964), 29, + ACTIONS(2374), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83032,6 +84881,7 @@ 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, @@ -83051,38 +84901,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22035] = 6, + [24104] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2242), 1, - sym_identifier, - STATE(753), 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), 13, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2380), 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(2244), 29, + ACTIONS(2378), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83090,9 +84943,8 @@ 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, @@ -83105,14 +84957,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, - anon_sym_DOT, - anon_sym_DASH_GT, - [22099] = 3, + [24171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 14, + ACTIONS(2384), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83126,8 +84974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(2250), 34, + ACTIONS(2382), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83138,6 +84985,7 @@ 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, @@ -83157,43 +85005,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [22155] = 3, + [24222] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2252), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2274), 1, + anon_sym_EQ, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2292), 1, anon_sym_PIPE, + ACTIONS(2294), 1, anon_sym_CARET, + ACTIONS(2296), 1, anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(2254), 34, + ACTIONS(2276), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2270), 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_SEMI, + anon_sym___attribute__, anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83206,356 +85067,75 @@ 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, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [22211] = 10, + [24301] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1962), 1, - anon_sym_const, - ACTIONS(1966), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(1972), 1, - anon_sym_STAR, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1987), 2, - anon_sym_RPAREN, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(1975), 7, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(1981), 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(1970), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2288), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2290), 1, + anon_sym_AMP_AMP, + ACTIONS(2292), 1, anon_sym_PIPE, + ACTIONS(2294), 1, anon_sym_CARET, + ACTIONS(2296), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1964), 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, + ACTIONS(2308), 1, anon_sym_QMARK, + ACTIONS(2388), 1, + anon_sym_EQ, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - [22279] = 20, - 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(1831), 1, - sym_identifier, - ACTIONS(1857), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1859), 1, - anon_sym_RPAREN, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1232), 1, - sym__declaration_specifiers, - STATE(1507), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(43), 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, - [22366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2258), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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(2256), 23, + ACTIONS(2286), 2, 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, - [22418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1755), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, anon_sym_STAR, - anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2386), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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(1753), 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, - [22470] = 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(1831), 1, - sym_identifier, - ACTIONS(1857), 1, - anon_sym_DOT_DOT_DOT, - STATE(938), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1232), 1, - sym__declaration_specifiers, - STATE(1672), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(821), 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(43), 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, - [22554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1759), 21, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - 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(1757), 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, - [22606] = 3, + 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, + [24386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2256), 13, + ACTIONS(2392), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83569,7 +85149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2258), 30, + ACTIONS(2390), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83580,7 +85160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_RBRACK, @@ -83600,84 +85180,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [22657] = 18, - 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(1831), 1, - sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(973), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1307), 1, - sym__function_declaration_specifiers, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 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(43), 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, - [22737] = 8, + [24437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2396), 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(2394), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2266), 1, + 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, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, + 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, - ACTIONS(2270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2264), 13, + [24488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83691,9 +85245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2260), 22, + ACTIONS(2398), 30, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -83701,7 +85256,10 @@ 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, @@ -83714,122 +85272,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22797] = 18, - 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(1831), 1, - sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(973), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1297), 1, - sym__function_declaration_specifiers, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 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(43), 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, - [22877] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2280), 1, - anon_sym_AMP_AMP, - ACTIONS(2282), 1, - anon_sym_PIPE, - ACTIONS(2284), 1, - anon_sym_CARET, - ACTIONS(2286), 1, - anon_sym_AMP, - ACTIONS(2296), 1, - anon_sym_EQ, - ACTIONS(2298), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + [24539] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 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(2292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2294), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2272), 15, + anon_sym_EQ, + ACTIONS(2402), 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, @@ -83840,48 +85320,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [22961] = 11, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [24590] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2286), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, + ACTIONS(2298), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, anon_sym_LT_LT, anon_sym_GT_GT, ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2302), 6, + ACTIONS(2274), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2300), 22, + ACTIONS(2270), 19, 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, @@ -83895,10 +85383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23027] = 3, + [24663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2306), 13, + ACTIONS(2408), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83912,7 +85400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2304), 29, + ACTIONS(2406), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83923,6 +85411,7 @@ 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, @@ -83942,10 +85431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23077] = 3, + [24714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 13, + ACTIONS(2412), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -83959,7 +85448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2308), 29, + ACTIONS(2410), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -83970,9 +85459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -83989,10 +85479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23127] = 3, + [24765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 13, + ACTIONS(2416), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84006,7 +85496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2312), 29, + ACTIONS(2414), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84017,9 +85507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + anon_sym___attribute__, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84036,10 +85527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23177] = 3, + [24816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2318), 13, + ACTIONS(2420), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84053,7 +85544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2316), 29, + ACTIONS(2418), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84064,6 +85555,7 @@ 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, @@ -84083,37 +85575,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23227] = 3, + [24867] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2322), 13, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2300), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2302), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 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(2320), 29, + ACTIONS(2270), 21, 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, @@ -84126,14 +85633,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, - anon_sym_DOT, - anon_sym_DASH_GT, - [23277] = 3, + [24938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2326), 13, + ACTIONS(2424), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84147,7 +85650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2324), 29, + ACTIONS(2422), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84158,6 +85661,7 @@ 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, @@ -84177,10 +85681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23327] = 3, + [24989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2330), 13, + ACTIONS(2428), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84194,7 +85698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2328), 29, + ACTIONS(2426), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84205,9 +85709,10 @@ 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_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -84224,27 +85729,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23377] = 3, + [25040] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2334), 13, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2286), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2304), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 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(2332), 29, + ACTIONS(2270), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84252,9 +85771,8 @@ 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, @@ -84267,19 +85785,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [25107] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - [23427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2338), 13, + ACTIONS(2286), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -84288,10 +85816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2336), 29, + ACTIONS(2270), 23, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -84299,9 +85826,8 @@ 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, @@ -84314,14 +85840,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, - anon_sym_DOT, - anon_sym_DASH_GT, - [23477] = 3, + [25172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(2432), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84335,7 +85857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2340), 29, + ACTIONS(2430), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84346,6 +85868,7 @@ 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, @@ -84365,60 +85888,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23527] = 20, + [25223] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2280), 1, - anon_sym_AMP_AMP, - ACTIONS(2282), 1, - anon_sym_PIPE, - ACTIONS(2284), 1, - anon_sym_CARET, - ACTIONS(2286), 1, - anon_sym_AMP, - ACTIONS(2298), 1, - anon_sym_QMARK, - ACTIONS(2346), 1, - anon_sym_EQ, - STATE(770), 1, + anon_sym_LBRACK, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2436), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 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(2292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2294), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2344), 15, + anon_sym_EQ, + ACTIONS(2434), 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, @@ -84429,10 +85941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [23611] = 3, + [25284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 13, + ACTIONS(2440), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84446,7 +85958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2348), 29, + ACTIONS(2438), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -84457,6 +85969,7 @@ 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, @@ -84476,7 +85989,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [23661] = 18, + [25335] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1983), 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(1972), 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(1966), 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_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [25389] = 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(1841), 1, + sym_identifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1371), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [25466] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(813), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2446), 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(2442), 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(2444), 19, + 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, + [25519] = 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(1841), 1, + sym_identifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1370), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [25596] = 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(1841), 1, + sym_identifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1358), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [25673] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -84493,22 +86283,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(973), 1, + STATE(945), 1, sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1305), 1, - sym__function_declaration_specifiers, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1375), 1, + sym__declaration_specifiers, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -84538,247 +86326,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [23741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2354), 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(2352), 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, - [23791] = 3, + [25750] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2358), 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(2356), 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, - [23841] = 3, + 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(1841), 1, + sym_identifier, + STATE(945), 1, + sym__type_specifier, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1368), 1, + sym__declaration_specifiers, + ACTIONS(45), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(819), 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(43), 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, + [25827] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2362), 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(2360), 29, + ACTIONS(2456), 1, + anon_sym___attribute__, + ACTIONS(2459), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2462), 1, + anon_sym___declspec, + ACTIONS(2451), 5, 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, - [23891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2366), 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(2364), 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_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, - [23941] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2453), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(818), 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(2465), 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(2449), 11, + anon_sym___based, anon_sym_LBRACK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2370), 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(2368), 22, - 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_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, - [24001] = 18, + 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, + [25887] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -84795,22 +86454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(973), 1, + STATE(947), 1, sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1313), 1, - sym__function_declaration_specifiers, + STATE(981), 1, + aux_sym_sized_type_specifier_repeat1, ACTIONS(45), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -84823,7 +86478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(819), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -84840,50 +86495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [24081] = 10, + [25961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2274), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(2368), 22, - 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_RBRACE, + ACTIONS(1991), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84894,10 +86513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2374), 13, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84910,10 +86526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2372), 29, + ACTIONS(1966), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84922,11 +86536,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2470), 19, + 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(2468), 20, + anon_sym_DASH, + anon_sym_PLUS, + 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_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [26061] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1993), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84937,14 +86604,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, - [24195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 13, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -84957,10 +86617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2376), 29, + ACTIONS(1966), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84969,11 +86627,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26114] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1989), 1, + anon_sym_COLON, + ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -84984,45 +86651,22 @@ 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, - [24245] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2370), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - anon_sym_EQ, - ACTIONS(2368), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1966), 15, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -85030,66 +86674,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - 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, - [24311] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, anon_sym_LBRACK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, + anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + [26167] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, anon_sym_EQ, - ACTIONS(2368), 20, - 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_RBRACE, + ACTIONS(1985), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85100,10 +86698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2382), 13, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85116,10 +86711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2380), 29, + ACTIONS(1966), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85128,11 +86721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1981), 1, anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85143,14 +86745,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, - [24431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2386), 13, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85163,10 +86758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2384), 29, + ACTIONS(1966), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85175,11 +86768,20 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_EQ, + ACTIONS(1987), 1, + anon_sym_COLON, + ACTIONS(1983), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -85190,109 +86792,75 @@ 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, - [24481] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2290), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2292), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2370), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2368), 18, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1966), 15, 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_COLON, + anon_sym_LBRACK, 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, - [24553] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [26326] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - STATE(770), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2390), 13, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2380), 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(2388), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2378), 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_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85304,54 +86872,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24613] = 15, + [26388] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2286), 1, + ACTIONS(2356), 1, + anon_sym_EQ, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2482), 1, + anon_sym_AMP_AMP, + ACTIONS(2484), 1, + anon_sym_PIPE, + ACTIONS(2486), 1, + anon_sym_CARET, + ACTIONS(2488), 1, anon_sym_AMP, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 2, + ACTIONS(2492), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2292), 2, + ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2370), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2368), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(2354), 12, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85363,55 +86931,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24687] = 16, + [26466] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2284), 1, - anon_sym_CARET, - ACTIONS(2286), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2488), 1, anon_sym_AMP, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 2, + ACTIONS(2492), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2292), 2, + ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2370), 2, + ACTIONS(2274), 3, anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, - ACTIONS(2276), 3, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2368), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2270), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85423,56 +86986,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24763] = 17, + [26536] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2282), 1, - anon_sym_PIPE, - ACTIONS(2284), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2486), 1, anon_sym_CARET, - ACTIONS(2286), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2370), 1, - anon_sym_EQ, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2274), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 2, + ACTIONS(2492), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2292), 2, + ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2368), 18, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2270), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85484,57 +87042,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24841] = 18, + [26608] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2274), 1, + anon_sym_EQ, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2280), 1, - anon_sym_AMP_AMP, - ACTIONS(2282), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2484), 1, anon_sym_PIPE, - ACTIONS(2284), 1, + ACTIONS(2486), 1, anon_sym_CARET, - ACTIONS(2286), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2370), 1, - anon_sym_EQ, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 2, + ACTIONS(2492), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2292), 2, + ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2368), 17, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2270), 14, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85546,63 +87099,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [24921] = 9, + [26682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - STATE(770), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 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(2368), 22, - 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_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, - [24983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 13, + ACTIONS(2274), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -85616,21 +87128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2392), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2270), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -85642,167 +87147,53 @@ 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, - [25033] = 18, - 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(1831), 1, - sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(973), 1, - sym__type_specifier, - STATE(1036), 1, - sym_pointer_type, - STATE(1303), 1, - sym__function_declaration_specifiers, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(819), 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(43), 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, - [25113] = 19, + [26738] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, + ACTIONS(2274), 1, + anon_sym_EQ, ACTIONS(2278), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2280), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2482), 1, anon_sym_AMP_AMP, - ACTIONS(2282), 1, + ACTIONS(2484), 1, anon_sym_PIPE, - ACTIONS(2284), 1, + ACTIONS(2486), 1, anon_sym_CARET, - ACTIONS(2286), 1, + ACTIONS(2488), 1, anon_sym_AMP, - ACTIONS(2398), 1, - anon_sym_EQ, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2274), 2, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2288), 2, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2290), 2, + ACTIONS(2492), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2292), 2, + ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2294), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2276), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2396), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - 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, - [25195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2402), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2476), 3, 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(2400), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2270), 13, 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, @@ -85814,184 +87205,56 @@ 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, - [25245] = 3, + [26814] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 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(2278), 1, + anon_sym_LBRACK, + ACTIONS(2306), 1, anon_sym_EQ, - ACTIONS(2404), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2472), 1, anon_sym_LPAREN2, + ACTIONS(2480), 1, anon_sym_PIPE_PIPE, + ACTIONS(2482), 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_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, - [25295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2410), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2484), 1, anon_sym_PIPE, + ACTIONS(2486), 1, anon_sym_CARET, + ACTIONS(2488), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2408), 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, + ACTIONS(2496), 1, 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, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - [25345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2414), 13, + ACTIONS(2474), 2, 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, + ACTIONS(2478), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2412), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2492), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2494), 2, 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, - [25395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2418), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2476), 3, 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(2416), 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, + ACTIONS(2284), 11, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86000,53 +87263,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [25445] = 8, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [26894] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - STATE(770), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2422), 13, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2492), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2494), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 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(2420), 22, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2270), 16, 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_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -86058,15 +87318,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [25505] = 3, + [26960] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -86075,21 +87348,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2424), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2270), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -86101,23 +87367,22 @@ 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, - [25555] = 7, + [27018] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - STATE(770), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, sym_argument_list, - ACTIONS(2270), 2, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2430), 13, + ACTIONS(2436), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86131,18 +87396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2428), 24, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2434), 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_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -86154,40 +87415,49 @@ 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, - [25613] = 3, + [27074] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2490), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2492), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2494), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 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(2432), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(2270), 14, 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, @@ -86199,43 +87469,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [27142] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2388), 1, + anon_sym_EQ, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2480), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2482), 1, + anon_sym_AMP_AMP, + ACTIONS(2484), 1, + anon_sym_PIPE, + ACTIONS(2486), 1, + anon_sym_CARET, + ACTIONS(2488), 1, + anon_sym_AMP, + ACTIONS(2496), 1, + anon_sym_QMARK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - [25663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 13, + ACTIONS(2474), 2, 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, + ACTIONS(2478), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2436), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2490), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2492), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2494), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, + ACTIONS(2476), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2386), 11, anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86246,109 +87529,56 @@ 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, - [25713] = 5, + [27222] = 19, ACTIONS(3), 1, sym_comment, - STATE(816), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2444), 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(2440), 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(2442), 19, + ACTIONS(1865), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(1867), 1, 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, - [25766] = 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(1831), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(979), 1, - sym__type_specifier, - STATE(1008), 1, - sym_pointer_type, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(1327), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1363), 1, + sym__declarator, + STATE(1469), 1, + sym__abstract_declarator, + STATE(1504), 1, + sym_parameter_list, + STATE(1811), 1, + sym_ms_based_modifier, + ACTIONS(2500), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(982), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym_type_definition_repeat1, + STATE(1003), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2502), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1482), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -86358,23 +87588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [25843] = 5, + [27300] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1981), 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(1970), 12, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2336), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86387,202 +87616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 18, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_EQ, + ACTIONS(2334), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [25896] = 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(1831), 1, - sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(975), 1, - sym__type_specifier, - STATE(1008), 1, - sym_pointer_type, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 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(43), 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, - [25973] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2454), 1, - anon_sym___attribute__, - ACTIONS(2457), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2460), 1, - anon_sym___declspec, - ACTIONS(2449), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(2451), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 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(2463), 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(2447), 11, - anon_sym___based, - anon_sym_LBRACK, - 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, - [26033] = 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(1831), 1, - sym_identifier, - STATE(904), 1, - sym__type_specifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 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(43), 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, - [26107] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1985), 1, - anon_sym_COLON, - ACTIONS(1981), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86593,7 +87636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + [27356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2372), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86603,77 +87658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1964), 15, - anon_sym_COMMA, - 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_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [26160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 19, - 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(2466), 20, - anon_sym_DASH, - anon_sym_PLUS, - 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_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [26207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 1, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(1979), 1, - anon_sym_COLON, - ACTIONS(1981), 10, + ACTIONS(2370), 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, @@ -86684,7 +87681,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [27410] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2340), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86697,30 +87711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_EQ, + ACTIONS(2338), 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_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, - [26260] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1994), 1, - anon_sym_COLON, - ACTIONS(1981), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86731,43 +87731,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + [27466] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2478), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 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(1964), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_EQ, + ACTIONS(2270), 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_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, - [26313] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1983), 1, - anon_sym_COLON, - ACTIONS(1981), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86778,12 +87782,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + [27528] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2474), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2476), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2274), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -86791,30 +87812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_EQ, + ACTIONS(2270), 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_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, - [26366] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1977), 1, - anon_sym_EQ, - ACTIONS(1990), 1, - anon_sym_COLON, - ACTIONS(1981), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86825,7 +87832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + [27588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2428), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86838,8 +87848,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, - anon_sym_COMMA, + anon_sym_EQ, + ACTIONS(2426), 24, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86847,21 +87857,29 @@ 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_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, - [26419] = 6, + [27633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1977), 1, + ACTIONS(2508), 1, anon_sym_EQ, - ACTIONS(1992), 1, - anon_sym_COLON, - ACTIONS(1981), 10, + ACTIONS(2510), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -86872,7 +87890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1970), 12, + ACTIONS(1972), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86885,8 +87903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1964), 15, - anon_sym_COMMA, + ACTIONS(1966), 14, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86894,55 +87911,39 @@ 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, - [26472] = 14, + [27682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, + ACTIONS(2312), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2370), 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(2368), 14, + ACTIONS(2310), 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, @@ -86955,22 +87956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26540] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2390), 13, + [27727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2348), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -86984,13 +87977,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2388), 18, + ACTIONS(2346), 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, @@ -87003,492 +87998,731 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26596] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - anon_sym_CARET, - ACTIONS(2486), 1, - anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2370), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2368), 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, - [26668] = 19, + [27772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2398), 1, - anon_sym_EQ, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - anon_sym_CARET, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2396), 12, - 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, - [26746] = 20, + ACTIONS(1424), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1422), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2514), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2512), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2518), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2516), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2522), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2520), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2524), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [27992] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2528), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2534), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2532), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2346), 1, - anon_sym_EQ, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - anon_sym_CARET, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - ACTIONS(2494), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2344), 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, - [26826] = 7, + ACTIONS(2538), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2542), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2430), 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(2428), 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, - [26880] = 20, + anon_sym_COLON, + ACTIONS(2540), 27, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + 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, + [28212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2296), 1, - anon_sym_EQ, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - anon_sym_CARET, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2488), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - ACTIONS(2494), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2272), 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, - [26960] = 17, + ACTIONS(1408), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1406), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_EQ, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - anon_sym_CARET, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2368), 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, - [27034] = 8, + ACTIONS(2546), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2544), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2264), 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(2260), 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, - [27090] = 8, + ACTIONS(2550), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2548), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2422), 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(2420), 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, - [27146] = 19, + ACTIONS(2554), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2552), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2556), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2560), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_STAR, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2566), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2564), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1294), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1349), 1, - sym__declarator, - STATE(1407), 1, - sym__abstract_declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1871), 1, - sym_ms_based_modifier, - ACTIONS(2498), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(961), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(976), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1441), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(43), 8, + [28520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2570), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2568), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -87497,597 +88731,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [27224] = 8, + 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, + [28564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2370), 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(2368), 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, - [27280] = 18, + ACTIONS(1362), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1360), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_EQ, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2484), 1, - anon_sym_CARET, - ACTIONS(2486), 1, - anon_sym_AMP, - ACTIONS(2490), 1, - anon_sym_AMP_AMP, - ACTIONS(2492), 1, - anon_sym_PIPE, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2368), 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, - [27356] = 11, + ACTIONS(2574), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2302), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2300), 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, - [27418] = 13, + ACTIONS(1374), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1372), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2368), 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, - [27484] = 11, + ACTIONS(1404), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1402), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2368), 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, - [27546] = 15, + ACTIONS(2578), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2576), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2486), 1, - anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2476), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2478), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2480), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2482), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2370), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2368), 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, - [27616] = 10, + ACTIONS(1400), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1398), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2472), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2474), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 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(2368), 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, - [27676] = 9, + ACTIONS(2582), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2580), 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, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2470), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2474), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2370), 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(2368), 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, - [27734] = 5, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2468), 27, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + 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, + [28914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2506), 1, - anon_sym_EQ, - ACTIONS(2508), 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(1970), 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(1964), 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, - [27783] = 3, + ACTIONS(1424), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1422), 33, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 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(2312), 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(2538), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2536), 33, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [28998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2366), 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(2364), 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, - [27873] = 3, + ACTIONS(2570), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2568), 33, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 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(2308), 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, - [27918] = 3, + ACTIONS(2550), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2548), 33, + 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_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [29082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2510), 35, + ACTIONS(2552), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88095,8 +89235,6 @@ 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_extern, anon_sym___attribute__, @@ -88123,12 +89261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [27962] = 3, + [29124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2514), 35, + ACTIONS(2556), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88136,8 +89274,6 @@ 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_extern, anon_sym___attribute__, @@ -88164,25 +89300,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28006] = 3, + [29166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, + ACTIONS(2586), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2518), 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2584), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -88205,12 +89339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28050] = 3, + [29208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, + ACTIONS(2562), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2522), 35, + ACTIONS(2560), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88218,8 +89352,6 @@ 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_extern, anon_sym___attribute__, @@ -88246,12 +89378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28094] = 3, + [29250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(2546), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2526), 35, + ACTIONS(2544), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88259,8 +89391,6 @@ 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_extern, anon_sym___attribute__, @@ -88287,12 +89417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28138] = 3, + [29292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2530), 35, + ACTIONS(2564), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88300,8 +89430,6 @@ 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_extern, anon_sym___attribute__, @@ -88328,12 +89456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28182] = 3, + [29334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2534), 35, + ACTIONS(2572), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88341,8 +89469,6 @@ 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_extern, anon_sym___attribute__, @@ -88369,12 +89495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28226] = 3, + [29376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2538), 35, + ACTIONS(2576), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88382,8 +89508,6 @@ 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_extern, anon_sym___attribute__, @@ -88410,12 +89534,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28270] = 3, + [29418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2542), 35, + ACTIONS(2580), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88423,8 +89547,6 @@ 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_extern, anon_sym___attribute__, @@ -88451,12 +89573,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28314] = 3, + [29460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2534), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 35, + ACTIONS(2532), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88464,8 +89586,6 @@ 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_extern, anon_sym___attribute__, @@ -88492,12 +89612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28358] = 3, + [29502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 35, + ACTIONS(2536), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88505,8 +89625,6 @@ 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_extern, anon_sym___attribute__, @@ -88533,12 +89651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28402] = 3, + [29544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2546), 35, + ACTIONS(1398), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88546,8 +89664,6 @@ 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_extern, anon_sym___attribute__, @@ -88574,12 +89690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28446] = 3, + [29586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1404), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 35, + ACTIONS(1402), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88587,8 +89703,6 @@ 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_extern, anon_sym___attribute__, @@ -88615,12 +89729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28490] = 3, + [29628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, + ACTIONS(2530), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2550), 35, + ACTIONS(2528), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88628,8 +89742,6 @@ 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_extern, anon_sym___attribute__, @@ -88656,12 +89768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28534] = 3, + [29670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 1, + ACTIONS(1374), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1370), 35, + ACTIONS(1372), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88669,8 +89781,6 @@ 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_extern, anon_sym___attribute__, @@ -88697,216 +89807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28578] = 3, + [29712] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1362), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2556), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2554), 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1384), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1382), 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2560), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2558), 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, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [28754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2564), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(2562), 27, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - 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, - [28797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2542), 33, + ACTIONS(1360), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88940,12 +89846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28839] = 3, + [29754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, + ACTIONS(1408), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2550), 33, + ACTIONS(1406), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -88979,12 +89885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28881] = 3, + [29796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2514), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 33, + ACTIONS(2512), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89018,51 +89924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [28923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2466), 27, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - 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, - [28965] = 3, + [29838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(2526), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2510), 33, + ACTIONS(2524), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89096,12 +89963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29007] = 3, + [29880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2522), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2538), 33, + ACTIONS(2520), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89135,12 +90002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29049] = 3, + [29922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2522), 33, + ACTIONS(2516), 33, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -89174,23 +90041,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29091] = 3, + [29964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(2256), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2514), 33, - 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(2254), 31, 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_static, anon_sym_auto, anon_sym_register, @@ -89213,23 +90079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29133] = 3, + [30005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, + ACTIONS(2590), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2518), 33, - 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(2588), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89252,23 +90117,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29175] = 3, + [30046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(1757), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2530), 33, - 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(1755), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89291,23 +90155,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29217] = 3, + [30087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(2252), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2546), 33, - 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(2250), 31, 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_static, anon_sym_auto, anon_sym_register, @@ -89330,23 +90193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29259] = 3, + [30128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(1761), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2558), 33, - 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(1759), 27, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89369,19 +90231,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29301] = 3, + [30169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 1, + ACTIONS(2582), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1370), 33, + ACTIONS(2580), 31, 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__, @@ -89408,19 +90268,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29343] = 3, + [30209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(2534), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 33, + ACTIONS(2532), 31, 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__, @@ -89447,19 +90305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29385] = 3, + [30249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 1, + ACTIONS(2554), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2554), 33, + anon_sym_RBRACE, + ACTIONS(2552), 30, 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__, @@ -89486,58 +90342,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2568), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2566), 27, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - 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, - [29469] = 3, + [30289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(2550), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 33, + anon_sym_RBRACE, + ACTIONS(2548), 30, 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__, @@ -89564,19 +90379,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29511] = 3, + [30329] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + STATE(785), 1, + sym_argument_list, + ACTIONS(2274), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2270), 12, + 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, + [30391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(2578), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 33, + anon_sym_RBRACE, + ACTIONS(2576), 30, 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__, @@ -89603,19 +90464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29553] = 3, + [30431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2514), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2534), 33, + ACTIONS(2512), 31, 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__, @@ -89642,19 +90501,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29595] = 3, + [30471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 1, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1382), 33, + ACTIONS(2536), 31, 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__, @@ -89681,19 +90538,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29637] = 3, + [30511] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2274), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2270), 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, + [30569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2526), 33, + ACTIONS(2556), 31, 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__, @@ -89720,22 +90621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29679] = 3, + [30609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1759), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2590), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1757), 27, + STATE(680), 1, + sym_string_literal, + ACTIONS(2604), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2588), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89758,22 +90660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29720] = 3, + [30653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2562), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1753), 27, + ACTIONS(2560), 31, + 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_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89796,22 +90697,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29761] = 3, + [30693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2250), 2, + ACTIONS(2546), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2248), 31, + ACTIONS(2544), 31, + 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_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_static, anon_sym_auto, anon_sym_register, @@ -89834,22 +90734,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29802] = 3, + [30733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2566), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2252), 31, + ACTIONS(2564), 31, + 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_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_static, anon_sym_auto, anon_sym_register, @@ -89872,22 +90771,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29843] = 3, + [30773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2590), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2570), 27, + STATE(717), 1, + sym_string_literal, + ACTIONS(2604), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2588), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -89910,15 +90810,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29884] = 3, + [30817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 1, + ACTIONS(1424), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2550), 31, + anon_sym_RBRACE, + ACTIONS(1422), 30, 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, @@ -89947,18 +90847,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29924] = 3, + [30857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(2590), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1430), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(748), 1, + sym_string_literal, + ACTIONS(2604), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2588), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -89984,52 +90886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [29964] = 5, + [30901] = 3, ACTIONS(3), 1, sym_comment, - STATE(900), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2578), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2576), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2574), 20, - 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_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, - [30008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2544), 2, + ACTIONS(2522), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2542), 30, + ACTIONS(2520), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90060,15 +90923,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30048] = 3, + [30941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2552), 2, + ACTIONS(1400), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2550), 30, + ACTIONS(1398), 31, 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, @@ -90097,15 +90960,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30088] = 3, + [30981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 2, + ACTIONS(2522), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2558), 30, + ACTIONS(2520), 31, 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, @@ -90134,64 +90997,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30128] = 9, + [31021] = 5, 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(2581), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2583), 5, + STATE(926), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2610), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2608), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(919), 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(43), 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, - [30180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 2, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2518), 30, - 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(2606), 20, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -90205,24 +91034,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - 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, - [30220] = 3, + [31065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 2, + ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2514), 30, + ACTIONS(2576), 31, 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, @@ -90251,15 +91073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30260] = 3, + [31105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 2, + ACTIONS(2574), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2546), 30, + ACTIONS(2572), 31, 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, @@ -90288,13 +91110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30300] = 3, + [31145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 2, + ACTIONS(2574), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2530), 30, + ACTIONS(2572), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90325,54 +91147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30340] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2572), 1, - anon_sym_LBRACK_LBRACK, - STATE(606), 1, - sym_string_literal, - ACTIONS(2585), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2570), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30384] = 3, + [31185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 2, + ACTIONS(2538), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2534), 30, + ACTIONS(2536), 31, 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, @@ -90401,13 +91184,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30424] = 3, + [31225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 2, + ACTIONS(2518), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2522), 30, + ACTIONS(2516), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90438,13 +91221,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30464] = 3, + [31265] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2354), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + [31337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 2, + ACTIONS(2534), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2554), 30, + ACTIONS(2532), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90475,7 +91311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30504] = 9, + [31377] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -90484,11 +91320,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2587), 3, + ACTIONS(2625), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2589), 5, + ACTIONS(2627), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -90501,7 +91337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(820), 7, + STATE(818), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -90518,89 +91354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [30556] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2538), 30, - 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, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30596] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2572), 1, - anon_sym_LBRACK_LBRACK, - STATE(629), 1, - sym_string_literal, - ACTIONS(2585), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2570), 25, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [30640] = 3, + [31429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 2, + ACTIONS(1400), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1382), 30, + ACTIONS(1398), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90631,12 +91391,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30680] = 3, + [31469] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2284), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [31543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 1, + ACTIONS(1404), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2510), 31, + ACTIONS(1402), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90668,13 +91482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30720] = 3, + [31583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 2, + ACTIONS(1404), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2526), 30, + ACTIONS(1402), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -90705,41 +91519,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30760] = 9, + [31623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, - anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, + ACTIONS(2554), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2591), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2593), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - ACTIONS(41), 6, + ACTIONS(2552), 31, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(820), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90748,12 +91547,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [30812] = 3, + 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, + [31663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2518), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2538), 31, + ACTIONS(2516), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90785,12 +91593,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30852] = 3, + [31703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 1, + ACTIONS(2550), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2522), 31, + ACTIONS(2548), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -90822,15 +91630,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30892] = 3, + [31743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 1, + ACTIONS(2530), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2514), 31, + anon_sym_RBRACE, + ACTIONS(2528), 30, 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, @@ -90859,15 +91667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30932] = 3, + [31783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 1, + ACTIONS(2514), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2518), 31, + anon_sym_RBRACE, + ACTIONS(2512), 30, 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, @@ -90896,15 +91704,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [30972] = 3, + [31823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, + ACTIONS(2526), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2530), 31, + anon_sym_RBRACE, + ACTIONS(2524), 30, 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, @@ -90933,26 +91741,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31012] = 3, + [31863] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2548), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2546), 31, - 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, + ACTIONS(2631), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2633), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(41), 6, anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(966), 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(43), 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, + [31915] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2380), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2378), 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, + [31973] = 9, + 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(2635), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2637), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + ACTIONS(41), 6, + anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, anon_sym_inline, anon_sym_thread_local, + 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -90961,29 +91873,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - 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, - [31052] = 5, + [32025] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2274), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2270), 16, + 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, + [32081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(2566), 2, anon_sym_LBRACK_LBRACK, - STATE(610), 1, - sym_string_literal, - ACTIONS(2585), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2570), 25, + anon_sym_RBRACE, + ACTIONS(2564), 30, + 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, @@ -91009,15 +91955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31096] = 3, + [32121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1384), 1, + ACTIONS(2546), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1382), 31, + anon_sym_RBRACE, + ACTIONS(2544), 30, 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, @@ -91046,18 +91992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31136] = 3, + [32161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2560), 1, + ACTIONS(2590), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2558), 31, - 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(746), 1, + sym_string_literal, + ACTIONS(2604), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2588), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91083,15 +92031,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31176] = 3, + [32205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(2538), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1360), 31, + anon_sym_RBRACE, + ACTIONS(2536), 30, 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, @@ -91120,18 +92068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31216] = 3, + [32245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 2, + ACTIONS(2590), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2510), 30, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(677), 1, + sym_string_literal, + ACTIONS(2604), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2588), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91157,15 +92107,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31256] = 3, + [32289] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2274), 1, + anon_sym_PIPE, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2621), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2270), 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, + [32355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2556), 1, + ACTIONS(2538), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2554), 31, + anon_sym_RBRACE, + ACTIONS(2536), 30, 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, @@ -91194,15 +92194,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31296] = 3, + [32395] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2274), 1, + anon_sym_PIPE, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2270), 9, + 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, + [32463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 1, + ACTIONS(1374), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2526), 31, + anon_sym_RBRACE, + ACTIONS(1372), 30, 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, @@ -91231,15 +92282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31336] = 3, + [32503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2570), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2534), 31, + anon_sym_RBRACE, + ACTIONS(2568), 30, 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, @@ -91268,13 +92319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31376] = 3, + [32543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(2558), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1418), 30, + ACTIONS(2556), 30, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -91305,7 +92356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31416] = 3, + [32583] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1362), 2, @@ -91342,15 +92393,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31456] = 3, + [32623] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2270), 9, + 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, + [32691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 1, + ACTIONS(1408), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1370), 31, + anon_sym_RBRACE, + ACTIONS(1406), 30, 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, @@ -91379,15 +92481,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31496] = 3, + [32731] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1372), 2, - anon_sym_LBRACK_LBRACK, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2270), 8, + 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, + [32801] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + STATE(785), 1, + sym_argument_list, + ACTIONS(2274), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2270), 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, - ACTIONS(1370), 30, + anon_sym_COLON, + anon_sym_QMARK, + [32865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2530), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2528), 31, 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, @@ -91416,7 +92619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31536] = 9, + [32905] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -91425,11 +92628,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2595), 3, + ACTIONS(2639), 3, anon_sym___based, anon_sym_LBRACK, sym_identifier, - ACTIONS(2597), 5, + ACTIONS(2641), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -91442,43 +92645,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(913), 7, + STATE(818), 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(43), 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, - [31588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1430), 31, - 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_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -91487,21 +92662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - 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, - [31628] = 3, + [32957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1408), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1426), 31, + ACTIONS(1406), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91533,12 +92699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31668] = 3, + [32997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2544), 1, + ACTIONS(2526), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2542), 31, + ACTIONS(2524), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91570,15 +92736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31708] = 3, + [33037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(2570), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1426), 30, + ACTIONS(2568), 31, 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, @@ -91607,20 +92773,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31748] = 5, + [33077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(2582), 2, anon_sym_LBRACK_LBRACK, - STATE(615), 1, - sym_string_literal, - ACTIONS(2585), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2570), 25, + anon_sym_RBRACE, + ACTIONS(2580), 30, + 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, @@ -91646,20 +92810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31792] = 5, + [33117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2572), 1, + ACTIONS(1362), 1, anon_sym_LBRACK_LBRACK, - STATE(627), 1, - sym_string_literal, - ACTIONS(2585), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2570), 25, + ACTIONS(1360), 31, + 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_extern, anon_sym___attribute__, anon_sym___declspec, @@ -91685,12 +92847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31836] = 3, + [33157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(1374), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 31, + ACTIONS(1372), 31, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -91722,107 +92884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [31876] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2302), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2300), 13, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [31933] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2370), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2368), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [31996] = 20, + [33197] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -91834,167 +92903,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2344), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - [32069] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2368), 7, + ACTIONS(2386), 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, - [32138] = 14, + [33271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2370), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2368), 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_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32199] = 11, + ACTIONS(1424), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1422), 31, + 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_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33311] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2370), 4, + ACTIONS(2274), 6, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2368), 15, + ACTIONS(2270), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -92007,328 +93015,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [32254] = 20, + [33365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2272), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(2562), 2, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - anon_sym_COLON, - [32327] = 19, + ACTIONS(2560), 30, + 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, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [33405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(1220), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2396), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32398] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, + 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(1222), 19, anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2601), 2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2370), 6, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2368), 15, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32451] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2368), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32518] = 17, + 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, + [33444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_PIPE, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(1220), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + 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(1222), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2368), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32585] = 16, + 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, + [33483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(1336), 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(1338), 19, anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_PIPE, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2621), 1, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, + anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, + 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, + [33522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2368), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + 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(1338), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32650] = 7, + 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, + [33561] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(2643), 1, sym_identifier, - ACTIONS(2634), 1, + ACTIONS(2652), 1, sym_primitive_type, - STATE(900), 1, + STATE(926), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2632), 4, + ACTIONS(2650), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2628), 6, + ACTIONS(2646), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2630), 18, + ACTIONS(2648), 18, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -92347,128 +93240,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32697] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2370), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2368), 13, - 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_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [32754] = 12, - 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(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2642), 1, - anon_sym_STAR, - ACTIONS(2646), 1, - anon_sym_SEMI, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2636), 2, - anon_sym___based, - sym_identifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(1020), 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(43), 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, - [32810] = 15, + [33608] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, + ACTIONS(1865), 1, anon_sym_LPAREN2, - ACTIONS(1863), 1, + ACTIONS(1867), 1, anon_sym_STAR, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1339), 1, + STATE(1381), 1, sym__declarator, - STATE(1428), 1, + STATE(1470), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - ACTIONS(2648), 2, + ACTIONS(2654), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -92483,7 +93287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32872] = 12, + [33670] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -92492,17 +93296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2642), 1, - anon_sym_STAR, - ACTIONS(2650), 1, + ACTIONS(2656), 1, anon_sym_SEMI, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2636), 2, + ACTIONS(2631), 2, anon_sym___based, sym_identifier, + ACTIONS(2633), 2, + anon_sym_LPAREN2, + anon_sym_STAR, ACTIONS(41), 6, anon_sym_extern, anon_sym_static, @@ -92510,7 +93311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(1020), 7, + STATE(966), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92527,7 +93328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32928] = 12, + [33721] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -92536,17 +93337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2642), 1, - anon_sym_STAR, - ACTIONS(2652), 1, + ACTIONS(2658), 1, anon_sym_SEMI, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2636), 2, + ACTIONS(2631), 2, anon_sym___based, sym_identifier, + ACTIONS(2633), 2, + anon_sym_LPAREN2, + anon_sym_STAR, ACTIONS(41), 6, anon_sym_extern, anon_sym_static, @@ -92554,7 +93352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(1020), 7, + STATE(966), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92571,41 +93369,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [32984] = 12, + [33772] = 21, 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(2639), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2642), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2660), 1, + anon_sym_COMMA, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, anon_sym_STAR, - ACTIONS(2654), 1, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2662), 2, + anon_sym_RPAREN, anon_sym_SEMI, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2636), 2, + [33845] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(1020), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(2666), 1, + anon_sym_LPAREN2, + ACTIONS(2668), 1, + anon_sym_STAR, + STATE(1327), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1408), 1, + sym__type_declarator, + STATE(1785), 1, + sym_ms_based_modifier, + ACTIONS(2504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(996), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(1227), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym_type_definition_repeat1, + ACTIONS(2502), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -92615,7 +93466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33040] = 12, + [33904] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -92624,17 +93475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2642), 1, - anon_sym_STAR, - ACTIONS(2656), 1, + ACTIONS(2670), 1, anon_sym_SEMI, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2636), 2, + ACTIONS(2631), 2, anon_sym___based, sym_identifier, + ACTIONS(2633), 2, + anon_sym_LPAREN2, + anon_sym_STAR, ACTIONS(41), 6, anon_sym_extern, anon_sym_static, @@ -92642,7 +93490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(1020), 7, + STATE(966), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92659,82 +93507,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33096] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2658), 1, - sym_identifier, - ACTIONS(2660), 1, - anon_sym_LPAREN2, - ACTIONS(2662), 1, - anon_sym_STAR, - STATE(1294), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1350), 1, - sym__field_declarator, - STATE(1789), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(974), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1201), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(43), 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, - [33155] = 14, + [33955] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1338), 1, + STATE(1377), 1, sym__declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1173), 2, + STATE(1201), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1209), 2, + STATE(1251), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -92749,14 +93552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33214] = 21, + [34014] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -92768,75 +93571,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2670), 2, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2676), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [34085] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2682), 1, + anon_sym___attribute__, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(2687), 1, + anon_sym_COLON, + STATE(1140), 1, + sym_enumerator_list, + STATE(1174), 1, + sym_attribute_specifier, + ACTIONS(2680), 6, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - [33287] = 14, + anon_sym_LBRACK_LBRACK, + ACTIONS(2678), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [34132] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(35), 1, + anon_sym___declspec, + ACTIONS(1160), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2689), 1, + anon_sym_SEMI, + ACTIONS(2631), 2, anon_sym___based, - ACTIONS(2672), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2633), 2, anon_sym_LPAREN2, - ACTIONS(2676), 1, anon_sym_STAR, - STATE(1294), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1375), 1, - sym__type_declarator, - STATE(1856), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1177), 2, + ACTIONS(41), 6, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + STATE(966), 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, - STATE(1209), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + aux_sym__declaration_specifiers_repeat1, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -92846,14 +93683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33346] = 22, + [34183] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -92865,172 +93702,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2678), 1, + ACTIONS(2691), 1, anon_sym_COMMA, - ACTIONS(2680), 1, + ACTIONS(2693), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - STATE(1511), 1, + STATE(1622), 1, aux_sym_argument_list_repeat1, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [33421] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2682), 1, - anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RBRACE, - STATE(770), 1, - sym_argument_list, - STATE(1574), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33496] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2672), 1, - sym_identifier, - ACTIONS(2674), 1, - anon_sym_LPAREN2, - ACTIONS(2676), 1, - anon_sym_STAR, - STATE(1294), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1359), 1, - sym__type_declarator, - STATE(1856), 1, - sym_ms_based_modifier, - ACTIONS(2502), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(969), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1189), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(43), 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, - [33555] = 11, + [34258] = 7, 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(2688), 1, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_field_declaration_list, + STATE(1153), 1, + sym_attribute_specifier, + ACTIONS(2697), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2690), 1, anon_sym_STAR, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2686), 2, - anon_sym___based, - sym_identifier, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2695), 18, 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, - STATE(1019), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -93039,37 +93773,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33608] = 14, + sym_identifier, + [34303] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, + STATE(1360), 1, sym__field_declarator, - STATE(1789), 1, + STATE(1835), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1168), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1209), 2, + STATE(1004), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, + STATE(1219), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1394), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -93084,39 +93819,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33667] = 11, + [34362] = 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(2695), 1, - anon_sym_LPAREN2, - ACTIONS(2697), 1, - anon_sym_STAR, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2693), 2, + ACTIONS(1869), 1, anon_sym___based, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(1028), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(2703), 1, + anon_sym_LPAREN2, + ACTIONS(2705), 1, + anon_sym_STAR, + STATE(1327), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1360), 1, + sym__field_declarator, + STATE(1835), 1, + sym_ms_based_modifier, + ACTIONS(2504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1219), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, + aux_sym_type_definition_repeat1, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2502), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -93126,42 +93864,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33720] = 14, + [34421] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, ACTIONS(2664), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2666), 1, + anon_sym_LPAREN2, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1339), 1, - sym__declarator, - STATE(1871), 1, + STATE(1395), 1, + sym__type_declarator, + STATE(1785), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1200), 2, + STATE(1223), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1209), 2, + STATE(1251), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -93171,95 +93909,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33779] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2678), 1, - anon_sym_COMMA, - ACTIONS(2700), 1, - anon_sym_RPAREN, - STATE(770), 1, - sym_argument_list, - STATE(1517), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [33854] = 14, + [34480] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1344), 1, - sym__field_declarator, - STATE(1789), 1, + STATE(1395), 1, + sym__type_declarator, + STATE(1785), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1196), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - STATE(1209), 2, + STATE(1008), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, + STATE(1223), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -93269,7 +93954,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33913] = 11, + [34539] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(1116), 1, + sym_field_declaration_list, + STATE(1141), 1, + sym_attribute_specifier, + ACTIONS(2709), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2707), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [34584] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(31), 1, @@ -93278,15 +94001,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1160), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2705), 1, - anon_sym_LPAREN2, - ACTIONS(2708), 1, - anon_sym_STAR, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2702), 2, + ACTIONS(2711), 1, + anon_sym_SEMI, + ACTIONS(2631), 2, anon_sym___based, sym_identifier, + ACTIONS(2633), 2, + anon_sym_LPAREN2, + anon_sym_STAR, ACTIONS(41), 6, anon_sym_extern, anon_sym_static, @@ -93294,7 +94016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_register, anon_sym_inline, anon_sym_thread_local, - STATE(994), 7, + STATE(966), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93311,95 +94033,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [33966] = 22, + [34635] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2712), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(1094), 1, + sym_field_declaration_list, + STATE(1169), 1, + sym_attribute_specifier, + ACTIONS(2715), 7, anon_sym_COMMA, - ACTIONS(2714), 1, anon_sym_RPAREN, - STATE(770), 1, - sym_argument_list, - STATE(1564), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34041] = 14, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2713), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [34680] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1370), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1372), 1, + sym__field_declarator, + STATE(1835), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(984), 2, + STATE(995), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1191), 2, + STATE(1218), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -93409,37 +94116,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34100] = 14, + [34739] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1339), 1, + STATE(1363), 1, sym__declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(967), 2, + STATE(1003), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1200), 2, + STATE(1204), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -93454,42 +94161,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34159] = 14, + [34798] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1335), 1, - sym__field_declarator, - STATE(1789), 1, + STATE(1381), 1, + sym__declarator, + STATE(1811), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(978), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(1168), 2, + STATE(1195), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -93499,42 +94206,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34218] = 14, + [34857] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1359), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1361), 1, + sym__field_declarator, + STATE(1835), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1189), 2, + STATE(1220), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1209), 2, + STATE(1251), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2500), 3, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -93544,37 +94251,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34277] = 14, + [34916] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1294), 1, + STATE(1327), 1, sym_ms_unaligned_ptr_modifier, - STATE(1349), 1, + STATE(1381), 1, sym__declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - ACTIONS(2502), 2, + ACTIONS(2504), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(976), 2, + STATE(988), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1169), 2, + STATE(1195), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2500), 3, + ACTIONS(2502), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -93589,158 +94296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34336] = 11, - 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(2639), 1, - anon_sym_LPAREN2, - ACTIONS(2642), 1, - anon_sym_STAR, - STATE(1163), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(2636), 2, - anon_sym___based, - sym_identifier, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(1020), 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(43), 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, - [34389] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2716), 1, - anon_sym_RPAREN, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34461] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2718), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34533] = 21, + [34975] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -93752,97 +94315,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(2720), 1, + ACTIONS(2719), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + STATE(1573), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [34605] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2722), 1, - anon_sym_RPAREN, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34677] = 21, + [35050] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -93854,170 +94368,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2691), 1, anon_sym_COMMA, - ACTIONS(2724), 1, + ACTIONS(2721), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + STATE(1548), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [34749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2726), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [34819] = 21, + [35125] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2664), 1, + sym_identifier, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2728), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [34891] = 9, + STATE(1327), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1415), 1, + sym__type_declarator, + STATE(1785), 1, + sym_ms_based_modifier, + ACTIONS(2504), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1222), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2502), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(43), 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, + [35184] = 7, 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(2730), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2733), 2, + ACTIONS(2699), 1, + anon_sym_LBRACE, + STATE(1092), 1, + sym_field_declaration_list, + STATE(1164), 1, + sym_attribute_specifier, + ACTIONS(2725), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2723), 18, 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, - STATE(820), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94026,14 +94484,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [34939] = 21, + sym_identifier, + [35229] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94045,46 +94504,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(2736), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2729), 1, + anon_sym_RBRACE, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + STATE(1550), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35011] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94096,45 +94557,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2731), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2738), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [35081] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35376] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94146,46 +94608,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2740), 1, + ACTIONS(2733), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35153] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35448] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94197,46 +94659,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2742), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2735), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35225] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35520] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94248,45 +94710,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2737), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2744), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [35295] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35592] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94298,81 +94761,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2746), 1, + ACTIONS(2739), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35367] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LBRACE, - STATE(1122), 1, - sym_enumerator_list, - ACTIONS(2750), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2748), 19, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [35407] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94384,46 +94812,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2754), 1, + ACTIONS(2741), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35479] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35736] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94435,46 +94863,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2756), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2743), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35551] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94486,46 +94914,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2758), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2745), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35623] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [35880] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94537,46 +94965,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2760), 1, - anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35695] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2747), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [35950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94588,46 +95015,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2762), 1, + ACTIONS(2749), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35767] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36022] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94639,69 +95066,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2764), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2751), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35839] = 9, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36094] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(31), 1, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(2757), 1, anon_sym___attribute__, - ACTIONS(35), 1, - anon_sym___declspec, - ACTIONS(1160), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2693), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2695), 2, + STATE(1144), 1, + sym_attribute_specifier, + STATE(1148), 1, + sym_enumerator_list, + ACTIONS(2755), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(41), 6, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2753), 18, 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, - STATE(1028), 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(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -94710,14 +95134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [35887] = 21, + sym_identifier, + [36138] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94729,97 +95154,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2766), 1, - anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [35959] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2768), 1, - anon_sym_SEMI, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [36031] = 20, + ACTIONS(2760), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [36208] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94831,45 +95204,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2770), 2, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2762), 2, anon_sym_COMMA, - anon_sym_SEMI, - [36101] = 21, + anon_sym_RBRACE, + [36278] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94881,46 +95254,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2772), 1, + ACTIONS(2764), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36173] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36350] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94932,46 +95305,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2774), 1, + ACTIONS(2766), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36245] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36422] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -94983,46 +95356,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2776), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2768), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36317] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36494] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95034,46 +95407,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2778), 1, + ACTIONS(2770), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36389] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36566] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95085,46 +95458,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2780), 1, + ACTIONS(2772), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36461] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36638] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95136,46 +95509,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2782), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2774), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36533] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36710] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95187,124 +95560,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2784), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2776), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36605] = 9, - 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(2786), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2788), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 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(43), 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, - [36653] = 9, - 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(2790), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2793), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 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(43), 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, - [36701] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95316,46 +95611,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2796), 1, + ACTIONS(2778), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36773] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36854] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95367,46 +95662,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2798), 1, + ACTIONS(2780), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36845] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36926] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95418,46 +95713,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2800), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2782), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36917] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [36998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95469,46 +95764,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2802), 1, + ACTIONS(2784), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [36989] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37070] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95520,46 +95815,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2804), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2786), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37061] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37142] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95571,46 +95866,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2806), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2788), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37133] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37214] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95622,85 +95917,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2808), 1, + ACTIONS(2790), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37205] = 9, - 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(2810), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2812), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(820), 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(43), 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, - [37253] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37286] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95712,46 +95968,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2814), 1, + ACTIONS(2792), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37325] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37358] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95763,46 +96019,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2816), 1, + ACTIONS(2794), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37397] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37430] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95814,46 +96070,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2818), 1, + ACTIONS(2796), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37469] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37502] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95865,45 +96121,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2798), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [37539] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95915,46 +96172,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2822), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2800), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37611] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37646] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -95966,46 +96223,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2824), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2802), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37683] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37718] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96017,85 +96274,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2826), 1, + ACTIONS(2804), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37755] = 9, - 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(2686), 2, - anon_sym___based, - sym_identifier, - ACTIONS(2688), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(41), 6, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym_thread_local, - STATE(1019), 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(43), 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, - [37803] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96107,46 +96325,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2828), 1, + ACTIONS(2806), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37875] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96158,46 +96376,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2830), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2808), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [37947] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [37934] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96209,46 +96427,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2832), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2810), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38019] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96260,46 +96478,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2834), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2812), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38091] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38078] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96311,46 +96529,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2836), 1, + ACTIONS(2814), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38163] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38150] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96362,46 +96580,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2838), 1, + ACTIONS(2816), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38235] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96413,46 +96631,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2840), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2818), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38307] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38294] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96464,46 +96682,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2842), 1, + ACTIONS(2820), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38379] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38366] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96515,46 +96733,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2844), 1, + ACTIONS(2822), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38451] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38438] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96566,46 +96784,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2846), 1, + ACTIONS(2824), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38523] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38510] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96617,46 +96835,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2848), 1, + ACTIONS(2826), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38595] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38582] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96668,46 +96886,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2850), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2828), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38667] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38654] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96719,46 +96937,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2852), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2830), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38739] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38726] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96770,45 +96988,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2832), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2854), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [38809] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38798] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96820,46 +97039,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2856), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2834), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38881] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38870] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96871,46 +97090,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2858), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2836), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [38953] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [38942] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96922,46 +97141,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2860), 1, + ACTIONS(2838), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39025] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39014] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -96973,46 +97192,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, - anon_sym_COMMA, - ACTIONS(2862), 1, - anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39097] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2840), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [39084] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97024,46 +97242,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2864), 1, + ACTIONS(2842), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39169] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39156] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97075,46 +97293,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2866), 1, + ACTIONS(2844), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39241] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39228] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97126,46 +97344,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2868), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2846), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39313] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39300] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97177,81 +97395,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2870), 1, + ACTIONS(2848), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39385] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - STATE(1145), 1, - sym_field_declaration_list, - ACTIONS(2874), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2872), 19, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [39425] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39372] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97263,46 +97446,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2878), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2850), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39497] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39444] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97314,46 +97497,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2880), 1, + ACTIONS(2852), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39569] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39516] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97365,46 +97548,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2882), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2854), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39641] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39588] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97416,81 +97599,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2884), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2856), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - STATE(1152), 1, - sym_field_declaration_list, - ACTIONS(2888), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2886), 19, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [39753] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39660] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97502,117 +97650,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2890), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2858), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - STATE(1127), 1, - sym_field_declaration_list, - ACTIONS(2894), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2892), 19, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [39865] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2752), 1, - anon_sym_LBRACE, - ACTIONS(2900), 1, - anon_sym_COLON, - STATE(1135), 1, - sym_enumerator_list, - ACTIONS(2898), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(2896), 19, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [39907] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39732] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97624,46 +97701,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2902), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2860), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [39979] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39804] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97675,46 +97752,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2904), 1, + ACTIONS(2862), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40051] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39876] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97726,46 +97803,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2906), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2864), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40123] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [39948] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97777,46 +97854,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2908), 1, + ACTIONS(2866), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40195] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97828,46 +97905,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2910), 1, + ACTIONS(2868), 1, anon_sym_SEMI, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40267] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40092] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97879,46 +97956,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2912), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2870), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40339] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97930,45 +98007,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2872), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [40409] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40236] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -97980,46 +98058,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2916), 1, + ACTIONS(2874), 1, anon_sym_RPAREN, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40481] = 21, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40308] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -98031,312 +98109,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2668), 1, + ACTIONS(2660), 1, anon_sym_COMMA, - ACTIONS(2918), 1, - anon_sym_SEMI, - STATE(770), 1, + ACTIONS(2876), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40553] = 5, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40380] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - STATE(1132), 1, - sym_field_declaration_list, - ACTIONS(2922), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2272), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2920), 19, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [40593] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, - anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2596), 1, anon_sym_SLASH, - STATE(770), 1, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2878), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2370), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2368), 7, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [40650] = 12, + [40452] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - STATE(770), 1, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2880), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2370), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2368), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [40703] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40524] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2212), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2613), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2882), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [40772] = 20, + [40596] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2214), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2613), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [40841] = 20, + ACTIONS(2884), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [40666] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2210), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2613), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2886), 1, + anon_sym_SEMI, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [40910] = 20, + [40738] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -98348,85 +98414,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2950), 1, - anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [40979] = 12, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2888), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [40808] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - STATE(770), 1, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2890), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2934), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2302), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2300), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - [41032] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -98438,322 +98515,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2952), 1, - anon_sym_COLON, - STATE(770), 1, + ACTIONS(2660), 1, + anon_sym_COMMA, + ACTIONS(2892), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41101] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [40952] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2204), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, + ACTIONS(47), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1841), 1, + sym_identifier, + ACTIONS(2894), 1, + anon_sym_enum, + STATE(1188), 1, + sym__type_specifier, + STATE(1196), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1905), 1, + sym_type_descriptor, + STATE(1159), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(1749), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1147), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 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, + [41007] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, - anon_sym_AMP_AMP, - ACTIONS(2940), 1, + STATE(785), 1, + sym_argument_list, + ACTIONS(2274), 2, anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_CARET, - ACTIONS(2944), 1, anon_sym_AMP, - ACTIONS(2948), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41170] = 20, + ACTIONS(2270), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [41066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1162), 1, + sym_attribute_specifier, + ACTIONS(2912), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2266), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2910), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41105] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2200), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - ACTIONS(2954), 1, - anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2902), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41239] = 11, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41174] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1152), 1, + sym_attribute_specifier, + ACTIONS(2928), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2926), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(2470), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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, + [41213] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - STATE(770), 1, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2930), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2370), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2368), 11, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [41290] = 20, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [41282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2218), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2613), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2932), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [41359] = 20, + [41351] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1176), 1, + sym_attribute_specifier, + ACTIONS(2936), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2266), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2934), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41390] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - ACTIONS(2956), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2938), 1, + anon_sym_RBRACK, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2902), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41428] = 20, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41459] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - ACTIONS(2958), 1, + ACTIONS(2940), 1, anon_sym_RBRACK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41497] = 13, + [41528] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -98762,17 +98989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(53), 1, anon_sym_union, - ACTIONS(1831), 1, - sym_identifier, - ACTIONS(2960), 1, + ACTIONS(1751), 1, anon_sym_enum, - STATE(1161), 1, + ACTIONS(1841), 1, + sym_identifier, + STATE(1188), 1, sym__type_specifier, - STATE(1176), 1, + STATE(1196), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1733), 1, + STATE(1801), 1, sym_type_descriptor, - STATE(1140), 2, + STATE(1154), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1749), 4, @@ -98780,7 +99007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -98795,112 +99022,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41552] = 20, + [41583] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2196), 1, anon_sym_RBRACK, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41621] = 20, + [41652] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2194), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2284), 1, + anon_sym_RBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [41690] = 20, + [41721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1165), 1, + sym_attribute_specifier, + ACTIONS(2944), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2942), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41760] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -98912,44 +99173,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2962), 1, - anon_sym_COLON, - STATE(770), 1, + ACTIONS(2946), 1, + anon_sym_COMMA, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41759] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [41829] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -98961,81 +99222,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2964), 1, - anon_sym_COLON, - STATE(770), 1, + ACTIONS(2948), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [41898] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2386), 1, + anon_sym_RBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2914), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, + anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, + anon_sym_CARET, + ACTIONS(2922), 1, + anon_sym_AMP, + ACTIONS(2924), 1, + anon_sym_QMARK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2902), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [41828] = 15, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [41967] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - STATE(770), 1, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2950), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2370), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2368), 5, + [42036] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2208), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, anon_sym_CARET, - anon_sym_RBRACK, + ACTIONS(2922), 1, + anon_sym_AMP, + ACTIONS(2924), 1, anon_sym_QMARK, - [41887] = 13, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2906), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42105] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, @@ -99044,17 +99408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(53), 1, anon_sym_union, - ACTIONS(1831), 1, + ACTIONS(1841), 1, sym_identifier, - ACTIONS(2960), 1, + ACTIONS(2894), 1, anon_sym_enum, - STATE(1161), 1, + STATE(1188), 1, sym__type_specifier, - STATE(1176), 1, + STATE(1196), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1828), 1, + STATE(1935), 1, sym_type_descriptor, - STATE(1140), 2, + STATE(1159), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, ACTIONS(1749), 4, @@ -99062,7 +99426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -99077,59 +99441,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41942] = 16, + [42160] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2192), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2944), 1, + ACTIONS(2914), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, + anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, + anon_sym_CARET, + ACTIONS(2922), 1, anon_sym_AMP, - STATE(770), 1, + ACTIONS(2924), 1, + anon_sym_QMARK, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2368), 5, + [42229] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2206), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, anon_sym_CARET, - anon_sym_RBRACK, + ACTIONS(2922), 1, + anon_sym_AMP, + ACTIONS(2924), 1, anon_sym_QMARK, - [42003] = 20, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2906), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42298] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -99141,136 +99558,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2966), 1, - anon_sym_COMMA, - STATE(770), 1, + ACTIONS(2952), 1, + anon_sym_RPAREN, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42072] = 17, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [42367] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1160), 1, + sym_attribute_specifier, + ACTIONS(2956), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2954), 18, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(2370), 1, - anon_sym_PIPE, - ACTIONS(2470), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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, + [42406] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2210), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2942), 1, + ACTIONS(2914), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, + anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - STATE(770), 1, + ACTIONS(2924), 1, + anon_sym_QMARK, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2368), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [42135] = 17, + [42475] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1158), 1, + sym_attribute_specifier, + ACTIONS(2960), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2958), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [42514] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1171), 1, + sym_attribute_specifier, + ACTIONS(2964), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2962), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [42553] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1163), 1, + sym_attribute_specifier, + ACTIONS(2968), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2966), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [42592] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2188), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2940), 1, + ACTIONS(2914), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, + anon_sym_AMP_AMP, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - STATE(770), 1, + ACTIONS(2924), 1, + anon_sym_QMARK, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2368), 4, + [42661] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, + anon_sym_CARET, + ACTIONS(2922), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2354), 2, anon_sym_RBRACK, anon_sym_QMARK, - [42198] = 20, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2906), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [42728] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -99282,44 +99889,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2968), 1, + ACTIONS(2970), 1, anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42267] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [42797] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -99331,91 +99938,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2970), 1, + ACTIONS(2972), 1, anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42336] = 18, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [42866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2938), 1, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - STATE(770), 1, + ACTIONS(2629), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2368), 3, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - [42401] = 20, + [42935] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -99427,162 +100036,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2972), 1, - anon_sym_RPAREN, - STATE(770), 1, + ACTIONS(2976), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42470] = 20, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [43004] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2206), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, - anon_sym_AMP_AMP, - ACTIONS(2940), 1, - anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_CARET, - ACTIONS(2944), 1, - anon_sym_AMP, - ACTIONS(2948), 1, - anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2274), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2270), 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(2934), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [42539] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [43055] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, - anon_sym_LBRACK, ACTIONS(2272), 1, - anon_sym_RBRACK, - ACTIONS(2470), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2613), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2978), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [42608] = 10, + [43124] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2926), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2370), 6, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2274), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2368), 11, + ACTIONS(2270), 9, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -99590,60 +100194,16 @@ 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_RBRACK, anon_sym_QMARK, - [42657] = 13, - ACTIONS(3), 1, - sym_comment, - 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(1831), 1, - sym_identifier, - STATE(1161), 1, - sym__type_specifier, - STATE(1176), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1831), 1, - sym_type_descriptor, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 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, - [42712] = 20, + [43177] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2596), 1, anon_sym_SLASH, ACTIONS(2613), 1, anon_sym_PIPE_PIPE, @@ -99655,446 +100215,518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - ACTIONS(2974), 1, + ACTIONS(2980), 1, anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, + [43246] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2380), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2378), 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, - [42781] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [43299] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, - anon_sym_AMP_AMP, - ACTIONS(2940), 1, + STATE(785), 1, + sym_argument_list, + ACTIONS(2274), 2, anon_sym_PIPE, - ACTIONS(2942), 1, - anon_sym_CARET, - ACTIONS(2944), 1, anon_sym_AMP, - ACTIONS(2948), 1, - anon_sym_QMARK, - ACTIONS(2976), 1, - anon_sym_RBRACK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2270), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [42850] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [43356] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2194), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2623), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - ACTIONS(2978), 1, - anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2902), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [42919] = 13, - ACTIONS(3), 1, - sym_comment, - 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(1831), 1, - sym_identifier, - STATE(1161), 1, - sym__type_specifier, - STATE(1176), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1826), 1, - sym_type_descriptor, - STATE(1156), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 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, - [42974] = 20, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43425] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2216), 1, - anon_sym_RBRACK, - ACTIONS(2266), 1, - anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2272), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2613), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2617), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2619), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2621), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2629), 1, anon_sym_QMARK, - STATE(770), 1, + ACTIONS(2982), 1, + anon_sym_COLON, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2592), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2594), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2598), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2600), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2602), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, + ACTIONS(2623), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - [43043] = 20, + [43494] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(2198), 1, anon_sym_RBRACK, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + ACTIONS(2914), 1, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, + ACTIONS(2916), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2948), 1, + ACTIONS(2924), 1, anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43112] = 20, + [43563] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(2266), 1, + ACTIONS(2274), 1, + anon_sym_PIPE, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2603), 1, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2613), 1, + ACTIONS(2922), 1, + anon_sym_AMP, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2906), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2270), 5, anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, anon_sym_AMP_AMP, - ACTIONS(2617), 1, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [43624] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2274), 1, anon_sym_PIPE, - ACTIONS(2619), 1, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2621), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - ACTIONS(2980), 1, - anon_sym_COLON, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2599), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2601), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, + ACTIONS(2902), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2609), 2, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2611), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - [43181] = 20, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2270), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [43687] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2344), 1, - anon_sym_RBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2274), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2270), 11, anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, anon_sym_AMP_AMP, - ACTIONS(2940), 1, + 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, + [43736] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2916), 1, + anon_sym_AMP_AMP, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - ACTIONS(2948), 1, - anon_sym_QMARK, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43250] = 19, + ACTIONS(2270), 3, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + [43801] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2266), 1, + ACTIONS(2278), 1, anon_sym_LBRACK, - ACTIONS(2470), 1, + ACTIONS(2472), 1, anon_sym_LPAREN2, - ACTIONS(2928), 1, + ACTIONS(2900), 1, anon_sym_SLASH, - ACTIONS(2936), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2938), 1, - anon_sym_AMP_AMP, - ACTIONS(2940), 1, + ACTIONS(2918), 1, anon_sym_PIPE, - ACTIONS(2942), 1, + ACTIONS(2920), 1, anon_sym_CARET, - ACTIONS(2944), 1, + ACTIONS(2922), 1, anon_sym_AMP, - STATE(770), 1, + STATE(785), 1, sym_argument_list, - ACTIONS(2268), 2, + ACTIONS(2280), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, + ACTIONS(2282), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2396), 2, - anon_sym_RBRACK, - anon_sym_QMARK, - ACTIONS(2924), 2, + ACTIONS(2896), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2926), 2, + ACTIONS(2898), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2930), 2, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2932), 2, + ACTIONS(2906), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2934), 2, + ACTIONS(2908), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2946), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [43317] = 12, + ACTIONS(2270), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [43864] = 13, ACTIONS(3), 1, sym_comment, 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(1831), 1, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1841), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1192), 1, + STATE(1188), 1, sym__type_specifier, - STATE(1121), 2, + STATE(1196), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1803), 1, + sym_type_descriptor, + STATE(1154), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(1749), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100109,38 +100741,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43369] = 12, + [43919] = 20, ACTIONS(3), 1, sym_comment, - 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(1831), 1, + ACTIONS(2212), 1, + anon_sym_RBRACK, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2472), 1, + anon_sym_LPAREN2, + ACTIONS(2900), 1, + anon_sym_SLASH, + ACTIONS(2914), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2916), 1, + anon_sym_AMP_AMP, + ACTIONS(2918), 1, + anon_sym_PIPE, + ACTIONS(2920), 1, + anon_sym_CARET, + ACTIONS(2922), 1, + anon_sym_AMP, + ACTIONS(2924), 1, + anon_sym_QMARK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2896), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2898), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2902), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2904), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2906), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2908), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [43988] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2988), 1, + anon_sym___attribute__, + STATE(1143), 1, + sym_attribute_specifier, + ACTIONS(2986), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(2984), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1170), 1, - sym__type_specifier, - STATE(1153), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + [44026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2993), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2991), 19, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [44060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2995), 19, + 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_const, anon_sym_constexpr, anon_sym_volatile, @@ -100149,10 +100884,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43421] = 3, + sym_identifier, + [44094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2984), 7, + ACTIONS(3001), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100160,7 +100896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2982), 19, + ACTIONS(2999), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100180,89 +100916,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43455] = 19, + [44128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(3005), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2266), 1, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3003), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(2603), 1, - anon_sym_SLASH, - ACTIONS(2613), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2615), 1, - anon_sym_AMP_AMP, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2619), 1, - anon_sym_CARET, - ACTIONS(2621), 1, - anon_sym_AMP, - ACTIONS(2623), 1, - anon_sym_QMARK, - STATE(770), 1, - sym_argument_list, - ACTIONS(2268), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2270), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2599), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2601), 2, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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, + [44162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3009), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2605), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2607), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2609), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2611), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [43521] = 4, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3007), 19, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [44196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 1, + ACTIONS(3013), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_SEMI, - ACTIONS(2402), 7, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2400), 18, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3011), 19, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [44230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 7, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3015), 19, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [43557] = 3, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym_thread_local, + 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, + [44264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3023), 1, + anon_sym___attribute__, + STATE(1146), 1, + sym_attribute_specifier, + ACTIONS(3021), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3019), 18, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [44302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 7, + ACTIONS(3028), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100270,7 +101084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2988), 19, + ACTIONS(3026), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100290,38 +101104,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43591] = 12, + [44336] = 4, ACTIONS(3), 1, sym_comment, - 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(1831), 1, + ACTIONS(3030), 1, + anon_sym_LPAREN2, + ACTIONS(1977), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(1964), 19, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1202), 1, - sym__type_specifier, - STATE(1151), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + [44372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3035), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3033), 19, + 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_const, anon_sym_constexpr, anon_sym_volatile, @@ -100330,10 +101166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43643] = 3, + sym_identifier, + [44406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 7, + ACTIONS(3039), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100341,7 +101178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2992), 19, + ACTIONS(3037), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100361,38 +101198,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43677] = 12, + [44440] = 3, ACTIONS(3), 1, sym_comment, - 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(1831), 1, - sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1194), 1, - sym__type_specifier, - STATE(1153), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + ACTIONS(3043), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3041), 19, + 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_const, anon_sym_constexpr, anon_sym_volatile, @@ -100401,32 +101228,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43729] = 12, + sym_identifier, + [44474] = 12, ACTIONS(3), 1, sym_comment, 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(1831), 1, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(1841), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1198), 1, + STATE(1192), 1, sym__type_specifier, - STATE(1128), 2, + STATE(1196), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(1749), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100441,10 +101269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43781] = 3, + [44526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2998), 7, + ACTIONS(3047), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100452,7 +101280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2996), 19, + ACTIONS(3045), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100472,28 +101300,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43815] = 3, + [44560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3002), 7, + STATE(1156), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(2444), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3000), 19, - 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_COLON, + ACTIONS(3049), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -100502,11 +101322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + ACTIONS(2442), 10, + anon_sym___based, + 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, - [43849] = 3, + [44598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3006), 7, + ACTIONS(3054), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100514,7 +101344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3004), 19, + ACTIONS(3052), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100534,19 +101364,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43883] = 4, + [44632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, - anon_sym_LPAREN2, - ACTIONS(1975), 6, + ACTIONS(3058), 7, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(1962), 19, + ACTIONS(3056), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100566,32 +101395,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43919] = 12, + [44666] = 12, ACTIONS(3), 1, sym_comment, 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(1831), 1, + ACTIONS(1841), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1178), 1, + ACTIONS(2894), 1, + anon_sym_enum, + STATE(1192), 1, sym__type_specifier, - STATE(1143), 2, + STATE(1196), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(1749), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, + STATE(1147), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -100606,10 +101435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [43971] = 3, + [44718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 7, + ACTIONS(3062), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100617,7 +101446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3011), 19, + ACTIONS(3060), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100637,23 +101466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44005] = 3, + [44752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3066), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3015), 19, + ACTIONS(3064), 25, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -100667,11 +101488,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + 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, - [44039] = 3, + [44786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3021), 7, + ACTIONS(3070), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100679,7 +101508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3019), 19, + ACTIONS(3068), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100699,10 +101528,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44073] = 3, + [44820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3025), 7, + ACTIONS(3074), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100710,7 +101539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3023), 19, + ACTIONS(3072), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100730,10 +101559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44107] = 3, + [44854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3029), 7, + ACTIONS(3078), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100741,7 +101570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3027), 19, + ACTIONS(3076), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100761,50 +101590,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44141] = 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(1831), 1, - sym_identifier, - ACTIONS(2960), 1, - anon_sym_enum, - STATE(1166), 1, - sym__type_specifier, - STATE(1176), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1153), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 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, - [44193] = 3, + [44888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3033), 7, + ACTIONS(3082), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100812,7 +101601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3031), 19, + ACTIONS(3080), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100832,20 +101621,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44227] = 3, + [44922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3084), 1, + anon_sym_SEMI, + ACTIONS(2404), 7, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2402), 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, + [44958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3037), 7, + ACTIONS(3090), 1, + anon_sym___attribute__, + STATE(1172), 1, + sym_attribute_specifier, + ACTIONS(3088), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3035), 19, + ACTIONS(3086), 18, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -100863,38 +101686,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44261] = 12, + [44996] = 3, ACTIONS(3), 1, sym_comment, - 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(1831), 1, - sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1186), 1, - sym__type_specifier, - STATE(1153), 2, - sym_type_qualifier, - aux_sym_type_definition_repeat1, - ACTIONS(45), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(43), 8, + ACTIONS(3095), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(3093), 19, + 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_const, anon_sym_constexpr, anon_sym_volatile, @@ -100903,10 +101716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44313] = 3, + sym_identifier, + [45030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3041), 7, + ACTIONS(3099), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100914,7 +101728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3039), 19, + ACTIONS(3097), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100934,10 +101748,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44347] = 3, + [45064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3045), 7, + ACTIONS(3103), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100945,7 +101759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3043), 19, + ACTIONS(3101), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100965,10 +101779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44381] = 3, + [45098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3049), 7, + ACTIONS(3107), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -100976,7 +101790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3047), 19, + ACTIONS(3105), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -100996,15 +101810,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44415] = 3, + [45132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3053), 1, + ACTIONS(3111), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3051), 25, + anon_sym_COLON, + ACTIONS(3109), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -101018,19 +101840,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - 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, - [44449] = 3, + [45166] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_LBRACK, + ACTIONS(2596), 1, + anon_sym_SLASH, + ACTIONS(2613), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2615), 1, + anon_sym_AMP_AMP, + ACTIONS(2617), 1, + anon_sym_PIPE, + ACTIONS(2619), 1, + anon_sym_CARET, + ACTIONS(2621), 1, + anon_sym_AMP, + ACTIONS(2629), 1, + anon_sym_QMARK, + STATE(785), 1, + sym_argument_list, + ACTIONS(2280), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2282), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2592), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2594), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2598), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2600), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2602), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2623), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [45232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 7, + ACTIONS(3115), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -101038,7 +101899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3055), 19, + ACTIONS(3113), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -101058,10 +101919,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44483] = 3, + [45266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 7, + ACTIONS(3119), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -101069,7 +101930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3059), 19, + ACTIONS(3117), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -101089,10 +101950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44517] = 3, + [45300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3065), 7, + ACTIONS(3123), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -101100,7 +101961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3063), 19, + ACTIONS(3121), 19, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -101120,33 +101981,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44551] = 12, + [45334] = 11, ACTIONS(3), 1, sym_comment, - 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(1831), 1, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1193), 1, - sym__type_specifier, - STATE(1153), 2, + ACTIONS(3129), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1181), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(3127), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, + STATE(1205), 5, + sym__typedef_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, @@ -101160,28 +102019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44603] = 3, + [45383] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3069), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3067), 19, - 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, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3131), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1156), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3127), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1225), 5, + sym__typedef_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101190,21 +102057,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44637] = 5, + [45432] = 11, ACTIONS(3), 1, sym_comment, - STATE(1153), 2, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3133), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1183), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2442), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3071), 8, + ACTIONS(3127), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1199), 5, + sym__typedef_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101213,44 +102095,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2440), 10, - anon_sym___based, + [45481] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3135), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1156), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3127), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - anon_sym_enum, + STATE(1210), 5, + sym__typedef_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 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, + [45530] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, anon_sym_struct, + ACTIONS(53), 1, anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, sym_identifier, - [44675] = 12, + ACTIONS(3137), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1156), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3127), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1207), 5, + sym__typedef_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 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, + [45579] = 11, ACTIONS(3), 1, sym_comment, - 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(1831), 1, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1197), 1, - sym__type_specifier, - STATE(1157), 2, + ACTIONS(3139), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1180), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(3127), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, + STATE(1215), 5, + sym__typedef_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, @@ -101264,28 +102209,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44727] = 3, + [45628] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3076), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3074), 19, - 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, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3141), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1156), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3127), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1214), 5, + sym__typedef_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -101294,34 +102247,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [44761] = 12, + [45677] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - sym_primitive_type, - ACTIONS(49), 1, + ACTIONS(51), 1, + anon_sym_struct, + ACTIONS(53), 1, + anon_sym_union, + ACTIONS(1751), 1, anon_sym_enum, + ACTIONS(3125), 1, + sym_identifier, + ACTIONS(3143), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1178), 2, + sym_type_qualifier, + aux_sym_type_definition_repeat1, + ACTIONS(3127), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1228), 5, + sym__typedef_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(43), 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, + [45726] = 11, + ACTIONS(3), 1, + sym_comment, ACTIONS(51), 1, anon_sym_struct, ACTIONS(53), 1, anon_sym_union, - ACTIONS(1831), 1, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, sym_identifier, - STATE(1166), 1, - sym__type_specifier, - STATE(1176), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1153), 2, + ACTIONS(3145), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1186), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(1749), 4, + ACTIONS(3127), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, + STATE(1197), 5, + sym__typedef_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, @@ -101335,33 +102323,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44813] = 12, + [45775] = 11, ACTIONS(3), 1, sym_comment, - 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(1831), 1, + ACTIONS(1751), 1, + anon_sym_enum, + ACTIONS(3125), 1, sym_identifier, - STATE(958), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1174), 1, - sym__type_specifier, - STATE(1153), 2, + ACTIONS(3147), 1, + sym_primitive_type, + STATE(1328), 1, + aux_sym__typedef_sized_type_specifier, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(45), 4, + ACTIONS(3127), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1136), 5, - sym_sized_type_specifier, + STATE(1202), 5, + sym__typedef_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, @@ -101375,20 +102361,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44865] = 6, + [45824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3081), 1, + ACTIONS(3152), 1, anon_sym_LPAREN2, - ACTIONS(3085), 1, + ACTIONS(3156), 1, anon_sym_LBRACK, - ACTIONS(1975), 2, + ACTIONS(1977), 2, anon_sym_COMMA, anon_sym_STAR, - ACTIONS(3078), 2, + ACTIONS(3149), 2, anon_sym_RPAREN, anon_sym_LBRACK_LBRACK, - ACTIONS(1962), 18, + ACTIONS(1964), 18, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, @@ -101407,34 +102393,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [44903] = 11, + [45862] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_const, - ACTIONS(2078), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2080), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1428), 1, + STATE(1459), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1153), 2, + STATE(1193), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2648), 3, + ACTIONS(3159), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3088), 7, + ACTIONS(3161), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -101442,34 +102428,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44949] = 11, + [45908] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3165), 1, + anon_sym_LPAREN2, + STATE(1248), 1, + sym_preproc_argument_list, + ACTIONS(3167), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3163), 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, + [45942] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_const, - ACTIONS(2078), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2080), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1426), 1, + STATE(1470), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3090), 3, + ACTIONS(2654), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3088), 7, + ACTIONS(3161), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -101477,91 +102492,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [44995] = 11, + [45988] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_const, - ACTIONS(2078), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2080), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1418), 1, + STATE(1458), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1167), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3092), 3, + ACTIONS(3169), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3088), 7, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45041] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_LPAREN2, - STATE(1218), 1, - sym_preproc_argument_list, - ACTIONS(3098), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3094), 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, - [45075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_STAR, - STATE(1165), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(3102), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3100), 18, - 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_const, + ACTIONS(3161), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -101569,63 +102527,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45109] = 11, + [46034] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_const, - ACTIONS(2078), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2080), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1407), 1, + STATE(1471), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1159), 2, + STATE(1191), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(2498), 3, + ACTIONS(3171), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3088), 7, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [45155] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3110), 1, - anon_sym_STAR, - STATE(1165), 1, - aux_sym_pointer_type_repeat1, - ACTIONS(3108), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(3106), 18, - 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_const, + ACTIONS(3161), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -101633,35 +102562,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [45189] = 11, + [46080] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_const, - ACTIONS(2078), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2080), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1416), 1, + STATE(1455), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1160), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3113), 3, + ACTIONS(3173), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3088), 7, + ACTIONS(3161), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -101669,34 +102597,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45235] = 11, + [46126] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym_const, - ACTIONS(2078), 1, + ACTIONS(2090), 1, anon_sym_LPAREN2, - ACTIONS(2080), 1, + ACTIONS(2092), 1, anon_sym_STAR, - ACTIONS(2504), 1, + ACTIONS(2506), 1, anon_sym_LBRACK, - STATE(1411), 1, + STATE(1469), 1, sym__abstract_declarator, - STATE(1442), 1, + STATE(1504), 1, sym_parameter_list, - STATE(1153), 2, + STATE(1190), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - ACTIONS(3115), 3, + ACTIONS(2500), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1441), 4, + STATE(1482), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3088), 7, + ACTIONS(3161), 7, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -101704,30 +102632,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45281] = 10, + [46172] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1344), 1, - sym__field_declarator, - STATE(1789), 1, + STATE(1377), 1, + sym__declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -101737,30 +102665,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45324] = 10, + [46215] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2652), 1, + sym_primitive_type, + ACTIONS(3175), 1, sym_identifier, - ACTIONS(2664), 1, + STATE(926), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2650), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2646), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2648), 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, + [46252] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2664), 1, + sym_identifier, ACTIONS(2666), 1, + anon_sym_LPAREN2, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1339), 1, - sym__declarator, - STATE(1871), 1, + STATE(1423), 1, + sym__type_declarator, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1198), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -101770,25 +102728,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45367] = 10, + [46295] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1357), 1, + STATE(1424), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1171), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -101803,25 +102761,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45410] = 10, + [46338] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1360), 1, + STATE(1399), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1212), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -101836,32 +102794,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45453] = 10, + [46381] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3119), 1, + ACTIONS(3179), 1, anon_sym_RPAREN, - ACTIONS(3121), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3129), 1, + ACTIONS(3189), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1181), 7, + STATE(1213), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -101869,25 +102827,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [45496] = 10, + [46424] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1342), 1, + STATE(1380), 1, sym__declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -101902,25 +102860,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45539] = 10, + [46467] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1373), 1, + STATE(1409), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1195), 2, + STATE(1229), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -101935,25 +102893,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45582] = 10, + [46510] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1362), 1, + STATE(1404), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -101968,60 +102926,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45625] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2634), 1, - sym_primitive_type, - ACTIONS(3133), 1, - sym_identifier, - STATE(900), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2632), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2628), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(2630), 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, - [45662] = 10, + [46553] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1365), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1381), 1, + sym__declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102031,25 +102959,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45705] = 10, + [46596] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1358), 1, + STATE(1413), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1183), 2, + STATE(1206), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102064,131 +102992,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45748] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3135), 1, - anon_sym_COMMA, - ACTIONS(3137), 1, - anon_sym_RPAREN, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3145), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3147), 1, - anon_sym_AMP_AMP, - ACTIONS(3149), 1, - anon_sym_PIPE, - ACTIONS(3151), 1, - anon_sym_CARET, - ACTIONS(3153), 1, - anon_sym_AMP, - STATE(1518), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3155), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3157), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3161), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45803] = 5, - ACTIONS(3094), 1, - anon_sym_LF, - ACTIONS(3163), 1, - anon_sym_LPAREN2, - ACTIONS(3165), 1, - sym_comment, - STATE(1289), 1, - sym_preproc_argument_list, - ACTIONS(3098), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45836] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3135), 1, - anon_sym_COMMA, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3145), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3147), 1, - anon_sym_AMP_AMP, - ACTIONS(3149), 1, - anon_sym_PIPE, - ACTIONS(3151), 1, - anon_sym_CARET, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3167), 1, - anon_sym_RPAREN, - STATE(1509), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3155), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3157), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3161), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [45891] = 10, + [46639] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1378), 1, + STATE(1396), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102203,25 +103025,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45934] = 10, + [46682] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1354), 1, + STATE(1397), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1209), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102236,25 +103058,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [45977] = 10, + [46725] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(3177), 1, + sym_identifier, + ACTIONS(3181), 1, + anon_sym_LPAREN2, + ACTIONS(3183), 1, + anon_sym_defined, + ACTIONS(3193), 1, + anon_sym_RPAREN, + ACTIONS(3195), 1, + sym_number_literal, + ACTIONS(3185), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3187), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3191), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1217), 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, + [46768] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1353), 1, + STATE(1398), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102269,25 +103124,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46020] = 10, + [46811] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1356), 1, + STATE(1407), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1216), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102302,25 +103157,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46063] = 10, + [46854] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1371), 1, + STATE(1419), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1187), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102335,25 +103190,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46106] = 10, + [46897] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1363), 1, + STATE(1421), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102368,58 +103223,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46149] = 10, + [46940] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - sym_identifier, - ACTIONS(3121), 1, - anon_sym_LPAREN2, - ACTIONS(3123), 1, - anon_sym_defined, - ACTIONS(3169), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3199), 1, anon_sym_RPAREN, - ACTIONS(3171), 1, - sym_number_literal, - ACTIONS(3125), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3211), 1, + anon_sym_PIPE, + ACTIONS(3213), 1, + anon_sym_CARET, + ACTIONS(3215), 1, + anon_sym_AMP, + STATE(1543), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1179), 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, - [46192] = 10, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3219), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3221), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [46995] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1375), 1, + STATE(1418), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1211), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102434,25 +103295,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46235] = 10, + [47038] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1352), 1, + STATE(1410), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1203), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102467,25 +103328,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46278] = 10, + [47081] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1359), 1, + STATE(1422), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102500,30 +103361,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46321] = 10, + [47124] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3211), 1, + anon_sym_PIPE, + ACTIONS(3213), 1, + anon_sym_CARET, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3225), 1, + anon_sym_RPAREN, + STATE(1621), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3201), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3219), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3221), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47179] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1355), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1360), 1, + sym__field_declarator, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1185), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102533,30 +103433,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46364] = 10, + [47222] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1351), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1361), 1, + sym__field_declarator, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1182), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102566,30 +103466,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46407] = 10, + [47265] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1381), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1376), 1, + sym__field_declarator, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1190), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102599,25 +103499,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46450] = 10, + [47308] = 5, + ACTIONS(3163), 1, + anon_sym_LF, + ACTIONS(3227), 1, + anon_sym_LPAREN2, + ACTIONS(3229), 1, + sym_comment, + STATE(1296), 1, + sym_preproc_argument_list, + ACTIONS(3167), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47341] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1367), 1, + STATE(1402), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102632,30 +103560,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46493] = 10, + [47384] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1345), 1, - sym__field_declarator, - STATE(1789), 1, + STATE(1415), 1, + sym__type_declarator, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102665,25 +103593,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46536] = 10, + [47427] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1377), 1, + STATE(1400), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1175), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102698,25 +103626,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46579] = 10, + [47470] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1368), 1, + STATE(1411), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1199), 2, + STATE(1224), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102731,25 +103659,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46622] = 10, + [47513] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1380), 1, + STATE(1412), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102764,30 +103692,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46665] = 10, + [47556] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, ACTIONS(2664), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(2666), 1, + anon_sym_LPAREN2, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1338), 1, - sym__declarator, - STATE(1871), 1, + STATE(1395), 1, + sym__type_declarator, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102797,30 +103725,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46708] = 10, + [47599] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1335), 1, - sym__field_declarator, - STATE(1789), 1, + STATE(1414), 1, + sym__type_declarator, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1153), 2, + STATE(1226), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(43), 8, anon_sym_const, anon_sym_constexpr, @@ -102830,25 +103758,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46751] = 10, + [47642] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2664), 1, sym_identifier, - ACTIONS(2674), 1, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1369), 1, + STATE(1403), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1184), 2, + STATE(1156), 2, sym_type_qualifier, aux_sym_type_definition_repeat1, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -102863,30 +103791,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46794] = 9, + [47685] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3173), 1, + ACTIONS(3231), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1246), 7, + STATE(1282), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102894,30 +103822,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46834] = 9, + [47725] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3201), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3219), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3221), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3233), 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, + [47765] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3175), 1, + ACTIONS(3237), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1253), 7, + STATE(1314), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102925,30 +103884,60 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46874] = 9, + [47805] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(3239), 1, + anon_sym_COLON, + STATE(1174), 1, + sym_attribute_specifier, + STATE(1322), 1, + sym_enumerator_list, + ACTIONS(2680), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + ACTIONS(2678), 10, + 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, + sym_identifier, + [47843] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3177), 1, + ACTIONS(3251), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1287), 7, + STATE(1318), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102956,30 +103945,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46914] = 9, + [47883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3189), 1, + ACTIONS(3255), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1277), 7, + STATE(1317), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -102987,30 +103976,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46954] = 9, + [47923] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3193), 1, + ACTIONS(3257), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1283), 7, + STATE(1305), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103018,30 +104007,91 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [46994] = 9, + [47963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3259), 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, + [47991] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3207), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3209), 1, + anon_sym_AMP_AMP, + ACTIONS(3211), 1, + anon_sym_PIPE, + ACTIONS(3213), 1, + anon_sym_CARET, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3201), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3219), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3221), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3263), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [48041] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3195), 1, + ACTIONS(3265), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1267), 7, + STATE(1303), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103049,59 +104099,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47034] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(1294), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(3199), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3204), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1209), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3201), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3197), 10, - 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, - sym_identifier, - [47070] = 9, + [48081] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3207), 1, + ACTIONS(3267), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1242), 7, + STATE(1294), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103109,55 +104130,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47110] = 3, + [48121] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2354), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2352), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3241), 1, + sym_identifier, + ACTIONS(3243), 1, + anon_sym_LPAREN2, + ACTIONS(3245), 1, + anon_sym_defined, + ACTIONS(3269), 1, + sym_number_literal, + ACTIONS(3247), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3249), 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, - [47138] = 9, + ACTIONS(3253), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1298), 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, + [48161] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3209), 1, + ACTIONS(3271), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1288), 7, + STATE(1299), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103165,30 +104192,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47178] = 9, + [48201] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3211), 1, + ACTIONS(3273), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1282), 7, + STATE(1302), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103196,30 +104223,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47218] = 9, + [48241] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3213), 1, + ACTIONS(3275), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1261), 7, + STATE(1291), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103227,30 +104254,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47258] = 9, + [48281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3215), 1, + ACTIONS(3277), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1281), 7, + STATE(1306), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103258,16 +104285,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47298] = 9, + [48321] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3217), 1, + ACTIONS(3279), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103281,7 +104308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1270), 7, + STATE(1238), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103289,30 +104316,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47338] = 9, + [48361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3219), 1, + ACTIONS(3281), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1272), 7, + STATE(1320), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103320,41 +104347,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3223), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3221), 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, - [47406] = 3, + [48401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 5, + ACTIONS(3285), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3225), 15, + ACTIONS(3283), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103370,30 +104372,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47434] = 9, + [48429] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3229), 1, + ACTIONS(3287), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1221), 7, + STATE(1293), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103401,16 +104403,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47474] = 3, + [48469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3233), 5, + ACTIONS(3291), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3231), 15, + ACTIONS(3289), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -103426,30 +104428,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [47502] = 9, + [48497] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1327), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(3295), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3300), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1251), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3297), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3293), 10, + 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, + sym_identifier, + [48533] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3235), 1, + ACTIONS(3303), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1245), 7, + STATE(1307), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103457,30 +104488,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47542] = 9, + [48573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3237), 1, + ACTIONS(3305), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1260), 7, + STATE(1297), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103488,30 +104519,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47582] = 9, + [48613] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3239), 1, + ACTIONS(3307), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1247), 7, + STATE(1309), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103519,61 +104550,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47622] = 9, + [48653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, - sym_identifier, - ACTIONS(3121), 1, - anon_sym_LPAREN2, - ACTIONS(3123), 1, - anon_sym_defined, - ACTIONS(3241), 1, - sym_number_literal, - ACTIONS(3125), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3311), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3309), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1248), 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, - [47662] = 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, + [48681] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3243), 1, + ACTIONS(3313), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1249), 7, + STATE(1310), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103581,16 +104606,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47702] = 9, + [48721] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3245), 1, + ACTIONS(3315), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103604,7 +104629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1292), 7, + STATE(1284), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103612,30 +104637,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47742] = 9, + [48761] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3247), 1, + ACTIONS(3317), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1251), 7, + STATE(1283), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103643,16 +104668,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47782] = 9, + [48801] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3249), 1, + ACTIONS(3319), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103666,7 +104691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1290), 7, + STATE(1280), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103674,16 +104699,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47822] = 9, + [48841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3323), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3321), 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, + [48869] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3251), 1, + ACTIONS(3325), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103697,7 +104747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1280), 7, + STATE(1255), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103705,30 +104755,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47862] = 9, + [48909] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3253), 1, + ACTIONS(3327), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1252), 7, + STATE(1312), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103736,51 +104786,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47902] = 13, + [48949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1861), 1, - anon_sym_LPAREN2, - ACTIONS(1863), 1, - anon_sym_STAR, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2496), 1, - sym_identifier, - ACTIONS(2504), 1, - anon_sym_LBRACK, - STATE(1385), 1, - sym__declarator, - STATE(1442), 1, - sym_parameter_list, - STATE(1444), 1, - sym__abstract_declarator, - STATE(1871), 1, - sym_ms_based_modifier, - ACTIONS(3255), 2, + ACTIONS(3331), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3329), 15, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1441), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [47950] = 9, + 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, + [48977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3257), 1, + ACTIONS(3333), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103794,7 +104834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1276), 7, + STATE(1279), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103802,16 +104842,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [47990] = 9, + [49017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(2685), 1, + anon_sym_LBRACE, + STATE(1144), 1, + sym_attribute_specifier, + STATE(1323), 1, + sym_enumerator_list, + ACTIONS(2755), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2753), 10, + 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, + sym_identifier, + [49053] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3259), 1, + ACTIONS(3335), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103825,7 +104894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1275), 7, + STATE(1278), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103833,16 +104902,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48030] = 9, + [49093] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3261), 1, + ACTIONS(3337), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103856,7 +104925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1269), 7, + STATE(1277), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103864,30 +104933,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48070] = 9, + [49133] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3117), 1, + ACTIONS(3177), 1, sym_identifier, - ACTIONS(3121), 1, + ACTIONS(3181), 1, anon_sym_LPAREN2, - ACTIONS(3123), 1, + ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3263), 1, + ACTIONS(3339), 1, sym_number_literal, - ACTIONS(3125), 2, + ACTIONS(3185), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3127), 2, + ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3131), 5, + ACTIONS(3191), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1254), 7, + STATE(1231), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103895,30 +104964,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48110] = 9, + [49173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(2432), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2430), 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, + [49201] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3265), 1, + ACTIONS(3341), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1262), 7, + STATE(1316), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103926,30 +105020,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48150] = 9, + [49241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3201), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3235), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3233), 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, + [49275] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3267), 1, + ACTIONS(3343), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1268), 7, + STATE(1308), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103957,16 +105079,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48190] = 9, + [49315] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3201), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3235), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3233), 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, + [49351] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3269), 1, + ACTIONS(3345), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -103980,7 +105131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1266), 7, + STATE(1273), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -103988,30 +105139,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48230] = 9, + [49391] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3271), 1, + ACTIONS(3347), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1265), 7, + STATE(1319), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104019,77 +105170,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3275), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3273), 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, - [48298] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3145), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3147), 1, - anon_sym_AMP_AMP, - ACTIONS(3149), 1, - anon_sym_PIPE, - ACTIONS(3151), 1, - anon_sym_CARET, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3155), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3157), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3161), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3277), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [48348] = 9, + [49431] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3177), 1, sym_identifier, ACTIONS(3181), 1, anon_sym_LPAREN2, ACTIONS(3183), 1, anon_sym_defined, - ACTIONS(3279), 1, + ACTIONS(3349), 1, sym_number_literal, ACTIONS(3185), 2, anon_sym_BANG, @@ -104097,232 +105187,177 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3187), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1264), 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, - [48388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3283), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3281), 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, - [48416] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3287), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [48448] = 13, + ACTIONS(3191), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1271), 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, + [49471] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3205), 1, anon_sym_SLASH, - ACTIONS(3147), 1, - anon_sym_AMP_AMP, - ACTIONS(3149), 1, - anon_sym_PIPE, - ACTIONS(3151), 1, - anon_sym_CARET, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3139), 2, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, + ACTIONS(3203), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3155), 2, + ACTIONS(3217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3157), 2, + ACTIONS(3219), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3159), 2, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, + ACTIONS(3223), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3285), 3, + ACTIONS(3235), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3233), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, - [48496] = 12, + anon_sym_AMP_AMP, + anon_sym_CARET, + [49513] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3205), 1, anon_sym_SLASH, - ACTIONS(3149), 1, - anon_sym_PIPE, - ACTIONS(3151), 1, - anon_sym_CARET, - ACTIONS(3153), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3139), 2, + ACTIONS(3235), 1, + anon_sym_PIPE, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, + ACTIONS(3203), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3155), 2, + ACTIONS(3217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3157), 2, + ACTIONS(3219), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3159), 2, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, + ACTIONS(3223), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3285), 4, + ACTIONS(3233), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [48542] = 12, + anon_sym_CARET, + [49557] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3205), 1, anon_sym_SLASH, - ACTIONS(3151), 1, + ACTIONS(3213), 1, anon_sym_CARET, - ACTIONS(3153), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3287), 1, + ACTIONS(3235), 1, anon_sym_PIPE, - ACTIONS(3139), 2, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, + ACTIONS(3203), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3155), 2, + ACTIONS(3217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3157), 2, + ACTIONS(3219), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3159), 2, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, + ACTIONS(3223), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3285), 4, + ACTIONS(3233), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [48588] = 11, + [49603] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3205), 1, anon_sym_SLASH, - ACTIONS(3153), 1, - anon_sym_AMP, - ACTIONS(3287), 1, + ACTIONS(3211), 1, anon_sym_PIPE, - ACTIONS(3139), 2, + ACTIONS(3213), 1, + anon_sym_CARET, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, + ACTIONS(3203), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3155), 2, + ACTIONS(3217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3157), 2, + ACTIONS(3219), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3159), 2, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, + ACTIONS(3223), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3285), 5, + ACTIONS(3233), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - [48632] = 9, + [49649] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3289), 1, + ACTIONS(3351), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1271), 7, + STATE(1321), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104330,117 +105365,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48672] = 10, + [49689] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3205), 1, anon_sym_SLASH, - ACTIONS(3139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3155), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3157), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3159), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3161), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3287), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3285), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(3209), 1, anon_sym_AMP_AMP, + ACTIONS(3211), 1, + anon_sym_PIPE, + ACTIONS(3213), 1, anon_sym_CARET, - [48714] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3139), 2, + ACTIONS(3215), 1, + anon_sym_AMP, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, + ACTIONS(3203), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3157), 2, + ACTIONS(3217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3219), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3159), 2, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, + ACTIONS(3223), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3287), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3285), 7, + ACTIONS(3233), 3, 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, - [48754] = 7, + [49737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3235), 5, anon_sym_SLASH, - ACTIONS(3139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3161), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3287), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 9, + ACTIONS(3233), 15, 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, - [48790] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3139), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3287), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3285), 11, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -104450,47 +105425,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48824] = 3, + [49765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3293), 5, + ACTIONS(3205), 1, 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, + ACTIONS(3203), 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, - [48852] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3297), 5, - anon_sym_SLASH, + ACTIONS(3235), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3295), 15, + ACTIONS(3233), 13, 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, @@ -104500,30 +105452,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48880] = 9, + [49797] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3299), 1, + ACTIONS(3353), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1279), 7, + STATE(1290), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104531,30 +105483,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48920] = 9, + [49837] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3179), 1, + ACTIONS(3241), 1, sym_identifier, - ACTIONS(3181), 1, + ACTIONS(3243), 1, anon_sym_LPAREN2, - ACTIONS(3183), 1, + ACTIONS(3245), 1, anon_sym_defined, - ACTIONS(3301), 1, + ACTIONS(3355), 1, sym_number_literal, - ACTIONS(3185), 2, + ACTIONS(3247), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3187), 2, + ACTIONS(3249), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3191), 5, + ACTIONS(3253), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1263), 7, + STATE(1313), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -104562,16 +105514,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [48960] = 3, + [49877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 5, + ACTIONS(3359), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3303), 15, + ACTIONS(3357), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104587,16 +105539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [48988] = 3, + [49905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 5, + ACTIONS(3363), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3285), 15, + ACTIONS(3361), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -104612,147 +105564,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [49016] = 12, - ACTIONS(3165), 1, + [49933] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 1, + ACTIONS(1865), 1, + anon_sym_LPAREN2, + ACTIONS(1867), 1, + anon_sym_STAR, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2506), 1, + anon_sym_LBRACK, + STATE(1440), 1, + sym__declarator, + STATE(1479), 1, + sym__abstract_declarator, + STATE(1504), 1, + sym_parameter_list, + STATE(1811), 1, + sym_ms_based_modifier, + ACTIONS(3365), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1482), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [49981] = 12, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3367), 1, anon_sym_LF, - ACTIONS(3313), 1, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49061] = 8, - ACTIONS(3165), 1, + [50026] = 9, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3381), 1, + anon_sym_AMP, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3287), 5, + ACTIONS(3235), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - [49098] = 12, - ACTIONS(3165), 1, + ACTIONS(3385), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [50065] = 3, + ACTIONS(2430), 1, + anon_sym_LF, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(2432), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, anon_sym_PIPE, - ACTIONS(3319), 1, anon_sym_CARET, - ACTIONS(3321), 1, anon_sym_AMP, - ACTIONS(3329), 1, - anon_sym_LF, - ACTIONS(3309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3323), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3325), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49143] = 12, - ACTIONS(3165), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50092] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3207), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3209), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3211), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3213), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3215), 1, anon_sym_AMP, - ACTIONS(3331), 1, - anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3389), 1, + anon_sym_RPAREN, + ACTIONS(3201), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3203), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3217), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3219), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [49188] = 5, - ACTIONS(3165), 1, + ACTIONS(3223), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50141] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3287), 13, + ACTIONS(3235), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104766,22 +105747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49219] = 6, - ACTIONS(3165), 1, + [50172] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3321), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3323), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3287), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -104793,204 +105769,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49252] = 14, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50199] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3283), 1, + anon_sym_LF, + ACTIONS(3285), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(3145), 1, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(3147), 1, anon_sym_AMP_AMP, - ACTIONS(3149), 1, anon_sym_PIPE, - ACTIONS(3151), 1, anon_sym_CARET, - ACTIONS(3153), 1, anon_sym_AMP, - ACTIONS(3333), 1, - anon_sym_RPAREN, - ACTIONS(3139), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3155), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3157), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(3159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49301] = 7, - ACTIONS(3165), 1, + [50226] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, - anon_sym_LF, - ACTIONS(3309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3325), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3287), 7, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, + ACTIONS(3375), 1, anon_sym_AMP_AMP, + ACTIONS(3377), 1, anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_CARET, + ACTIONS(3381), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [49336] = 9, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3285), 1, + ACTIONS(3391), 1, anon_sym_LF, - ACTIONS(3321), 1, - anon_sym_AMP, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3287), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49375] = 12, - ACTIONS(3165), 1, + [50271] = 6, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, - anon_sym_AMP_AMP, - ACTIONS(3317), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, - anon_sym_CARET, - ACTIONS(3321), 1, - anon_sym_AMP, - ACTIONS(3335), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [49420] = 12, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3313), 1, + ACTIONS(3235), 11, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, anon_sym_PIPE, - ACTIONS(3319), 1, anon_sym_CARET, - ACTIONS(3321), 1, anon_sym_AMP, - ACTIONS(3337), 1, - anon_sym_LF, - ACTIONS(3309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3323), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3325), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49465] = 12, - ACTIONS(3165), 1, + [50304] = 7, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, - anon_sym_AMP_AMP, - ACTIONS(3317), 1, - anon_sym_PIPE, - ACTIONS(3319), 1, - anon_sym_CARET, - ACTIONS(3321), 1, - anon_sym_AMP, - ACTIONS(3339), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49510] = 3, - ACTIONS(2352), 1, - anon_sym_LF, - ACTIONS(3165), 1, + ACTIONS(3235), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [50339] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(2354), 18, + ACTIONS(3329), 1, + anon_sym_LF, + ACTIONS(3331), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105009,12 +105907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49537] = 3, - ACTIONS(3165), 1, + [50366] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3259), 1, anon_sym_LF, - ACTIONS(3275), 18, + ACTIONS(3261), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105033,108 +105931,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49564] = 10, - ACTIONS(3165), 1, + [50393] = 8, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3319), 1, - anon_sym_CARET, - ACTIONS(3321), 1, - anon_sym_AMP, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3287), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49605] = 11, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_LF, - ACTIONS(3317), 1, + ACTIONS(3235), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(3319), 1, anon_sym_CARET, - ACTIONS(3321), 1, anon_sym_AMP, - ACTIONS(3287), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3323), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3327), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3325), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [49648] = 12, - ACTIONS(3165), 1, + [50430] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3341), 1, + ACTIONS(3393), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49693] = 3, - ACTIONS(3165), 1, + [50475] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3303), 1, + ACTIONS(3357), 1, anon_sym_LF, - ACTIONS(3305), 18, + ACTIONS(3359), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105153,144 +106017,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49720] = 12, - ACTIONS(3165), 1, + [50502] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3343), 1, + ACTIONS(3395), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49765] = 12, - ACTIONS(3165), 1, + [50547] = 10, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3287), 1, + ACTIONS(3379), 1, + anon_sym_CARET, + ACTIONS(3381), 1, + anon_sym_AMP, + ACTIONS(3369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3235), 3, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [50588] = 11, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3233), 1, + anon_sym_LF, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3309), 2, + ACTIONS(3235), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49810] = 12, - ACTIONS(3165), 1, + [50631] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3345), 1, + ACTIONS(3397), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49855] = 12, - ACTIONS(3165), 1, + [50676] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3233), 1, + anon_sym_LF, + ACTIONS(3235), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3347), 1, - anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [49900] = 3, - ACTIONS(3165), 1, + [50721] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3231), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3233), 18, + ACTIONS(3235), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105309,17 +106203,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49927] = 3, - ACTIONS(3165), 1, + [50748] = 3, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3289), 1, + anon_sym_LF, + ACTIONS(3291), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50775] = 4, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3233), 1, anon_sym_LF, - ACTIONS(3227), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3235), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -105333,36 +106252,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [49954] = 3, - ACTIONS(3165), 1, + [50804] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3373), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3375), 1, + anon_sym_AMP_AMP, + ACTIONS(3377), 1, + anon_sym_PIPE, + ACTIONS(3379), 1, + anon_sym_CARET, + ACTIONS(3381), 1, + anon_sym_AMP, + ACTIONS(3399), 1, anon_sym_LF, - ACTIONS(3283), 18, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3383), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [50849] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3205), 1, + anon_sym_SLASH, + ACTIONS(3207), 1, anon_sym_PIPE_PIPE, + ACTIONS(3209), 1, anon_sym_AMP_AMP, + ACTIONS(3211), 1, anon_sym_PIPE, + ACTIONS(3213), 1, anon_sym_CARET, + ACTIONS(3215), 1, anon_sym_AMP, + ACTIONS(3401), 1, + anon_sym_RPAREN, + ACTIONS(3201), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3203), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3217), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3219), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3221), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3223), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49981] = 3, - ACTIONS(3165), 1, + [50898] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3295), 1, + ACTIONS(3361), 1, anon_sym_LF, - ACTIONS(3297), 18, + ACTIONS(3363), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105381,80 +106344,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50008] = 14, - ACTIONS(3), 1, + [50925] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_SLASH, - ACTIONS(3145), 1, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, - ACTIONS(3147), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3149), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3151), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3153), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3349), 1, - anon_sym_RPAREN, - ACTIONS(3139), 2, + ACTIONS(3403), 1, + anon_sym_LF, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3141), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3155), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3157), 2, + ACTIONS(3387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3159), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3161), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50057] = 12, - ACTIONS(3165), 1, + anon_sym_LT, + [50970] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, - ACTIONS(3315), 1, + ACTIONS(3375), 1, anon_sym_AMP_AMP, - ACTIONS(3317), 1, + ACTIONS(3377), 1, anon_sym_PIPE, - ACTIONS(3319), 1, + ACTIONS(3379), 1, anon_sym_CARET, - ACTIONS(3321), 1, + ACTIONS(3381), 1, anon_sym_AMP, - ACTIONS(3351), 1, + ACTIONS(3405), 1, anon_sym_LF, - ACTIONS(3309), 2, + ACTIONS(3369), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3323), 2, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3327), 2, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3325), 4, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [50102] = 3, - ACTIONS(3165), 1, + [51015] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3309), 1, anon_sym_LF, - ACTIONS(3223), 18, + ACTIONS(3311), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105473,86 +106434,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [50129] = 3, - ACTIONS(3165), 1, + [51042] = 12, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3285), 1, - anon_sym_LF, - ACTIONS(3287), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, + ACTIONS(3375), 1, anon_sym_AMP_AMP, + ACTIONS(3377), 1, anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_CARET, + ACTIONS(3381), 1, anon_sym_AMP, + ACTIONS(3407), 1, + anon_sym_LF, + ACTIONS(3369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50156] = 3, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3291), 1, - anon_sym_LF, - ACTIONS(3293), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3385), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51087] = 12, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, + ACTIONS(3375), 1, anon_sym_AMP_AMP, + ACTIONS(3377), 1, anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_CARET, + ACTIONS(3381), 1, anon_sym_AMP, + ACTIONS(3409), 1, + anon_sym_LF, + ACTIONS(3369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3387), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50183] = 4, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3285), 1, - anon_sym_LF, - ACTIONS(3311), 3, + ACTIONS(3371), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3287), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3385), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [51132] = 12, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3373), 1, anon_sym_PIPE_PIPE, + ACTIONS(3375), 1, anon_sym_AMP_AMP, + ACTIONS(3377), 1, anon_sym_PIPE, + ACTIONS(3379), 1, anon_sym_CARET, + ACTIONS(3381), 1, anon_sym_AMP, + ACTIONS(3411), 1, + anon_sym_LF, + ACTIONS(3369), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3387), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3371), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3385), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50212] = 3, + [51177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 2, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1143), 1, + sym_attribute_specifier, + ACTIONS(2986), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(2984), 10, + 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, + sym_identifier, + [51207] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1146), 1, + sym_attribute_specifier, + ACTIONS(3021), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3019), 10, + 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, + sym_identifier, + [51237] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + STATE(1172), 1, + sym_attribute_specifier, + ACTIONS(3088), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3086), 10, + 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, + sym_identifier, + [51267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3353), 15, + ACTIONS(3413), 15, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -105568,13 +106630,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [50237] = 3, + [51292] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1326), 1, + aux_sym__typedef_sized_type_specifier, + ACTIONS(3419), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3421), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3417), 10, + 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, + sym_identifier, + [51321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 2, + ACTIONS(3426), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3357), 15, + ACTIONS(3424), 15, anon_sym___based, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, @@ -105590,18 +106676,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [50262] = 6, + [51346] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LBRACE, - ACTIONS(2896), 1, + STATE(1326), 1, + aux_sym__typedef_sized_type_specifier, + ACTIONS(3430), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3127), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3428), 10, + anon_sym___based, anon_sym_const, - ACTIONS(3361), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [51375] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2678), 1, + anon_sym_const, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3434), 1, anon_sym_COLON, - STATE(1135), 1, + STATE(1174), 1, + sym_attribute_specifier, + STATE(1322), 1, sym_enumerator_list, - ACTIONS(2898), 10, + ACTIONS(2680), 10, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, @@ -105612,530 +106726,723 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50290] = 9, + [51409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(3439), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3437), 14, anon_sym___based, - ACTIONS(2658), 1, + 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, sym_identifier, - ACTIONS(2660), 1, + [51433] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2701), 1, + sym_identifier, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2705), 1, anon_sym_STAR, - ACTIONS(3364), 1, + ACTIONS(3441), 1, anon_sym_SEMI, - STATE(1326), 1, + STATE(1335), 1, sym__field_declarator, - STATE(1789), 1, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1394), 5, + STATE(1988), 1, + sym_attribute_specifier, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [50322] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2664), 1, - anon_sym_LPAREN2, - ACTIONS(2666), 1, - anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, - sym__declarator, - STATE(1600), 1, - sym__function_definition_declarator, - STATE(1871), 1, - sym_ms_based_modifier, - STATE(1451), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_function_declarator, - sym_array_declarator, - [50356] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2664), 1, - anon_sym_LPAREN2, - ACTIONS(2666), 1, - anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, - sym__declarator, - STATE(1615), 1, - sym__function_definition_declarator, - STATE(1871), 1, - sym_ms_based_modifier, - STATE(1451), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_function_declarator, - sym_array_declarator, - [50390] = 9, + [51471] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1347), 1, - sym__declarator, - STATE(1502), 1, - sym_init_declarator, - STATE(1871), 1, + ACTIONS(3443), 1, + anon_sym_SEMI, + STATE(1338), 1, + sym__field_declarator, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [50422] = 9, + STATE(1885), 1, + sym_attribute_specifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [51509] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1374), 1, - sym__declarator, - STATE(1631), 1, - sym_init_declarator, - STATE(1871), 1, + ACTIONS(3445), 1, + anon_sym_SEMI, + STATE(1337), 1, + sym__field_declarator, + STATE(1833), 1, + sym_attribute_specifier, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1405), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [50454] = 9, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [51547] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(31), 1, + anon_sym___attribute__, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2705), 1, anon_sym_STAR, - ACTIONS(3368), 1, + ACTIONS(3447), 1, anon_sym_SEMI, - STATE(1321), 1, + STATE(1336), 1, sym__field_declarator, - STATE(1789), 1, + STATE(1733), 1, + sym_attribute_specifier, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1394), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [50486] = 10, + [51585] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3453), 1, + anon_sym_SEMI, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + anon_sym_COLON, + STATE(1433), 1, + sym_parameter_list, + STATE(1477), 1, + sym_bitfield_clause, + STATE(1496), 1, + aux_sym_field_declaration_repeat1, + STATE(1931), 1, + sym_attribute_specifier, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [51626] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + anon_sym_COLON, + ACTIONS(3459), 1, + anon_sym_SEMI, + STATE(1433), 1, + sym_parameter_list, + STATE(1480), 1, + aux_sym_field_declaration_repeat1, + STATE(1481), 1, + sym_bitfield_clause, + STATE(1722), 1, + sym_attribute_specifier, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [51667] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + anon_sym_COLON, + ACTIONS(3461), 1, + anon_sym_SEMI, + STATE(1433), 1, + sym_parameter_list, + STATE(1493), 1, + sym_bitfield_clause, + STATE(1494), 1, + aux_sym_field_declaration_repeat1, + STATE(1884), 1, + sym_attribute_specifier, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [51708] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + anon_sym_COLON, + ACTIONS(3463), 1, + anon_sym_SEMI, + STATE(1433), 1, + sym_parameter_list, + STATE(1483), 1, + aux_sym_field_declaration_repeat1, + STATE(1484), 1, + sym_bitfield_clause, + STATE(1874), 1, + sym_attribute_specifier, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [51749] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1354), 1, sym__declarator, - STATE(1602), 1, - sym__function_definition_declarator, - STATE(1871), 1, + STATE(1620), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50520] = 10, + [51781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1391), 1, sym__declarator, - STATE(1616), 1, - sym__function_definition_declarator, - STATE(1871), 1, + STATE(1569), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50554] = 9, + [51813] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3370), 1, - anon_sym_SEMI, - STATE(1329), 1, - sym__field_declarator, - STATE(1789), 1, + STATE(1357), 1, + sym__declarator, + STATE(1599), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [50586] = 10, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [51845] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1386), 1, sym__declarator, - STATE(1610), 1, - sym__function_definition_declarator, - STATE(1871), 1, + STATE(1620), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50620] = 10, + [51877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1347), 1, sym__declarator, - STATE(1662), 1, - sym__function_definition_declarator, - STATE(1871), 1, + STATE(1628), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50654] = 10, + [51909] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1393), 1, sym__declarator, - STATE(1654), 1, - sym__function_definition_declarator, - STATE(1871), 1, + STATE(1575), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50688] = 9, + [51941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(3467), 1, + anon_sym_LPAREN2, + ACTIONS(3470), 1, + anon_sym_STAR, + ACTIONS(3465), 10, anon_sym___based, - ACTIONS(2496), 1, + 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, - ACTIONS(2664), 1, + [51963] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(123), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3474), 1, + anon_sym_SEMI, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3478), 1, + anon_sym_EQ, + STATE(153), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1588), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52001] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(39), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3480), 1, + anon_sym_SEMI, + STATE(494), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1625), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52039] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1334), 1, + STATE(1390), 1, sym__declarator, - STATE(1543), 1, + STATE(1628), 1, sym_init_declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50720] = 9, + [52071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1332), 1, + STATE(1356), 1, sym__declarator, - STATE(1581), 1, + STATE(1569), 1, sym_init_declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50752] = 10, + [52103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1383), 1, sym__declarator, STATE(1606), 1, - sym__function_definition_declarator, - STATE(1871), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50786] = 9, + [52135] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1343), 1, + STATE(1389), 1, sym__declarator, - STATE(1487), 1, + STATE(1599), 1, sym_init_declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50818] = 9, + [52167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2658), 1, - sym_identifier, - ACTIONS(2660), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3487), 1, + anon_sym_LBRACK, + STATE(1352), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3482), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2662), 1, - anon_sym_STAR, - ACTIONS(3372), 1, anon_sym_SEMI, - STATE(1319), 1, - sym__field_declarator, - STATE(1789), 1, - sym_ms_based_modifier, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [50850] = 10, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [52191] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, + STATE(1406), 1, sym__declarator, - STATE(1642), 1, - sym__function_definition_declarator, - STATE(1871), 1, + STATE(1656), 1, + sym_init_declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1451), 4, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, + sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50884] = 9, + [52223] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_SEMI, + STATE(216), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1613), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52261] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, STATE(1346), 1, sym__declarator, - STATE(1522), 1, + STATE(1606), 1, sym_init_declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50916] = 10, + [52293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2664), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(593), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, - anon_sym_STAR, - ACTIONS(3366), 1, - sym_identifier, - STATE(1405), 1, - sym_pointer_declarator, - STATE(1413), 1, - sym__declarator, - STATE(1641), 1, - sym__function_definition_declarator, - STATE(1871), 1, - sym_ms_based_modifier, - STATE(1451), 4, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_function_declarator, - sym_array_declarator, - [50950] = 8, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3491), 1, + anon_sym_SEMI, + STATE(463), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1562), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52331] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3493), 1, + anon_sym_SEMI, + STATE(490), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1571), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [52369] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2496), 1, + ACTIONS(2498), 1, sym_identifier, - ACTIONS(2664), 1, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2666), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1393), 1, + STATE(1430), 1, sym__declarator, - STATE(1871), 1, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1405), 5, + STATE(1438), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [50979] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1865), 1, - anon_sym___based, - ACTIONS(2658), 1, - sym_identifier, - ACTIONS(2660), 1, - anon_sym_LPAREN2, - ACTIONS(2662), 1, - anon_sym_STAR, - STATE(1337), 1, - sym__field_declarator, - STATE(1789), 1, - sym_ms_based_modifier, - STATE(1394), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [51008] = 7, + [52398] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(3374), 1, + ACTIONS(3495), 1, anon_sym_RPAREN, - ACTIONS(3376), 1, + ACTIONS(3497), 1, anon_sym_COLON, - STATE(1513), 1, + STATE(1554), 1, sym_gnu_asm_output_operand_list, - STATE(755), 2, + STATE(754), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(91), 5, @@ -106144,41 +107451,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [51035] = 11, + [52425] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3382), 1, - anon_sym_SEMI, - ACTIONS(3384), 1, + ACTIONS(3455), 1, anon_sym_LBRACK, - ACTIONS(3386), 1, + STATE(1433), 1, + sym_parameter_list, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3499), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - STATE(1395), 1, + [52452] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, + anon_sym_LBRACK, + STATE(1433), 1, sym_parameter_list, - STATE(1482), 1, - sym_bitfield_clause, - STATE(1551), 1, - aux_sym_field_declaration_repeat1, - STATE(1372), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51070] = 5, + ACTIONS(3501), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [52479] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 1, + ACTIONS(3432), 1, anon_sym___attribute__, - ACTIONS(3392), 1, + ACTIONS(3505), 1, anon_sym_LBRACK, - STATE(1323), 2, + STATE(1366), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3388), 7, + ACTIONS(3503), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106186,59 +107509,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51093] = 11, + [52502] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3386), 1, - anon_sym_COLON, - ACTIONS(3394), 1, - anon_sym_SEMI, - STATE(1395), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1497), 1, - aux_sym_field_declaration_repeat1, - STATE(1499), 1, - sym_bitfield_clause, - STATE(1372), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51128] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3398), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3401), 1, - anon_sym_LBRACK, - STATE(1322), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3396), 7, + ACTIONS(3507), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - [51151] = 5, + [52529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 1, + ACTIONS(3511), 1, anon_sym___attribute__, - ACTIONS(3405), 1, + ACTIONS(3514), 1, anon_sym_LBRACK, - STATE(1328), 2, + STATE(1364), 2, sym_attribute_specifier, aux_sym_function_declarator_repeat1, - ACTIONS(3403), 7, + ACTIONS(3509), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106246,18 +107547,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [51174] = 7, + [52552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2240), 1, + ACTIONS(2232), 1, sym_identifier, - ACTIONS(3376), 1, + ACTIONS(3497), 1, anon_sym_COLON, - ACTIONS(3407), 1, + ACTIONS(3516), 1, anon_sym_RPAREN, - STATE(1539), 1, + STATE(1629), 1, sym_gnu_asm_output_operand_list, - STATE(755), 2, + STATE(754), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(91), 5, @@ -106266,178 +107567,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [51201] = 8, + [52579] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3520), 1, + anon_sym_LBRACK, + STATE(1364), 2, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3518), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [52602] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3457), 1, + anon_sym_COLON, + STATE(1433), 1, + sym_parameter_list, + STATE(1563), 1, + sym_bitfield_clause, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3522), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [52633] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2498), 1, sym_identifier, + ACTIONS(2672), 1, + anon_sym_LPAREN2, ACTIONS(2674), 1, + anon_sym_STAR, + STATE(1448), 1, + sym__declarator, + STATE(1811), 1, + sym_ms_based_modifier, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52662] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2664), 1, + sym_identifier, + ACTIONS(2666), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2668), 1, anon_sym_STAR, - STATE(1401), 1, + STATE(1450), 1, sym__type_declarator, - STATE(1856), 1, + STATE(1785), 1, sym_ms_based_modifier, - STATE(1429), 5, + STATE(1460), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [51230] = 11, + [52691] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + anon_sym_STAR, + STATE(1425), 1, + sym__declarator, + STATE(1811), 1, + sym_ms_based_modifier, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52720] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, + anon_sym_LPAREN2, + ACTIONS(2674), 1, + anon_sym_STAR, + STATE(1427), 1, + sym__declarator, + STATE(1811), 1, + sym_ms_based_modifier, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52749] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3455), 1, anon_sym_LBRACK, - ACTIONS(3386), 1, - anon_sym_COLON, - ACTIONS(3409), 1, - anon_sym_SEMI, - STATE(1395), 1, + STATE(1433), 1, sym_parameter_list, - STATE(1536), 1, - sym_bitfield_clause, - STATE(1537), 1, - aux_sym_field_declaration_repeat1, - STATE(1372), 2, + STATE(1384), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51265] = 8, + ACTIONS(3524), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [52776] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2672), 1, + ACTIONS(2701), 1, + sym_identifier, + ACTIONS(2703), 1, + anon_sym_LPAREN2, + ACTIONS(2705), 1, + anon_sym_STAR, + STATE(1367), 1, + sym__field_declarator, + STATE(1835), 1, + sym_ms_based_modifier, + STATE(1445), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [52805] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, sym_identifier, + ACTIONS(2672), 1, + anon_sym_LPAREN2, ACTIONS(2674), 1, + anon_sym_STAR, + STATE(1452), 1, + sym__declarator, + STATE(1811), 1, + sym_ms_based_modifier, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52834] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2498), 1, + sym_identifier, + ACTIONS(2672), 1, anon_sym_LPAREN2, - ACTIONS(2676), 1, + ACTIONS(2674), 1, anon_sym_STAR, - STATE(1387), 1, - sym__type_declarator, - STATE(1856), 1, + STATE(1449), 1, + sym__declarator, + STATE(1811), 1, sym_ms_based_modifier, - STATE(1429), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [51294] = 5, + STATE(1438), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [52863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 1, - anon_sym___attribute__, - ACTIONS(3416), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, anon_sym_LBRACK, - STATE(1328), 2, - sym_attribute_specifier, - aux_sym_function_declarator_repeat1, - ACTIONS(3411), 7, + STATE(1433), 1, + sym_parameter_list, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3526), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - [51317] = 11, + anon_sym___attribute__, + anon_sym_COLON, + [52890] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3386), 1, - anon_sym_COLON, - ACTIONS(3418), 1, - anon_sym_SEMI, - STATE(1395), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1554), 1, - sym_bitfield_clause, - STATE(1555), 1, - aux_sym_field_declaration_repeat1, - STATE(1372), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51352] = 8, + ACTIONS(3528), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [52917] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1865), 1, + ACTIONS(1869), 1, anon_sym___based, - ACTIONS(2658), 1, + ACTIONS(2701), 1, sym_identifier, - ACTIONS(2660), 1, + ACTIONS(2703), 1, anon_sym_LPAREN2, - ACTIONS(2662), 1, + ACTIONS(2705), 1, anon_sym_STAR, - STATE(1397), 1, + STATE(1453), 1, sym__field_declarator, - STATE(1789), 1, + STATE(1835), 1, sym_ms_based_modifier, - STATE(1394), 5, + STATE(1445), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [51381] = 3, + [52946] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1869), 1, + anon_sym___based, + ACTIONS(2664), 1, + sym_identifier, + ACTIONS(2666), 1, + anon_sym_LPAREN2, + ACTIONS(2668), 1, + anon_sym_STAR, + STATE(1444), 1, + sym__type_declarator, + STATE(1785), 1, + sym_ms_based_modifier, + STATE(1460), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [52975] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3420), 9, + STATE(1362), 1, + sym_parameter_list, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3530), 5, 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, - [51399] = 10, + [53002] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3424), 1, - anon_sym_COMMA, - ACTIONS(3426), 1, - anon_sym_SEMI, - ACTIONS(3428), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, - anon_sym_EQ, - STATE(1320), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1579), 1, - aux_sym_declaration_repeat1, - STATE(1341), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51431] = 3, + ACTIONS(3532), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + [53029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3536), 1, anon_sym_LBRACK, - ACTIONS(3432), 9, + ACTIONS(3534), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106447,134 +107911,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [51449] = 10, + [53047] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3424), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3474), 1, + anon_sym_SEMI, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3436), 1, - anon_sym_SEMI, - STATE(1320), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1529), 1, + STATE(1588), 1, aux_sym_declaration_repeat1, - STATE(1341), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51481] = 7, + [53079] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3540), 1, anon_sym_LBRACK, - STATE(1395), 1, - sym_parameter_list, - STATE(1372), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3438), 4, + ACTIONS(3538), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - [51507] = 6, + [53101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3544), 1, anon_sym_LBRACK, - STATE(1446), 1, - sym_gnu_asm_output_operand, - STATE(1730), 1, - sym_string_literal, - ACTIONS(3440), 2, + ACTIONS(3542), 9, + anon_sym_COMMA, 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, - [51531] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, - anon_sym_LBRACK, - ACTIONS(3386), 1, - anon_sym_COLON, - STATE(1395), 1, - sym_parameter_list, - STATE(1589), 1, - sym_bitfield_clause, - ACTIONS(3444), 2, - anon_sym_COMMA, anon_sym_SEMI, - STATE(1372), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [51561] = 7, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [53119] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(1320), 1, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3489), 1, + anon_sym_SEMI, + STATE(1362), 1, sym_parameter_list, - STATE(1341), 2, + STATE(1613), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3446), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [51587] = 7, + [53151] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3548), 1, anon_sym_LBRACK, - STATE(1320), 1, - sym_parameter_list, - STATE(1341), 2, + STATE(1352), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3448), 4, + ACTIONS(3546), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - [51613] = 6, + [53173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(3552), 1, anon_sym_LBRACK, - STATE(1458), 1, + STATE(1513), 1, sym_gnu_asm_input_operand, - STATE(1690), 1, + STATE(1957), 1, sym_string_literal, - ACTIONS(3450), 2, + ACTIONS(3550), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(91), 5, @@ -106583,152 +108022,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [51637] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3456), 1, - anon_sym_LBRACK, - STATE(1322), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3454), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - [51659] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(1320), 1, - sym_parameter_list, - STATE(1341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3458), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_EQ, - [51685] = 10, + [53197] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3424), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3460), 1, + ACTIONS(3493), 1, anon_sym_SEMI, - STATE(1320), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1496), 1, + STATE(1571), 1, aux_sym_declaration_repeat1, - STATE(1341), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51717] = 7, + [53229] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, - anon_sym_LBRACK, - STATE(1395), 1, - sym_parameter_list, - STATE(1372), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3462), 4, + ACTIONS(3472), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [51743] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(1395), 1, + ACTIONS(3478), 1, + anon_sym_EQ, + ACTIONS(3480), 1, + anon_sym_SEMI, + STATE(1362), 1, sym_parameter_list, - STATE(1372), 2, + STATE(1625), 1, + aux_sym_declaration_repeat1, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3464), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [51769] = 10, + [53261] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3424), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3466), 1, + ACTIONS(3491), 1, anon_sym_SEMI, - STATE(1320), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1533), 1, + STATE(1562), 1, aux_sym_declaration_repeat1, - STATE(1341), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51801] = 10, + [53293] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3556), 1, + anon_sym_LBRACK, + STATE(1521), 1, + sym_gnu_asm_output_operand, + STATE(1939), 1, + sym_string_literal, + ACTIONS(3554), 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, + [53317] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3424), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3428), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, + ACTIONS(3478), 1, anon_sym_EQ, - ACTIONS(3468), 1, + ACTIONS(3558), 1, anon_sym_SEMI, - STATE(1320), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1479), 1, + STATE(1586), 1, aux_sym_declaration_repeat1, - STATE(1341), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51833] = 3, + [53349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3472), 1, + ACTIONS(3562), 1, anon_sym_LBRACK, - ACTIONS(3470), 9, + ACTIONS(3560), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106738,697 +108143,692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - [51851] = 7, + [53367] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - STATE(1320), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1341), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3474), 4, + ACTIONS(3564), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_EQ, - [51877] = 7, + [53392] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - STATE(1395), 1, - sym_parameter_list, - STATE(1372), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3476), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [51903] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3480), 1, + ACTIONS(3570), 1, anon_sym_SEMI, - ACTIONS(3482), 1, - anon_sym_LBRACK, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1503), 1, + STATE(1591), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51932] = 9, + [53421] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3484), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3572), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1558), 1, + STATE(1584), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51961] = 9, + [53450] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3486), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3574), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1506), 1, + STATE(1580), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [51990] = 9, + [53479] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3488), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3576), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1523), 1, + STATE(1545), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52019] = 9, + [53508] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3490), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3578), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1575), 1, + STATE(1614), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52048] = 9, + [53537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_LBRACK, - ACTIONS(3492), 1, - anon_sym_SEMI, - STATE(1415), 1, - sym_parameter_list, - STATE(1573), 1, - aux_sym_type_definition_repeat2, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52077] = 9, + ACTIONS(3580), 1, + sym_identifier, + ACTIONS(3584), 1, + sym_system_lib_string, + STATE(1824), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3582), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53558] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3494), 1, - anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1572), 1, - aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52106] = 9, + ACTIONS(3586), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + [53583] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3496), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3588), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1486), 1, + STATE(1552), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52135] = 7, + [53612] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - STATE(1415), 1, - sym_parameter_list, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3498), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [52160] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_LBRACK, - ACTIONS(3500), 1, + ACTIONS(3590), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1570), 1, + STATE(1540), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52189] = 5, + [53641] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 1, + ACTIONS(3592), 1, sym_identifier, - ACTIONS(3506), 1, + ACTIONS(3594), 1, sym_system_lib_string, - STATE(1742), 2, + STATE(1893), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3504), 5, + ACTIONS(3582), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [52210] = 9, + [53662] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, + ACTIONS(3476), 1, + anon_sym_LBRACK, ACTIONS(3478), 1, + anon_sym_EQ, + STATE(1362), 1, + sym_parameter_list, + ACTIONS(3596), 2, anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, anon_sym_SEMI, - STATE(1415), 1, - sym_parameter_list, - STATE(1528), 1, - aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52239] = 9, + [53689] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3510), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3598), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1569), 1, + STATE(1542), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3512), 1, - sym_identifier, - ACTIONS(3514), 1, - sym_system_lib_string, - STATE(1904), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3504), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [52289] = 7, + [53718] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3516), 3, + ACTIONS(3600), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [52314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3518), 1, - sym_identifier, - ACTIONS(3520), 1, - sym_system_lib_string, - STATE(1764), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(3504), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [52335] = 9, + [53743] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3522), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3602), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1546), 1, + STATE(1564), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52364] = 9, + [53772] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3524), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3604), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1540), 1, + STATE(1568), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52393] = 9, + [53801] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3526), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3606), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1514), 1, + STATE(1604), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52422] = 7, + [53830] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - STATE(1415), 1, - sym_parameter_list, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3528), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - [52447] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3482), 1, - anon_sym_LBRACK, - ACTIONS(3530), 1, + ACTIONS(3608), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1524), 1, + STATE(1603), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52476] = 5, + [53859] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3534), 1, - anon_sym_LBRACK, - STATE(1322), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3532), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - [52497] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3536), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3610), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1530), 1, + STATE(1602), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52526] = 8, + [53888] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3430), 1, - anon_sym_EQ, - STATE(1320), 1, - sym_parameter_list, - ACTIONS(3538), 2, + ACTIONS(3568), 1, anon_sym_COMMA, + ACTIONS(3612), 1, anon_sym_SEMI, - STATE(1341), 2, + STATE(1473), 1, + sym_parameter_list, + STATE(1593), 1, + aux_sym_type_definition_repeat2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52553] = 7, + [53917] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3540), 3, + ACTIONS(3614), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - [52578] = 5, + [53942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3616), 1, sym_identifier, - ACTIONS(3544), 1, + ACTIONS(3618), 1, + sym_system_lib_string, + STATE(1848), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(3582), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [53963] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3620), 1, + sym_identifier, + ACTIONS(3622), 1, sym_system_lib_string, - STATE(1932), 2, + STATE(1770), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3504), 5, + ACTIONS(3582), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [52599] = 9, + [53984] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3546), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3624), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1504), 1, + STATE(1541), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52628] = 9, + [54013] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3548), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3626), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1492), 1, + STATE(1565), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52657] = 5, + [54042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, + ACTIONS(3628), 1, sym_identifier, - ACTIONS(3552), 1, + ACTIONS(3630), 1, sym_system_lib_string, - STATE(1808), 2, + STATE(1955), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(3504), 5, + ACTIONS(3582), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [52678] = 9, + [54063] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, + ACTIONS(3566), 1, + anon_sym_LBRACK, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3632), 1, + anon_sym_SEMI, + STATE(1473), 1, + sym_parameter_list, + STATE(1539), 1, + aux_sym_type_definition_repeat2, + STATE(1441), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54092] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3554), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3634), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1548), 1, + STATE(1547), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52707] = 9, + [54121] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3478), 1, + ACTIONS(3566), 1, + anon_sym_LBRACK, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3482), 1, + ACTIONS(3636), 1, + anon_sym_SEMI, + STATE(1473), 1, + sym_parameter_list, + STATE(1637), 1, + aux_sym_type_definition_repeat2, + STATE(1441), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54150] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3556), 1, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(3638), 1, anon_sym_SEMI, - STATE(1415), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1549), 1, + STATE(1607), 1, aux_sym_type_definition_repeat2, - STATE(1383), 2, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52736] = 5, + [54179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(460), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(1567), 1, - sym_gnu_asm_input_operand, - STATE(1690), 1, + STATE(486), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54205] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1510), 1, sym_string_literal, + ACTIONS(3640), 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, - [52756] = 5, + [54223] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3560), 1, + ACTIONS(593), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(1322), 2, + STATE(458), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3558), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - [52776] = 3, + [54249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3562), 7, + ACTIONS(3642), 7, 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, - [52792] = 7, + anon_sym_COLON, + [54265] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3552), 1, + anon_sym_LBRACK, + STATE(1577), 1, + sym_gnu_asm_input_operand, + STATE(1957), 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, + [54285] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(39), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - STATE(1320), 1, + STATE(496), 1, + sym_compound_statement, + STATE(1362), 1, sym_parameter_list, - ACTIONS(3566), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1341), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52816] = 3, + [54311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3570), 1, + ACTIONS(3648), 1, + anon_sym_LBRACK, + ACTIONS(3646), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [54327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3652), 1, anon_sym_LBRACK, - ACTIONS(3568), 7, + ACTIONS(3650), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107436,29 +108836,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52832] = 7, + [54343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3656), 1, + anon_sym_LBRACK, + ACTIONS(3654), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3482), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [54359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3660), 1, anon_sym_LBRACK, - STATE(1415), 1, - sym_parameter_list, - ACTIONS(3572), 2, + ACTIONS(3658), 7, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(1383), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [52856] = 3, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [54375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(3664), 1, anon_sym_LBRACK, - ACTIONS(3574), 7, + ACTIONS(3662), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107466,39 +108875,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52872] = 3, + [54391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3668), 1, anon_sym_LBRACK, - ACTIONS(3578), 7, + ACTIONS(3666), 7, 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, - [52888] = 4, + anon_sym_COLON, + [54407] = 3, ACTIONS(3), 1, sym_comment, - STATE(1462), 1, - sym_string_literal, - ACTIONS(3582), 2, + ACTIONS(3672), 1, + anon_sym_LBRACK, + ACTIONS(3670), 7, + anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, 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, - [52906] = 3, + [54423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3676), 1, anon_sym_LBRACK, - ACTIONS(3584), 7, + ACTIONS(3674), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107506,14 +108914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [52922] = 5, + [54439] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3556), 1, anon_sym_LBRACK, - STATE(1560), 1, + STATE(1567), 1, sym_gnu_asm_output_operand, - STATE(1730), 1, + STATE(1939), 1, sym_string_literal, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -107521,144 +108929,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [52942] = 7, + [54459] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3588), 1, - anon_sym_RPAREN, - STATE(1320), 1, + STATE(1362), 1, sym_parameter_list, - STATE(1341), 2, + ACTIONS(3678), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [52965] = 3, + [54483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3592), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3682), 1, anon_sym_LBRACK, - ACTIONS(3590), 6, + STATE(1352), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3680), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [52980] = 3, + [54503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3596), 1, + ACTIONS(3686), 1, anon_sym_LBRACK, - ACTIONS(3594), 6, + ACTIONS(3684), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [52995] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + [54519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, + ACTIONS(3690), 1, anon_sym_LBRACK, - ACTIONS(3598), 6, + ACTIONS(3688), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [53010] = 7, + [54535] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3384), 1, + ACTIONS(3566), 1, anon_sym_LBRACK, - ACTIONS(3602), 1, - anon_sym_RPAREN, - STATE(1395), 1, + STATE(1473), 1, sym_parameter_list, - STATE(1372), 2, + ACTIONS(3692), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(1441), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53033] = 3, + [54559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, + ACTIONS(3696), 1, anon_sym_LBRACK, - ACTIONS(3604), 6, + ACTIONS(3694), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [53048] = 3, + [54575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3610), 1, + ACTIONS(3700), 1, anon_sym_LBRACK, - ACTIONS(3608), 6, + ACTIONS(3698), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [53063] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + [54591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(3704), 1, anon_sym_LBRACK, - ACTIONS(3612), 6, + ACTIONS(3702), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [53078] = 7, + anon_sym_LBRACE, + anon_sym_EQ, + [54607] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(123), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3482), 1, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3616), 1, - anon_sym_RPAREN, - STATE(1415), 1, + STATE(152), 1, + sym_compound_statement, + STATE(1362), 1, sym_parameter_list, - STATE(1383), 2, + STATE(1387), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [53101] = 3, + [54633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 1, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(189), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3476), 1, anon_sym_LBRACK, - ACTIONS(3618), 6, - anon_sym_COMMA, + STATE(215), 1, + sym_compound_statement, + STATE(1362), 1, + sym_parameter_list, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54659] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3566), 1, + anon_sym_LBRACK, + ACTIONS(3706), 1, anon_sym_RPAREN, + STATE(1473), 1, + sym_parameter_list, + STATE(1441), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54682] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1365), 1, + sym_string_literal, + STATE(1624), 1, + sym_concatenated_string, + ACTIONS(91), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [54699] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3451), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(3476), 1, + anon_sym_LBRACK, + ACTIONS(3708), 1, + anon_sym_RPAREN, + STATE(1362), 1, + sym_parameter_list, + STATE(1387), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54722] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [53116] = 4, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3455), 1, + anon_sym_LBRACK, + ACTIONS(3710), 1, + anon_sym_RPAREN, + STATE(1433), 1, + sym_parameter_list, + STATE(1384), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [54745] = 4, ACTIONS(3), 1, sym_comment, - STATE(1324), 1, + STATE(1359), 1, sym_string_literal, - STATE(1515), 1, + STATE(1627), 1, sym_concatenated_string, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -107666,132 +109153,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53133] = 3, + [54762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3451), 1, + anon_sym_LPAREN2, + ACTIONS(3714), 1, anon_sym_LBRACK, - ACTIONS(3622), 6, + STATE(1500), 1, + sym_parameter_list, + ACTIONS(3712), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [53148] = 3, + [54780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, + ACTIONS(3718), 1, anon_sym_LBRACK, - ACTIONS(3626), 6, + ACTIONS(3716), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - [53163] = 4, + [54794] = 3, ACTIONS(3), 1, sym_comment, - STATE(1318), 1, + STATE(1902), 1, sym_string_literal, - STATE(1495), 1, - sym_concatenated_string, ACTIONS(91), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53180] = 5, + [54808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3632), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, - STATE(1431), 1, + STATE(1500), 1, sym_parameter_list, - ACTIONS(3630), 3, + ACTIONS(3720), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [53198] = 4, + [54826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - STATE(1417), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3636), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [53214] = 3, + ACTIONS(3714), 1, + anon_sym_LBRACK, + STATE(1500), 1, + sym_parameter_list, + ACTIONS(3722), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [54844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3640), 1, + ACTIONS(3726), 1, anon_sym_LBRACK, - ACTIONS(3638), 5, + ACTIONS(3724), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [53228] = 3, + [54858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3644), 1, + ACTIONS(3730), 1, anon_sym_LBRACK, - ACTIONS(3642), 5, + ACTIONS(3728), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [53242] = 5, + [54872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3632), 1, + ACTIONS(1837), 1, anon_sym_LBRACK, - STATE(1431), 1, - sym_parameter_list, - ACTIONS(3646), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [53260] = 3, + ACTIONS(3732), 1, + anon_sym_EQ, + ACTIONS(3734), 1, + anon_sym_DOT, + STATE(1466), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [54890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3650), 1, - anon_sym_LBRACK, - ACTIONS(3648), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3736), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [53274] = 6, + STATE(1463), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3738), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [54906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3380), 1, + ACTIONS(3741), 1, anon_sym_LPAREN2, - ACTIONS(3428), 1, - anon_sym_LBRACK, - STATE(1320), 1, - sym_parameter_list, - STATE(1341), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [53294] = 3, + STATE(1463), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(3743), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [54922] = 3, ACTIONS(3), 1, sym_comment, - STATE(1738), 1, + STATE(1916), 1, sym_string_literal, ACTIONS(91), 5, anon_sym_L_DQUOTE, @@ -107799,3548 +109284,3610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [53308] = 3, + [54936] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3745), 1, + anon_sym_LBRACK, + ACTIONS(3748), 1, + anon_sym_EQ, + ACTIONS(3750), 1, + anon_sym_DOT, + STATE(1466), 3, + sym_subscript_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [54954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_LBRACK, + ACTIONS(3753), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [54968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3654), 1, + ACTIONS(3759), 1, anon_sym_LBRACK, - ACTIONS(3652), 5, + ACTIONS(3757), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [53322] = 5, + [54982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3632), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, - STATE(1431), 1, + STATE(1500), 1, sym_parameter_list, - ACTIONS(3656), 3, + ACTIONS(3761), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [53340] = 4, + [55000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - STATE(1417), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3660), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [53356] = 5, + ACTIONS(3714), 1, + anon_sym_LBRACK, + STATE(1500), 1, + sym_parameter_list, + ACTIONS(3763), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [55018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3632), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, - STATE(1431), 1, + STATE(1500), 1, sym_parameter_list, - ACTIONS(3663), 3, + ACTIONS(3765), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [53374] = 3, + [55036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3667), 1, + ACTIONS(3769), 1, anon_sym_LBRACK, - ACTIONS(3665), 5, + ACTIONS(3767), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [53388] = 3, + [55050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 1, + ACTIONS(3773), 1, anon_sym_LBRACK, - ACTIONS(3669), 5, + ACTIONS(3771), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [53402] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1883), 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, - [53416] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1583), 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, - [53430] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3673), 1, - anon_sym_LBRACK, - ACTIONS(3676), 1, - anon_sym_EQ, - ACTIONS(3678), 1, - anon_sym_DOT, - STATE(1423), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [53448] = 4, + [55064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3681), 1, + ACTIONS(3775), 1, anon_sym_LPAREN2, - STATE(1408), 2, + STATE(1464), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(3636), 3, + ACTIONS(3743), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [53464] = 3, + [55080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3685), 1, + ACTIONS(3779), 1, anon_sym_LBRACK, - ACTIONS(3683), 5, + ACTIONS(3777), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - [53478] = 5, + [55094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3632), 1, - anon_sym_LBRACK, - STATE(1431), 1, - sym_parameter_list, - ACTIONS(3687), 3, + STATE(1589), 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, + [55108] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [53496] = 5, + ACTIONS(3781), 1, + anon_sym_SEMI, + STATE(1503), 1, + aux_sym_field_declaration_repeat1, + STATE(1965), 1, + sym_attribute_specifier, + [55127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1877), 1, + ACTIONS(3783), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(3689), 1, - anon_sym_EQ, - ACTIONS(3691), 1, - anon_sym_DOT, - STATE(1423), 3, - sym_subscript_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [53514] = 5, + anon_sym_COLON, + [55138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3632), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, - STATE(1431), 1, + STATE(1500), 1, sym_parameter_list, - ACTIONS(3693), 3, + ACTIONS(3678), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [53532] = 3, + [55155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3697), 1, - anon_sym_LBRACK, - ACTIONS(3695), 5, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(3785), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [53546] = 2, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1762), 1, + sym_attribute_specifier, + [55174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3699), 5, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [53557] = 2, + ACTIONS(3787), 1, + anon_sym_SEMI, + STATE(1495), 1, + aux_sym_field_declaration_repeat1, + STATE(1751), 1, + sym_attribute_specifier, + [55193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3701), 5, + ACTIONS(3789), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53568] = 6, + [55204] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3791), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1855), 1, + sym_attribute_specifier, + [55223] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_SEMI, + STATE(1485), 1, + aux_sym_field_declaration_repeat1, + STATE(1857), 1, + sym_attribute_specifier, + [55242] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1845), 1, + sym_attribute_specifier, + [55261] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(2876), 1, + ACTIONS(2699), 1, anon_sym_LBRACE, - ACTIONS(3703), 1, + ACTIONS(3797), 1, sym_identifier, - STATE(1144), 1, + STATE(1113), 1, sym_field_declaration_list, - STATE(1484), 1, + STATE(1605), 1, sym_ms_declspec_modifier, - [53587] = 6, + [55280] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym___declspec, - ACTIONS(2876), 1, + ACTIONS(2699), 1, anon_sym_LBRACE, - ACTIONS(3705), 1, + ACTIONS(3799), 1, sym_identifier, - STATE(1139), 1, + STATE(1103), 1, sym_field_declaration_list, - STATE(1485), 1, + STATE(1596), 1, sym_ms_declspec_modifier, - [53606] = 2, + [55299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3707), 5, + ACTIONS(3801), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53617] = 2, + [55310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3709), 5, + ACTIONS(3803), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53628] = 5, + [55321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - ACTIONS(3713), 1, - anon_sym_COLON_COLON, - STATE(1608), 1, - sym_argument_list, - ACTIONS(3711), 2, + ACTIONS(3805), 5, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [53645] = 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [55332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3715), 5, + ACTIONS(3807), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53656] = 2, + [55343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3717), 5, + ACTIONS(3809), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53667] = 2, + [55354] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3811), 1, + anon_sym_SEMI, + STATE(1501), 1, + aux_sym_field_declaration_repeat1, + STATE(1968), 1, + sym_attribute_specifier, + [55373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3813), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1967), 1, + sym_attribute_specifier, + [55392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3815), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1738), 1, + sym_attribute_specifier, + [55411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3817), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1950), 1, + sym_attribute_specifier, + [55430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3719), 5, + ACTIONS(3819), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53678] = 2, + [55441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3721), 5, + ACTIONS(3821), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53689] = 2, + [55452] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + ACTIONS(3825), 1, + anon_sym_COLON_COLON, + STATE(1666), 1, + sym_argument_list, + ACTIONS(3823), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [55469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3723), 5, + ACTIONS(3827), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53700] = 2, + [55480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3829), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1940), 1, + sym_attribute_specifier, + [55499] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3725), 5, + ACTIONS(3831), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53711] = 2, + [55510] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3432), 1, + anon_sym___attribute__, + ACTIONS(3449), 1, + anon_sym_COMMA, + ACTIONS(3833), 1, + anon_sym_SEMI, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + STATE(1993), 1, + sym_attribute_specifier, + [55529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3727), 5, + ACTIONS(3835), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [53722] = 5, + [55540] = 5, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3837), 1, + anon_sym_LF, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + sym_preproc_arg, + STATE(1693), 1, + sym_preproc_params, + [55556] = 5, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3843), 1, + anon_sym_LF, + ACTIONS(3845), 1, + sym_preproc_arg, + STATE(1686), 1, + sym_preproc_params, + [55572] = 5, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3847), 1, + anon_sym_LF, + ACTIONS(3849), 1, + sym_preproc_arg, + STATE(1683), 1, + sym_preproc_params, + [55588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, - anon_sym_LPAREN2, - ACTIONS(3632), 1, - anon_sym_LBRACK, - STATE(1431), 1, - sym_parameter_list, - ACTIONS(3566), 2, + ACTIONS(3851), 1, + anon_sym_COMMA, + STATE(1508), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(3854), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [55602] = 5, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym_DQUOTE, + ACTIONS(3858), 1, + aux_sym_string_literal_token1, + ACTIONS(3860), 1, + sym_escape_sequence, + STATE(1531), 1, + aux_sym_string_literal_repeat1, + [55618] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3862), 1, anon_sym_COMMA, + STATE(1529), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3864), 2, anon_sym_RPAREN, - [53739] = 2, + anon_sym_COLON, + [55632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3729), 5, + ACTIONS(3866), 1, anon_sym_COMMA, + STATE(1511), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(3869), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [53750] = 4, + [55646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3871), 1, anon_sym_COMMA, - STATE(1457), 1, + STATE(1530), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3733), 2, + ACTIONS(3873), 2, anon_sym_RPAREN, anon_sym_COLON, - [53764] = 4, + [55660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3875), 1, anon_sym_COMMA, - STATE(1468), 1, + STATE(1532), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3737), 2, + ACTIONS(3877), 2, anon_sym_RPAREN, anon_sym_COLON, - [53778] = 5, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3739), 1, - anon_sym_DQUOTE, - ACTIONS(3741), 1, - aux_sym_string_literal_token1, - ACTIONS(3743), 1, - sym_escape_sequence, - STATE(1450), 1, - aux_sym_string_literal_repeat1, - [53794] = 5, + [55674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3380), 1, + ACTIONS(3451), 1, anon_sym_LPAREN2, - ACTIONS(3632), 1, + ACTIONS(3714), 1, anon_sym_LBRACK, - ACTIONS(3745), 1, + ACTIONS(3879), 1, anon_sym_RPAREN, - STATE(1431), 1, + STATE(1500), 1, sym_parameter_list, - [53810] = 5, - ACTIONS(3165), 1, + [55690] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3747), 1, - anon_sym_DQUOTE, - ACTIONS(3749), 1, + ACTIONS(3881), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [55700] = 5, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3858), 1, aux_sym_string_literal_token1, - ACTIONS(3752), 1, + ACTIONS(3860), 1, sym_escape_sequence, - STATE(1450), 1, + ACTIONS(3883), 1, + anon_sym_DQUOTE, + STATE(1531), 1, aux_sym_string_literal_repeat1, - [53826] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3628), 1, - anon_sym_LBRACK, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3626), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [53840] = 4, - ACTIONS(3), 1, + [55716] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(2262), 1, - anon_sym_LPAREN2, - STATE(1673), 1, - sym_argument_list, - ACTIONS(3757), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [53854] = 5, - ACTIONS(3165), 1, + ACTIONS(3885), 1, + anon_sym_DQUOTE, + ACTIONS(3887), 1, + aux_sym_string_literal_token1, + ACTIONS(3889), 1, + sym_escape_sequence, + STATE(1519), 1, + aux_sym_string_literal_repeat1, + [55732] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_LF, - ACTIONS(3761), 1, + ACTIONS(3839), 1, anon_sym_LPAREN, - ACTIONS(3763), 1, + ACTIONS(3891), 1, + anon_sym_LF, + ACTIONS(3893), 1, sym_preproc_arg, - STATE(1643), 1, + STATE(1661), 1, sym_preproc_params, - [53870] = 5, - ACTIONS(3165), 1, + [55748] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3741), 1, + ACTIONS(3858), 1, aux_sym_string_literal_token1, - ACTIONS(3743), 1, + ACTIONS(3860), 1, sym_escape_sequence, - ACTIONS(3765), 1, + ACTIONS(3895), 1, anon_sym_DQUOTE, - STATE(1450), 1, + STATE(1531), 1, aux_sym_string_literal_repeat1, - [53886] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3767), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [53896] = 5, - ACTIONS(3), 1, + [55764] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3769), 1, - sym_identifier, - ACTIONS(3771), 1, - anon_sym_COMMA, - ACTIONS(3773), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_enumerator, - [53912] = 4, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3897), 1, + anon_sym_LF, + ACTIONS(3899), 1, + sym_preproc_arg, + STATE(1702), 1, + sym_preproc_params, + [55780] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3871), 1, anon_sym_COMMA, - STATE(1460), 1, + STATE(1512), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3775), 2, + ACTIONS(3901), 2, anon_sym_RPAREN, anon_sym_COLON, - [53926] = 4, + [55794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, + ACTIONS(3903), 1, anon_sym_COMMA, - STATE(1447), 1, + STATE(1522), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3777), 2, + ACTIONS(3906), 2, anon_sym_RPAREN, anon_sym_COLON, - [53940] = 5, - ACTIONS(3165), 1, + [55808] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3839), 1, anon_sym_LPAREN, - ACTIONS(3779), 1, + ACTIONS(3908), 1, anon_sym_LF, - ACTIONS(3781), 1, + ACTIONS(3910), 1, sym_preproc_arg, - STATE(1607), 1, + STATE(1688), 1, sym_preproc_params, - [53956] = 4, + [55824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3783), 1, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(1675), 1, + sym_argument_list, + ACTIONS(3912), 2, anon_sym_COMMA, - STATE(1460), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(3786), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [53970] = 5, - ACTIONS(3165), 1, + anon_sym_RBRACK_RBRACK, + [55838] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3914), 1, anon_sym_DQUOTE, - ACTIONS(3790), 1, + ACTIONS(3916), 1, aux_sym_string_literal_token1, - ACTIONS(3792), 1, + ACTIONS(3918), 1, sym_escape_sequence, - STATE(1454), 1, + STATE(1509), 1, aux_sym_string_literal_repeat1, - [53986] = 4, + [55854] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, + ACTIONS(3920), 1, + sym_identifier, + ACTIONS(3922), 1, anon_sym_COMMA, - STATE(1470), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3796), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [54000] = 5, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3798), 1, - anon_sym_LF, - ACTIONS(3800), 1, - sym_preproc_arg, - STATE(1670), 1, - sym_preproc_params, - [54016] = 5, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3802), 1, - anon_sym_LF, - ACTIONS(3804), 1, - sym_preproc_arg, - STATE(1650), 1, - sym_preproc_params, - [54032] = 5, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3806), 1, - anon_sym_LF, - ACTIONS(3808), 1, - sym_preproc_arg, - STATE(1644), 1, - sym_preproc_params, - [54048] = 5, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3810), 1, - anon_sym_LF, - ACTIONS(3812), 1, - sym_preproc_arg, - STATE(1638), 1, - sym_preproc_params, - [54064] = 5, - ACTIONS(3165), 1, + ACTIONS(3924), 1, + anon_sym_RBRACE, + STATE(1618), 1, + sym_enumerator, + [55870] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(3926), 1, anon_sym_DQUOTE, - ACTIONS(3816), 1, + ACTIONS(3928), 1, aux_sym_string_literal_token1, - ACTIONS(3818), 1, + ACTIONS(3930), 1, sym_escape_sequence, - STATE(1448), 1, + STATE(1516), 1, aux_sym_string_literal_repeat1, - [54080] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3820), 1, - anon_sym_COMMA, - STATE(1468), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(3823), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [54094] = 5, - ACTIONS(3165), 1, + [55886] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3839), 1, anon_sym_LPAREN, - ACTIONS(3825), 1, + ACTIONS(3932), 1, anon_sym_LF, - ACTIONS(3827), 1, + ACTIONS(3934), 1, sym_preproc_arg, - STATE(1632), 1, + STATE(1680), 1, sym_preproc_params, - [54110] = 4, + [55902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, + ACTIONS(3862), 1, anon_sym_COMMA, - STATE(1471), 1, + STATE(1511), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3829), 2, + ACTIONS(3936), 2, anon_sym_RPAREN, anon_sym_COLON, - [54124] = 4, + [55916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3831), 1, + ACTIONS(3938), 1, anon_sym_COMMA, - STATE(1471), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(3834), 2, + STATE(1530), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(3941), 2, anon_sym_RPAREN, anon_sym_COLON, - [54138] = 5, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3836), 1, - anon_sym_LF, - ACTIONS(3838), 1, - sym_preproc_arg, - STATE(1604), 1, - sym_preproc_params, - [54154] = 5, - ACTIONS(3165), 1, + [55930] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(3943), 1, anon_sym_DQUOTE, - ACTIONS(3842), 1, + ACTIONS(3945), 1, aux_sym_string_literal_token1, - ACTIONS(3844), 1, + ACTIONS(3948), 1, sym_escape_sequence, - STATE(1475), 1, + STATE(1531), 1, aux_sym_string_literal_repeat1, - [54170] = 5, - ACTIONS(3165), 1, + [55946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3875), 1, + anon_sym_COMMA, + STATE(1522), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(3951), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [55960] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3761), 1, + ACTIONS(3839), 1, anon_sym_LPAREN, - ACTIONS(3846), 1, + ACTIONS(3953), 1, anon_sym_LF, - ACTIONS(3848), 1, + ACTIONS(3955), 1, sym_preproc_arg, - STATE(1655), 1, + STATE(1714), 1, sym_preproc_params, - [54186] = 5, - ACTIONS(3165), 1, + [55976] = 5, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3741), 1, - aux_sym_string_literal_token1, - ACTIONS(3743), 1, - sym_escape_sequence, - ACTIONS(3850), 1, - anon_sym_DQUOTE, - STATE(1450), 1, - aux_sym_string_literal_repeat1, - [54202] = 4, - ACTIONS(3), 1, + ACTIONS(3839), 1, + anon_sym_LPAREN, + ACTIONS(3957), 1, + anon_sym_LF, + ACTIONS(3959), 1, + sym_preproc_arg, + STATE(1708), 1, + sym_preproc_params, + [55992] = 4, + ACTIONS(3227), 1, + anon_sym_LPAREN2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3852), 1, - anon_sym_RPAREN, - ACTIONS(3854), 1, - anon_sym_COLON, - STATE(1723), 1, - sym_gnu_asm_goto_list, - [54215] = 2, + ACTIONS(3961), 1, + anon_sym_LF, + STATE(1296), 1, + sym_preproc_argument_list, + [56005] = 4, + ACTIONS(3227), 1, + anon_sym_LPAREN2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3963), 1, + anon_sym_LF, + STATE(1296), 1, + sym_preproc_argument_list, + [56018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 3, - anon_sym_COMMA, + ACTIONS(2760), 1, anon_sym_RPAREN, - anon_sym_COLON, - [54224] = 4, + ACTIONS(3965), 1, + anon_sym_COMMA, + STATE(1537), 1, + aux_sym_argument_list_repeat1, + [56031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, - anon_sym_LBRACE, - ACTIONS(3858), 1, - sym_identifier, - STATE(1142), 1, - sym_enumerator_list, - [54237] = 4, + ACTIONS(3263), 1, + anon_sym_RPAREN, + ACTIONS(3968), 1, + anon_sym_COMMA, + STATE(1538), 1, + aux_sym_preproc_argument_list_repeat1, + [56044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3860), 1, + ACTIONS(3971), 1, anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54250] = 4, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56057] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3862), 1, + ACTIONS(3973), 1, anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54263] = 4, - ACTIONS(3163), 1, - anon_sym_LPAREN2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(3864), 1, - anon_sym_LF, - STATE(1289), 1, - sym_preproc_argument_list, - [54276] = 4, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56070] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3866), 1, + ACTIONS(3975), 1, anon_sym_SEMI, - STATE(1585), 1, - aux_sym_field_declaration_repeat1, - [54289] = 4, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56083] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3870), 1, - anon_sym_RBRACK_RBRACK, - STATE(1491), 1, - aux_sym_attribute_declaration_repeat1, - [54302] = 4, + ACTIONS(3977), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(3872), 1, - sym_identifier, - STATE(1138), 1, - sym_field_declaration_list, - [54315] = 4, + ACTIONS(3197), 1, + anon_sym_COMMA, + ACTIONS(3979), 1, + anon_sym_RPAREN, + STATE(1538), 1, + aux_sym_preproc_argument_list_repeat1, + [56109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2876), 1, - anon_sym_LBRACE, - ACTIONS(3874), 1, - sym_identifier, - STATE(1141), 1, - sym_field_declaration_list, - [54328] = 4, + ACTIONS(3981), 1, + anon_sym_COMMA, + ACTIONS(3984), 1, + anon_sym_RPAREN, + STATE(1544), 1, + aux_sym_preproc_params_repeat1, + [56122] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3876), 1, + ACTIONS(3986), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54341] = 4, + [56135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3988), 1, anon_sym_COMMA, - ACTIONS(3878), 1, - anon_sym_SEMI, - STATE(1498), 1, - aux_sym_declaration_repeat1, - [54354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3882), 1, + ACTIONS(3991), 1, anon_sym_RPAREN, - ACTIONS(3880), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [54365] = 4, + STATE(1546), 1, + aux_sym_parameter_list_repeat1, + [56148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3884), 1, + ACTIONS(3993), 1, anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [54378] = 4, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(2691), 1, anon_sym_COMMA, - ACTIONS(3886), 1, - anon_sym_RBRACK_RBRACK, - STATE(1508), 1, - aux_sym_attribute_declaration_repeat1, - [54391] = 4, + ACTIONS(3995), 1, + anon_sym_RPAREN, + STATE(1537), 1, + aux_sym_argument_list_repeat1, + [56174] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3997), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [56183] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(1887), 1, + anon_sym_RBRACE, + ACTIONS(3999), 1, anon_sym_COMMA, - ACTIONS(3888), 1, - anon_sym_RBRACK_RBRACK, - STATE(1508), 1, - aux_sym_attribute_declaration_repeat1, - [54404] = 4, + STATE(1561), 1, + aux_sym_initializer_list_repeat1, + [56196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(4001), 1, + sym_identifier, + STATE(1167), 1, + sym_enumerator_list, + [56209] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3890), 1, + ACTIONS(4003), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54417] = 3, + [56222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3894), 1, - anon_sym_EQ, - ACTIONS(3892), 2, + ACTIONS(2691), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [54428] = 4, + ACTIONS(2721), 1, + anon_sym_RPAREN, + STATE(1548), 1, + aux_sym_argument_list_repeat1, + [56235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, - anon_sym_COMMA, - ACTIONS(3898), 1, - anon_sym_RBRACE, - STATE(1512), 1, - aux_sym_enumerator_list_repeat1, - [54441] = 4, + ACTIONS(4005), 1, + anon_sym_RPAREN, + ACTIONS(4007), 1, + anon_sym_COLON, + STATE(1556), 1, + sym_gnu_asm_input_operand_list, + [56248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 1, + ACTIONS(4009), 1, anon_sym_RPAREN, - ACTIONS(3376), 1, + ACTIONS(4011), 1, anon_sym_COLON, - STATE(1513), 1, - sym_gnu_asm_output_operand_list, - [54454] = 4, + STATE(1922), 1, + sym_gnu_asm_goto_list, + [56261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_COMMA, - ACTIONS(3900), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54467] = 4, + ACTIONS(4013), 1, + anon_sym_RPAREN, + ACTIONS(4015), 1, + anon_sym_COLON, + STATE(1572), 1, + sym_gnu_asm_clobber_list, + [56274] = 4, + ACTIONS(3227), 1, + anon_sym_LPAREN2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4017), 1, + anon_sym_LF, + STATE(1296), 1, + sym_preproc_argument_list, + [56287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, - anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [54480] = 4, + ACTIONS(4019), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [56296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3904), 1, + ACTIONS(4021), 1, anon_sym_SEMI, - STATE(1516), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [54493] = 4, + [56309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_SEMI, - STATE(1489), 1, - aux_sym_field_declaration_repeat1, - [54506] = 4, + ACTIONS(4015), 1, + anon_sym_COLON, + ACTIONS(4023), 1, + anon_sym_RPAREN, + STATE(1555), 1, + sym_gnu_asm_clobber_list, + [56322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2888), 1, + anon_sym_RBRACE, + ACTIONS(4025), 1, anon_sym_COMMA, - ACTIONS(2700), 1, - anon_sym_RPAREN, - STATE(1517), 1, - aux_sym_argument_list_repeat1, - [54519] = 4, + STATE(1561), 1, + aux_sym_initializer_list_repeat1, + [56335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3910), 1, - anon_sym_RPAREN, - STATE(1519), 1, - aux_sym_preproc_params_repeat1, - [54532] = 4, + ACTIONS(4028), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(4030), 3, anon_sym_COMMA, - ACTIONS(3912), 1, anon_sym_SEMI, - STATE(1480), 1, - aux_sym_declaration_repeat1, - [54545] = 4, + anon_sym___attribute__, + [56357] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3914), 1, + ACTIONS(4032), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54558] = 4, + [56370] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3916), 1, + ACTIONS(4034), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54571] = 4, - ACTIONS(3163), 1, - anon_sym_LPAREN2, - ACTIONS(3165), 1, + [56383] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3918), 1, - anon_sym_LF, - STATE(1289), 1, - sym_preproc_argument_list, - [54584] = 4, + ACTIONS(3472), 1, + anon_sym_COMMA, + ACTIONS(4036), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4038), 3, anon_sym_COMMA, - ACTIONS(3920), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [56405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(4040), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54597] = 4, + [56418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3924), 1, - anon_sym_RPAREN, - STATE(1520), 1, - aux_sym_parameter_list_repeat1, - [54610] = 4, + ACTIONS(4042), 1, + anon_sym_SEMI, + STATE(1559), 1, + aux_sym_declaration_repeat1, + [56431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3926), 1, + ACTIONS(4044), 1, anon_sym_COMMA, - ACTIONS(3929), 1, + ACTIONS(4046), 1, anon_sym_RBRACK_RBRACK, - STATE(1508), 1, + STATE(1615), 1, aux_sym_attribute_declaration_repeat1, - [54623] = 4, + [56444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3931), 1, - anon_sym_RPAREN, - STATE(1542), 1, - aux_sym_preproc_argument_list_repeat1, - [54636] = 4, + ACTIONS(4048), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, - sym_identifier, - ACTIONS(3933), 1, - anon_sym_RBRACE, - STATE(1653), 1, - sym_enumerator, - [54649] = 4, + ACTIONS(4011), 1, + anon_sym_COLON, + ACTIONS(4050), 1, + anon_sym_RPAREN, + STATE(1907), 1, + sym_gnu_asm_goto_list, + [56470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(2717), 1, anon_sym_COMMA, - ACTIONS(3935), 1, + ACTIONS(4052), 1, anon_sym_RPAREN, - STATE(1541), 1, - aux_sym_argument_list_repeat1, - [54662] = 4, + STATE(1581), 1, + aux_sym_generic_expression_repeat1, + [56483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3933), 1, - anon_sym_RBRACE, - ACTIONS(3937), 1, + ACTIONS(4054), 3, anon_sym_COMMA, - STATE(1535), 1, - aux_sym_enumerator_list_repeat1, - [54675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3939), 1, anon_sym_RPAREN, - ACTIONS(3941), 1, anon_sym_COLON, - STATE(1538), 1, - sym_gnu_asm_input_operand_list, - [54688] = 4, + [56492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3943), 1, + ACTIONS(4056), 1, anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [54701] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3376), 1, - anon_sym_COLON, - ACTIONS(3407), 1, - anon_sym_RPAREN, - STATE(1539), 1, - sym_gnu_asm_output_operand_list, - [54714] = 4, + STATE(1587), 1, + aux_sym_declaration_repeat1, + [56505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 1, + ACTIONS(4044), 1, anon_sym_COMMA, - ACTIONS(3948), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54727] = 4, + ACTIONS(4058), 1, + anon_sym_RBRACK_RBRACK, + STATE(1630), 1, + aux_sym_attribute_declaration_repeat1, + [56518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(4060), 3, anon_sym_COMMA, - ACTIONS(3950), 1, anon_sym_RPAREN, - STATE(1541), 1, - aux_sym_argument_list_repeat1, - [54740] = 4, + anon_sym_COLON, + [56527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, - anon_sym_COMMA, - ACTIONS(3952), 1, + ACTIONS(4064), 1, anon_sym_RPAREN, - STATE(1542), 1, - aux_sym_preproc_argument_list_repeat1, - [54753] = 4, + ACTIONS(4062), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [56538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3908), 1, + ACTIONS(4066), 1, anon_sym_COMMA, - ACTIONS(3954), 1, + ACTIONS(4068), 1, anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_preproc_params_repeat1, - [54766] = 4, + STATE(1590), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [56551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3956), 1, - anon_sym_RPAREN, - STATE(1545), 1, - aux_sym_parameter_list_repeat1, - [54779] = 4, + ACTIONS(4070), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2678), 1, + ACTIONS(4072), 1, anon_sym_COMMA, - ACTIONS(2680), 1, + ACTIONS(4075), 1, anon_sym_RPAREN, - STATE(1511), 1, - aux_sym_argument_list_repeat1, - [54792] = 4, + STATE(1581), 1, + aux_sym_generic_expression_repeat1, + [56577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(4077), 3, anon_sym_COMMA, - ACTIONS(3958), 1, - anon_sym_SEMI, - STATE(1534), 1, - aux_sym_declaration_repeat1, - [54805] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [56586] = 4, + ACTIONS(3227), 1, + anon_sym_LPAREN2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_LF, + STATE(1296), 1, + sym_preproc_argument_list, + [56599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3960), 1, + ACTIONS(4081), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54818] = 4, + [56612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3962), 1, + ACTIONS(4083), 1, anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [54831] = 4, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2682), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(2684), 1, - anon_sym_RBRACE, - STATE(1574), 1, - aux_sym_initializer_list_repeat1, - [54844] = 4, + ACTIONS(4085), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3967), 1, + ACTIONS(4087), 1, anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [54857] = 4, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3969), 1, + ACTIONS(4089), 1, anon_sym_SEMI, - STATE(1516), 1, + STATE(1623), 1, aux_sym_declaration_repeat1, - [54870] = 4, + [56664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4091), 3, anon_sym_COMMA, - ACTIONS(3971), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [56673] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4066), 1, + anon_sym_COMMA, + ACTIONS(4093), 1, + anon_sym_RPAREN, + STATE(1592), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [56686] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3568), 1, + anon_sym_COMMA, + ACTIONS(4095), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54883] = 4, + [56699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(4097), 1, anon_sym_COMMA, - ACTIONS(3973), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54896] = 4, + ACTIONS(4100), 1, + anon_sym_RPAREN, + STATE(1592), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [56712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(3975), 1, + ACTIONS(4102), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [54909] = 4, + [56725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(4104), 3, anon_sym_COMMA, - ACTIONS(3977), 1, + anon_sym_RPAREN, + anon_sym_COLON, + [56734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4044), 1, + anon_sym_COMMA, + ACTIONS(4106), 1, anon_sym_RBRACK_RBRACK, - STATE(1508), 1, + STATE(1630), 1, aux_sym_attribute_declaration_repeat1, - [54922] = 4, + [56747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, + ACTIONS(2699), 1, + anon_sym_LBRACE, + ACTIONS(4108), 1, sym_identifier, - ACTIONS(3979), 1, - anon_sym_RBRACE, - STATE(1653), 1, - sym_enumerator, - [54935] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3424), 1, - anon_sym_COMMA, - ACTIONS(3981), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54948] = 4, + STATE(1115), 1, + sym_field_declaration_list, + [56760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(4110), 3, anon_sym_COMMA, - ACTIONS(3983), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [54961] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [56769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3985), 1, + ACTIONS(4112), 1, anon_sym_COMMA, - ACTIONS(3988), 1, + ACTIONS(4115), 1, anon_sym_RBRACE, - STATE(1535), 1, + STATE(1598), 1, aux_sym_enumerator_list_repeat1, - [54974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(3990), 1, - anon_sym_SEMI, - STATE(1547), 1, - aux_sym_field_declaration_repeat1, - [54987] = 4, + [56782] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(3992), 1, + ACTIONS(4117), 1, anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55000] = 4, + STATE(1566), 1, + aux_sym_declaration_repeat1, + [56795] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3994), 1, - anon_sym_RPAREN, - ACTIONS(3996), 1, - anon_sym_COLON, - STATE(1476), 1, - sym_gnu_asm_clobber_list, - [55013] = 4, + ACTIONS(3920), 1, + sym_identifier, + ACTIONS(4119), 1, + anon_sym_RBRACE, + STATE(1676), 1, + sym_enumerator, + [56808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_COLON, - ACTIONS(3998), 1, - anon_sym_RPAREN, - STATE(1553), 1, - sym_gnu_asm_input_operand_list, - [55026] = 4, + ACTIONS(4044), 1, + anon_sym_COMMA, + ACTIONS(4121), 1, + anon_sym_RBRACK_RBRACK, + STATE(1576), 1, + aux_sym_attribute_declaration_repeat1, + [56821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4000), 1, + ACTIONS(4123), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [55039] = 4, + [56834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 1, - anon_sym_RPAREN, - ACTIONS(4002), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - STATE(1541), 1, - aux_sym_argument_list_repeat1, - [55052] = 4, + ACTIONS(4125), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3277), 1, - anon_sym_RPAREN, - ACTIONS(4005), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - STATE(1542), 1, - aux_sym_preproc_argument_list_repeat1, - [55065] = 4, + ACTIONS(4127), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(2699), 1, + anon_sym_LBRACE, + ACTIONS(4129), 1, + sym_identifier, + STATE(1097), 1, + sym_field_declaration_list, + [56873] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(4008), 1, + ACTIONS(4131), 1, anon_sym_SEMI, - STATE(1527), 1, + STATE(1585), 1, aux_sym_declaration_repeat1, - [55078] = 4, + [56886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4013), 1, - anon_sym_RPAREN, - STATE(1544), 1, - aux_sym_preproc_params_repeat1, - [55091] = 4, - ACTIONS(3), 1, + ACTIONS(4133), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56899] = 4, + ACTIONS(3227), 1, + anon_sym_LPAREN2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4015), 1, - anon_sym_COMMA, - ACTIONS(4018), 1, - anon_sym_RPAREN, - STATE(1545), 1, - aux_sym_parameter_list_repeat1, - [55104] = 4, + ACTIONS(4135), 1, + anon_sym_LF, + STATE(1296), 1, + sym_preproc_argument_list, + [56912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4137), 1, anon_sym_COMMA, - ACTIONS(4020), 1, + ACTIONS(4140), 1, anon_sym_SEMI, - STATE(1526), 1, + STATE(1609), 1, aux_sym_type_definition_repeat2, - [55117] = 4, + [56925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(2727), 1, anon_sym_COMMA, - ACTIONS(4022), 1, - anon_sym_SEMI, + ACTIONS(2729), 1, + anon_sym_RBRACE, STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55130] = 4, + aux_sym_initializer_list_repeat1, + [56938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(4024), 1, - anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55143] = 4, + ACTIONS(2685), 1, + anon_sym_LBRACE, + ACTIONS(4142), 1, + sym_identifier, + STATE(1324), 1, + sym_enumerator_list, + [56951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(4026), 1, + ACTIONS(4144), 1, anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55156] = 4, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4028), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(4031), 1, + ACTIONS(4146), 1, anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55169] = 4, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [56977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4033), 1, + ACTIONS(4148), 1, anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55182] = 4, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [56990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(4044), 1, anon_sym_COMMA, - ACTIONS(4035), 1, + ACTIONS(4150), 1, anon_sym_RBRACK_RBRACK, - STATE(1490), 1, + STATE(1630), 1, aux_sym_attribute_declaration_repeat1, - [55195] = 4, + [57003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3996), 1, - anon_sym_COLON, - ACTIONS(4037), 1, - anon_sym_RPAREN, - STATE(1563), 1, - sym_gnu_asm_clobber_list, - [55208] = 4, + ACTIONS(4154), 1, + anon_sym_EQ, + ACTIONS(4152), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57014] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(4156), 1, anon_sym_COMMA, - ACTIONS(4039), 1, - anon_sym_SEMI, - STATE(1562), 1, - aux_sym_field_declaration_repeat1, - [55221] = 4, + ACTIONS(4158), 1, + anon_sym_RPAREN, + STATE(1544), 1, + aux_sym_preproc_params_repeat1, + [57027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(4160), 1, anon_sym_COMMA, - ACTIONS(4041), 1, - anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55234] = 4, + ACTIONS(4162), 1, + anon_sym_RBRACE, + STATE(1632), 1, + aux_sym_enumerator_list_repeat1, + [57040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(4044), 1, anon_sym_COMMA, - ACTIONS(4043), 1, + ACTIONS(4164), 1, anon_sym_RBRACK_RBRACK, - STATE(1531), 1, + STATE(1595), 1, aux_sym_attribute_declaration_repeat1, - [55247] = 2, + [57053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [55256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3478), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(4047), 1, + ACTIONS(4166), 1, anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55269] = 4, + STATE(1612), 1, + aux_sym_declaration_repeat1, + [57066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 1, - anon_sym_RBRACE, - ACTIONS(4049), 1, + ACTIONS(3197), 1, anon_sym_COMMA, - STATE(1559), 1, - aux_sym_initializer_list_repeat1, - [55282] = 2, + ACTIONS(4168), 1, + anon_sym_RPAREN, + STATE(1538), 1, + aux_sym_preproc_argument_list_repeat1, + [57079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 3, + ACTIONS(2691), 1, anon_sym_COMMA, + ACTIONS(4170), 1, anon_sym_RPAREN, - anon_sym_COLON, - [55291] = 4, - ACTIONS(3163), 1, - anon_sym_LPAREN2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4054), 1, - anon_sym_LF, - STATE(1289), 1, - sym_preproc_argument_list, - [55304] = 4, + STATE(1537), 1, + aux_sym_argument_list_repeat1, + [57092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, + ACTIONS(4172), 1, anon_sym_COMMA, - ACTIONS(4056), 1, + ACTIONS(4175), 1, anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55317] = 4, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [57105] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, + ACTIONS(3497), 1, anon_sym_COLON, - ACTIONS(4058), 1, + ACTIONS(3516), 1, anon_sym_RPAREN, - STATE(1816), 1, - sym_gnu_asm_goto_list, - [55330] = 4, + STATE(1629), 1, + sym_gnu_asm_output_operand_list, + [57118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2712), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(4060), 1, - anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_generic_expression_repeat1, - [55343] = 2, + ACTIONS(4177), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [57131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4062), 3, + ACTIONS(3472), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55352] = 4, - ACTIONS(3163), 1, - anon_sym_LPAREN2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LF, - STATE(1289), 1, - sym_preproc_argument_list, - [55365] = 2, + ACTIONS(4179), 1, + anon_sym_SEMI, + STATE(1623), 1, + aux_sym_declaration_repeat1, + [57144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4066), 3, - anon_sym_COMMA, + ACTIONS(3495), 1, anon_sym_RPAREN, + ACTIONS(3497), 1, anon_sym_COLON, - [55374] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4068), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [55383] = 4, + STATE(1554), 1, + sym_gnu_asm_output_operand_list, + [57157] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(3472), 1, anon_sym_COMMA, - ACTIONS(4070), 1, + ACTIONS(4181), 1, anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55396] = 4, + STATE(1626), 1, + aux_sym_declaration_repeat1, + [57170] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, - anon_sym_COMMA, - ACTIONS(4072), 1, - anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55409] = 4, + ACTIONS(4007), 1, + anon_sym_COLON, + ACTIONS(4183), 1, + anon_sym_RPAREN, + STATE(1560), 1, + sym_gnu_asm_input_operand_list, + [57183] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(4185), 1, anon_sym_COMMA, - ACTIONS(4076), 1, - anon_sym_RPAREN, - STATE(1587), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [55422] = 4, + ACTIONS(4188), 1, + anon_sym_RBRACK_RBRACK, + STATE(1630), 1, + aux_sym_attribute_declaration_repeat1, + [57196] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4190), 1, anon_sym_COMMA, - ACTIONS(4078), 1, - anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55435] = 4, + ACTIONS(4192), 1, + anon_sym_RPAREN, + STATE(1546), 1, + aux_sym_parameter_list_repeat1, + [57209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4194), 1, anon_sym_COMMA, - ACTIONS(4080), 1, - anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55448] = 4, + ACTIONS(4196), 1, + anon_sym_RBRACE, + STATE(1598), 1, + aux_sym_enumerator_list_repeat1, + [57222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1885), 1, + ACTIONS(3920), 1, + sym_identifier, + ACTIONS(4196), 1, anon_sym_RBRACE, - ACTIONS(4082), 1, + STATE(1676), 1, + sym_enumerator, + [57235] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2691), 1, anon_sym_COMMA, - STATE(1559), 1, - aux_sym_initializer_list_repeat1, - [55461] = 4, + ACTIONS(2693), 1, + anon_sym_RPAREN, + STATE(1622), 1, + aux_sym_argument_list_repeat1, + [57248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 1, + ACTIONS(4156), 1, anon_sym_COMMA, - ACTIONS(4084), 1, - anon_sym_SEMI, - STATE(1526), 1, - aux_sym_type_definition_repeat2, - [55474] = 4, + ACTIONS(4198), 1, + anon_sym_RPAREN, + STATE(1617), 1, + aux_sym_preproc_params_repeat1, + [57261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2752), 1, + ACTIONS(2685), 1, anon_sym_LBRACE, - ACTIONS(4086), 1, + ACTIONS(4200), 1, sym_identifier, - STATE(1142), 1, + STATE(1324), 1, sym_enumerator_list, - [55487] = 4, + [57274] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(3568), 1, anon_sym_COMMA, - ACTIONS(4091), 1, - anon_sym_RPAREN, - STATE(1577), 1, - aux_sym_generic_expression_repeat1, - [55500] = 4, + ACTIONS(4202), 1, + anon_sym_SEMI, + STATE(1609), 1, + aux_sym_type_definition_repeat2, + [57287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, + ACTIONS(4190), 1, anon_sym_COMMA, - ACTIONS(4093), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [55513] = 4, + ACTIONS(4204), 1, + anon_sym_RPAREN, + STATE(1631), 1, + aux_sym_parameter_list_repeat1, + [57300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_COMMA, - ACTIONS(4095), 1, - anon_sym_SEMI, - STATE(1516), 1, - aux_sym_declaration_repeat1, - [55526] = 4, + ACTIONS(4206), 1, + anon_sym_LPAREN2, + STATE(1929), 1, + sym_parenthesized_expression, + [57310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_COMMA, - ACTIONS(4100), 1, + ACTIONS(2662), 2, anon_sym_RPAREN, - STATE(1580), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [55539] = 4, + anon_sym_SEMI, + [57318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_COMMA, - ACTIONS(4102), 1, - anon_sym_SEMI, - STATE(1578), 1, - aux_sym_declaration_repeat1, - [55552] = 2, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(338), 1, + sym_parenthesized_expression, + [57328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4104), 3, + ACTIONS(4210), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [55561] = 2, + [57336] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4212), 2, + anon_sym_LF, + sym_preproc_arg, + [57344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 3, + ACTIONS(4188), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55570] = 4, - ACTIONS(3163), 1, - anon_sym_LPAREN2, - ACTIONS(3165), 1, + anon_sym_RBRACK_RBRACK, + [57352] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4108), 1, + ACTIONS(4214), 1, anon_sym_LF, - STATE(1289), 1, - sym_preproc_argument_list, - [55583] = 4, + ACTIONS(4216), 1, + sym_preproc_arg, + [57362] = 3, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4218), 1, + anon_sym_LF, + ACTIONS(4220), 1, + sym_preproc_arg, + [57372] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4222), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [57380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 1, - anon_sym_COMMA, - ACTIONS(4110), 1, - anon_sym_SEMI, - STATE(1550), 1, - aux_sym_field_declaration_repeat1, - [55596] = 2, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(370), 1, + sym_parenthesized_expression, + [57390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4112), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [55605] = 4, + ACTIONS(4206), 1, + anon_sym_LPAREN2, + STATE(1669), 1, + sym_parenthesized_expression, + [57400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_COMMA, - ACTIONS(4114), 1, - anon_sym_RPAREN, - STATE(1580), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [55618] = 3, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(369), 1, + sym_parenthesized_expression, + [57410] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 1, + sym_identifier, + STATE(1619), 1, + sym_attribute, + [57420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(583), 1, + ACTIONS(593), 1, anon_sym_LBRACE, - STATE(399), 1, + STATE(259), 1, sym_compound_statement, - [55628] = 2, + [57430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4116), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [55636] = 3, - ACTIONS(3165), 1, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(1804), 1, + sym_argument_list, + [57440] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - anon_sym_LF, - ACTIONS(4120), 1, - sym_preproc_arg, - [55646] = 2, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(339), 1, + sym_parenthesized_expression, + [57450] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4226), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [57458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2744), 2, + ACTIONS(3596), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [55654] = 3, + anon_sym_SEMI, + [57466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 1, - sym_identifier, - STATE(1483), 1, - sym_attribute, - [55664] = 3, + ACTIONS(2884), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [57474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(323), 1, + STATE(303), 1, sym_parenthesized_expression, - [55674] = 3, - ACTIONS(3165), 1, + [57484] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4228), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [57492] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4126), 1, + ACTIONS(4230), 2, anon_sym_LF, - ACTIONS(4128), 1, sym_preproc_arg, - [55684] = 3, + [57500] = 3, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4232), 1, + anon_sym_LF, + ACTIONS(4234), 1, + sym_preproc_arg, + [57510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(289), 1, + STATE(401), 1, sym_parenthesized_expression, - [55694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4130), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [55702] = 3, + [57520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(1605), 1, + STATE(1692), 1, sym_parenthesized_expression, - [55712] = 3, + [57530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(322), 1, + STATE(367), 1, sym_parenthesized_expression, - [55722] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4134), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [55730] = 3, + [57540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(123), 1, - anon_sym_LBRACE, - STATE(151), 1, - sym_compound_statement, - [55740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4136), 1, + ACTIONS(4224), 1, sym_identifier, - ACTIONS(4138), 1, - anon_sym_LPAREN2, - [55750] = 3, + STATE(1644), 1, + sym_attribute, + [57550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(583), 1, - anon_sym_LBRACE, - STATE(493), 1, - sym_compound_statement, - [55760] = 3, + ACTIONS(4236), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [57558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(1855), 1, - sym_argument_list, - [55770] = 3, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4140), 1, - anon_sym_LF, - ACTIONS(4142), 1, - sym_preproc_arg, - [55780] = 3, + STATE(1836), 1, + sym_parenthesized_expression, + [57568] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(39), 1, anon_sym_LBRACE, - STATE(256), 1, + STATE(257), 1, sym_compound_statement, - [55790] = 3, + [57578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(123), 1, anon_sym_LBRACE, - STATE(499), 1, + STATE(104), 1, sym_compound_statement, - [55800] = 3, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4144), 1, - anon_sym_LF, - ACTIONS(4146), 1, - sym_preproc_arg, - [55810] = 2, + [57588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [55818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 1, - sym_identifier, - STATE(1629), 1, - sym_attribute, - [55828] = 3, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(222), 1, + sym_parenthesized_expression, + [57598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(583), 1, - anon_sym_LBRACE, - STATE(475), 1, - sym_compound_statement, - [55838] = 3, + ACTIONS(4208), 1, + anon_sym_LPAREN2, + STATE(309), 1, + sym_parenthesized_expression, + [57608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(1707), 1, + STATE(314), 1, sym_parenthesized_expression, - [55848] = 3, + [57618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2262), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(1824), 1, - sym_argument_list, - [55858] = 3, + STATE(1878), 1, + sym_parenthesized_expression, + [57628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4238), 1, + sym_identifier, + ACTIONS(4240), 1, anon_sym_LPAREN2, - STATE(1588), 1, - sym_parenthesized_expression, - [55868] = 3, - ACTIONS(3165), 1, + [57638] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4150), 1, - anon_sym_LF, - ACTIONS(4152), 1, - sym_preproc_arg, - [55878] = 3, + ACTIONS(4242), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [57646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(123), 1, - anon_sym_LBRACE, - STATE(132), 1, - sym_compound_statement, - [55888] = 3, + ACTIONS(4115), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(39), 1, + ACTIONS(460), 1, anon_sym_LBRACE, - STATE(506), 1, + STATE(334), 1, sym_compound_statement, - [55898] = 2, - ACTIONS(3165), 1, + [57664] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4154), 2, - anon_sym_LF, - sym_preproc_arg, - [55906] = 3, + ACTIONS(4206), 1, + anon_sym_LPAREN2, + STATE(1668), 1, + sym_parenthesized_expression, + [57674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(1714), 1, + STATE(1732), 1, sym_parenthesized_expression, - [55916] = 3, - ACTIONS(3165), 1, + [57684] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4156), 1, + ACTIONS(4244), 1, anon_sym_LF, - ACTIONS(4158), 1, + ACTIONS(4246), 1, sym_preproc_arg, - [55926] = 2, + [57694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4160), 2, + ACTIONS(4248), 2, anon_sym_COMMA, anon_sym_RPAREN, - [55934] = 3, + [57702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(341), 1, + STATE(1652), 1, sym_parenthesized_expression, - [55944] = 3, - ACTIONS(3), 1, + [57712] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4132), 1, - anon_sym_LPAREN2, - STATE(1787), 1, - sym_parenthesized_expression, - [55954] = 3, + ACTIONS(4250), 1, + anon_sym_LF, + ACTIONS(4252), 1, + sym_preproc_arg, + [57722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(338), 1, + STATE(1759), 1, sym_parenthesized_expression, - [55964] = 2, - ACTIONS(3), 1, + [57732] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(2670), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [55972] = 3, - ACTIONS(3165), 1, + ACTIONS(4254), 1, + anon_sym_LF, + ACTIONS(4256), 1, + sym_preproc_arg, + [57742] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4162), 1, + ACTIONS(4258), 1, anon_sym_LF, - ACTIONS(4164), 1, + ACTIONS(4260), 1, sym_preproc_arg, - [55982] = 3, + [57752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(319), 1, + STATE(368), 1, sym_parenthesized_expression, - [55992] = 3, + [57762] = 3, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4262), 1, + anon_sym_LF, + ACTIONS(4264), 1, + sym_preproc_arg, + [57772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4266), 1, + sym_identifier, + ACTIONS(4268), 1, anon_sym_LPAREN2, - STATE(1630), 1, - sym_parenthesized_expression, - [56002] = 3, + [57782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LPAREN2, - STATE(444), 1, - sym_parenthesized_expression, - [56012] = 2, + ACTIONS(4270), 1, + sym_identifier, + ACTIONS(4272), 1, + anon_sym_RPAREN, + [57792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [56020] = 3, + ACTIONS(4224), 1, + sym_identifier, + STATE(1570), 1, + sym_attribute, + [57802] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(189), 1, anon_sym_LBRACE, - STATE(158), 1, + STATE(170), 1, sym_compound_statement, - [56030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3538), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [56038] = 3, - ACTIONS(3165), 1, + [57812] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4274), 1, anon_sym_LF, - ACTIONS(4168), 1, + ACTIONS(4276), 1, sym_preproc_arg, - [56048] = 2, + [57822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2726), 2, + ACTIONS(2760), 2, anon_sym_COMMA, - anon_sym_SEMI, - [56056] = 3, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4170), 1, - anon_sym_LF, - ACTIONS(4172), 1, - sym_preproc_arg, - [56066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(460), 1, - anon_sym_LBRACE, - STATE(318), 1, - sym_compound_statement, - [56076] = 2, + anon_sym_RPAREN, + [57830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [56084] = 2, - ACTIONS(3165), 1, + ACTIONS(2747), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57838] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4176), 2, - anon_sym_LF, - sym_preproc_arg, - [56092] = 3, - ACTIONS(3165), 1, + ACTIONS(2888), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [57846] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4178), 1, + ACTIONS(4278), 1, anon_sym_LF, - ACTIONS(4180), 1, + ACTIONS(4280), 1, sym_preproc_arg, - [56102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - anon_sym_LPAREN2, - STATE(1676), 1, - sym_parenthesized_expression, - [56112] = 3, - ACTIONS(3165), 1, + [57856] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4182), 1, + ACTIONS(4282), 1, anon_sym_LF, - ACTIONS(4184), 1, + ACTIONS(4284), 1, sym_preproc_arg, - [56122] = 3, + [57866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - STATE(207), 1, - sym_compound_statement, - [56132] = 3, + ACTIONS(3920), 1, + sym_identifier, + STATE(1676), 1, + sym_enumerator, + [57876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(460), 1, - anon_sym_LBRACE, - STATE(457), 1, - sym_compound_statement, - [56142] = 3, - ACTIONS(3165), 1, + ACTIONS(2272), 1, + anon_sym_LPAREN2, + STATE(1787), 1, + sym_argument_list, + [57886] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4186), 1, + ACTIONS(4286), 1, anon_sym_LF, - ACTIONS(4188), 1, + ACTIONS(4288), 1, sym_preproc_arg, - [56152] = 3, - ACTIONS(3165), 1, + [57896] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4190), 1, + ACTIONS(4290), 1, anon_sym_LF, - ACTIONS(4192), 1, + ACTIONS(4292), 1, sym_preproc_arg, - [56162] = 2, - ACTIONS(3165), 1, + [57906] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4194), 2, + ACTIONS(4294), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [56170] = 3, - ACTIONS(3165), 1, + [57914] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4196), 1, + ACTIONS(4296), 1, anon_sym_LF, - ACTIONS(4198), 1, + ACTIONS(4298), 1, sym_preproc_arg, - [56180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4124), 1, - anon_sym_LPAREN2, - STATE(339), 1, - sym_parenthesized_expression, - [56190] = 3, + [57924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LPAREN2, - STATE(301), 1, - sym_parenthesized_expression, - [56200] = 3, - ACTIONS(3), 1, + ACTIONS(3991), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57932] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4132), 1, - anon_sym_LPAREN2, - STATE(1656), 1, - sym_parenthesized_expression, - [56210] = 3, - ACTIONS(3165), 1, + ACTIONS(4300), 2, + anon_sym_LF, + sym_preproc_arg, + [57940] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4200), 1, + ACTIONS(4302), 1, anon_sym_LF, - ACTIONS(4202), 1, + ACTIONS(4304), 1, sym_preproc_arg, - [56220] = 3, - ACTIONS(3), 1, + [57950] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LPAREN2, - STATE(316), 1, - sym_parenthesized_expression, - [56230] = 3, + ACTIONS(4306), 1, + anon_sym_LF, + ACTIONS(4308), 1, + sym_preproc_arg, + [57960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4122), 1, + ACTIONS(4224), 1, sym_identifier, - STATE(1552), 1, + STATE(1601), 1, sym_attribute, - [56240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3988), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56248] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(189), 1, - anon_sym_LBRACE, - STATE(202), 1, - sym_compound_statement, - [56258] = 3, - ACTIONS(3165), 1, + [57970] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4204), 1, + ACTIONS(4310), 1, anon_sym_LF, - ACTIONS(4206), 1, + ACTIONS(4312), 1, sym_preproc_arg, - [56268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(123), 1, - anon_sym_LBRACE, - STATE(111), 1, - sym_compound_statement, - [56278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4122), 1, - sym_identifier, - STATE(1556), 1, - sym_attribute, - [56288] = 3, + [57980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4208), 1, anon_sym_LPAREN2, - STATE(418), 1, + STATE(302), 1, sym_parenthesized_expression, - [56298] = 3, + [57990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, + ACTIONS(4206), 1, anon_sym_LPAREN2, - STATE(1635), 1, + STATE(1677), 1, sym_parenthesized_expression, - [56308] = 2, + [58000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2914), 2, + ACTIONS(3984), 2, anon_sym_COMMA, anon_sym_RPAREN, - [56316] = 3, - ACTIONS(3), 1, + [58008] = 3, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4124), 1, - anon_sym_LPAREN2, - STATE(419), 1, - sym_parenthesized_expression, - [56326] = 3, + ACTIONS(4314), 1, + anon_sym_LF, + ACTIONS(4316), 1, + sym_preproc_arg, + [58018] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4318), 1, + anon_sym_LF, + [58025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(460), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_compound_statement, - [56336] = 2, - ACTIONS(3165), 1, + ACTIONS(2872), 1, + anon_sym_RPAREN, + [58032] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4208), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [56344] = 2, + ACTIONS(4320), 1, + anon_sym_LF, + [58039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4013), 2, - anon_sym_COMMA, + ACTIONS(2866), 1, anon_sym_RPAREN, - [56352] = 3, - ACTIONS(3), 1, + [58046] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4210), 1, - sym_identifier, - ACTIONS(4212), 1, - anon_sym_LPAREN2, - [56362] = 2, - ACTIONS(3165), 1, + ACTIONS(4322), 1, + anon_sym_LF, + [58053] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4214), 2, + ACTIONS(4324), 1, anon_sym_LF, - sym_preproc_arg, - [56370] = 3, + [58060] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4326), 1, + anon_sym_LF, + [58067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4216), 1, - sym_identifier, - ACTIONS(4218), 1, - anon_sym_RPAREN, - [56380] = 3, - ACTIONS(3165), 1, + ACTIONS(4328), 1, + anon_sym_SEMI, + [58074] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4330), 1, anon_sym_LF, - ACTIONS(4222), 1, - sym_preproc_arg, - [56390] = 2, - ACTIONS(3), 1, + [58081] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(2738), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [56398] = 3, - ACTIONS(3165), 1, + ACTIONS(4332), 1, + anon_sym_LF, + [58088] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4224), 1, + ACTIONS(4334), 1, anon_sym_LF, - ACTIONS(4226), 1, - sym_preproc_arg, - [56408] = 3, + [58095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3769), 1, + ACTIONS(4336), 1, sym_identifier, - STATE(1653), 1, - sym_enumerator, - [56418] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56426] = 2, + [58102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4228), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [56434] = 3, + ACTIONS(4338), 1, + sym_identifier, + [58109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4132), 1, - anon_sym_LPAREN2, - STATE(1792), 1, - sym_parenthesized_expression, - [56444] = 2, + ACTIONS(4340), 1, + sym_identifier, + [58116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4230), 1, + ACTIONS(4342), 1, aux_sym_preproc_if_token2, - [56451] = 2, + [58123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4232), 1, - anon_sym_SEMI, - [56458] = 2, - ACTIONS(3165), 1, + ACTIONS(4344), 1, + sym_identifier, + [58130] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4234), 1, - anon_sym_LF, - [56465] = 2, + ACTIONS(4346), 1, + aux_sym_preproc_if_token2, + [58137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4236), 1, - anon_sym_RBRACK, - [56472] = 2, + ACTIONS(4348), 1, + anon_sym_SEMI, + [58144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4238), 1, - anon_sym_RPAREN, - [56479] = 2, + ACTIONS(4350), 1, + anon_sym_SEMI, + [58151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4240), 1, - anon_sym_SQUOTE, - [56486] = 2, + ACTIONS(4352), 1, + aux_sym_preproc_if_token2, + [58158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4242), 1, + ACTIONS(4354), 1, aux_sym_preproc_if_token2, - [56493] = 2, + [58165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2720), 1, + ACTIONS(4356), 1, anon_sym_RPAREN, - [56500] = 2, + [58172] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_LF, + [58179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4244), 1, - aux_sym_preproc_if_token2, - [56507] = 2, + ACTIONS(4360), 1, + anon_sym_SEMI, + [58186] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4362), 1, + anon_sym_LF, + [58193] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4364), 1, + anon_sym_LF, + [58200] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4366), 1, + anon_sym_LF, + [58207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2754), 1, + ACTIONS(4368), 1, anon_sym_RPAREN, - [56514] = 2, + [58214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2766), 1, - anon_sym_RPAREN, - [56521] = 2, + ACTIONS(4370), 1, + sym_primitive_type, + [58221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4246), 1, + ACTIONS(4372), 1, aux_sym_preproc_if_token2, - [56528] = 2, + [58228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4248), 1, - anon_sym_RPAREN, - [56535] = 2, + ACTIONS(4374), 1, + aux_sym_preproc_if_token2, + [58235] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_LF, + [58242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(4378), 1, aux_sym_preproc_if_token2, - [56542] = 2, - ACTIONS(3), 1, + [58249] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4252), 1, - anon_sym_RPAREN, - [56549] = 2, + ACTIONS(4380), 1, + anon_sym_LF, + [58256] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4382), 1, + anon_sym_LF, + [58263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4254), 1, - anon_sym_LPAREN2, - [56556] = 2, + ACTIONS(4384), 1, + anon_sym_COLON, + [58270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2776), 1, + ACTIONS(4386), 1, anon_sym_SEMI, - [56563] = 2, + [58277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4256), 1, + ACTIONS(4388), 1, sym_identifier, - [56570] = 2, + [58284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4258), 1, - sym_identifier, - [56577] = 2, + ACTIONS(4390), 1, + anon_sym_SQUOTE, + [58291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4260), 1, - sym_identifier, - [56584] = 2, + ACTIONS(4392), 1, + anon_sym_SEMI, + [58298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4262), 1, - aux_sym_preproc_if_token2, - [56591] = 2, + ACTIONS(2868), 1, + anon_sym_SEMI, + [58305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4264), 1, - anon_sym_RBRACK, - [56598] = 2, + ACTIONS(4394), 1, + sym_identifier, + [58312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4266), 1, + ACTIONS(4396), 1, + aux_sym_preproc_if_token2, + [58319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4398), 1, sym_identifier, - [56605] = 2, + [58326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2756), 1, - anon_sym_RPAREN, - [56612] = 2, + ACTIONS(4400), 1, + anon_sym_SEMI, + [58333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2758), 1, + ACTIONS(4402), 1, anon_sym_RPAREN, - [56619] = 2, + [58340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4268), 1, - anon_sym_RPAREN, - [56626] = 2, + ACTIONS(2802), 1, + anon_sym_SEMI, + [58347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2844), 1, + ACTIONS(4404), 1, anon_sym_SEMI, - [56633] = 2, + [58354] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4270), 1, - aux_sym_preproc_if_token2, - [56640] = 2, + ACTIONS(4406), 1, + anon_sym_RPAREN, + [58361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4272), 1, - aux_sym_preproc_if_token2, - [56647] = 2, + ACTIONS(2764), 1, + anon_sym_RPAREN, + [58368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2780), 1, + ACTIONS(2818), 1, anon_sym_SEMI, - [56654] = 2, + [58375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4274), 1, - aux_sym_preproc_if_token2, - [56661] = 2, + ACTIONS(2749), 1, + anon_sym_SEMI, + [58382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2768), 1, - anon_sym_SEMI, - [56668] = 2, + ACTIONS(2806), 1, + anon_sym_RPAREN, + [58389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4276), 1, + ACTIONS(4408), 1, + aux_sym_preproc_if_token2, + [58396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 1, anon_sym_SEMI, - [56675] = 2, - ACTIONS(3165), 1, + [58403] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4278), 1, + ACTIONS(4135), 1, anon_sym_LF, - [56682] = 2, + [58410] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2718), 1, + ACTIONS(4410), 1, anon_sym_SEMI, - [56689] = 2, + [58417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2830), 1, + ACTIONS(4412), 1, + anon_sym_SEMI, + [58424] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2776), 1, anon_sym_RPAREN, - [56696] = 2, + [58431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2882), 1, - anon_sym_SEMI, - [56703] = 2, + ACTIONS(2794), 1, + anon_sym_RPAREN, + [58438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4280), 1, - aux_sym_preproc_if_token2, - [56710] = 2, + ACTIONS(4414), 1, + anon_sym_COLON, + [58445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, + ACTIONS(2786), 1, anon_sym_RPAREN, - [56717] = 2, + [58452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4282), 1, - anon_sym_SEMI, - [56724] = 2, + ACTIONS(4416), 1, + aux_sym_preproc_if_token2, + [58459] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4418), 1, + anon_sym_LF, + [58466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 1, - aux_sym_preproc_if_token2, - [56731] = 2, + ACTIONS(2790), 1, + anon_sym_RPAREN, + [58473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2856), 1, + ACTIONS(2844), 1, anon_sym_SEMI, - [56738] = 2, + [58480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4286), 1, - aux_sym_preproc_if_token2, - [56745] = 2, + ACTIONS(4420), 1, + sym_identifier, + [58487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2822), 1, + ACTIONS(2846), 1, anon_sym_RPAREN, - [56752] = 2, + [58494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4288), 1, - anon_sym_SEMI, - [56759] = 2, + ACTIONS(4422), 1, + aux_sym_preproc_if_token2, + [58501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2870), 1, + ACTIONS(2858), 1, anon_sym_RPAREN, - [56766] = 2, + [58508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4290), 1, - anon_sym_SEMI, - [56773] = 2, + ACTIONS(4424), 1, + anon_sym_STAR, + [58515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2884), 1, + ACTIONS(2860), 1, anon_sym_RPAREN, - [56780] = 2, + [58522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4292), 1, + ACTIONS(4426), 1, anon_sym_RPAREN, - [56787] = 2, + [58529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4294), 1, - anon_sym_SQUOTE, - [56794] = 2, + ACTIONS(4428), 1, + sym_identifier, + [58536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 1, + ACTIONS(2862), 1, anon_sym_RPAREN, - [56801] = 2, + [58543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4296), 1, + ACTIONS(4430), 1, aux_sym_preproc_if_token2, - [56808] = 2, + [58550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4298), 1, - sym_identifier, - [56815] = 2, - ACTIONS(3165), 1, + ACTIONS(4432), 1, + anon_sym_COLON, + [58557] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4300), 1, - anon_sym_LF, - [56822] = 2, + ACTIONS(2788), 1, + anon_sym_SEMI, + [58564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4302), 1, + ACTIONS(4434), 1, + anon_sym_RPAREN, + [58571] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4162), 1, + anon_sym_RBRACE, + [58578] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4436), 1, aux_sym_preproc_if_token2, - [56829] = 2, + [58585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(4438), 1, anon_sym_LPAREN2, - [56836] = 2, + [58592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2800), 1, - anon_sym_RPAREN, - [56843] = 2, + ACTIONS(4440), 1, + sym_primitive_type, + [58599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 1, + ACTIONS(4442), 1, sym_identifier, - [56850] = 2, + [58606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4308), 1, - anon_sym_COLON, - [56857] = 2, + ACTIONS(2832), 1, + anon_sym_SEMI, + [58613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4444), 1, anon_sym_RPAREN, - [56864] = 2, + [58620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2918), 1, - anon_sym_SEMI, - [56871] = 2, - ACTIONS(3), 1, + ACTIONS(4446), 1, + anon_sym_COMMA, + [58627] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(2916), 1, - anon_sym_RPAREN, - [56878] = 2, + ACTIONS(4448), 1, + anon_sym_LF, + [58634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(4450), 1, anon_sym_RPAREN, - [56885] = 2, + [58641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4312), 1, - anon_sym_LPAREN2, - [56892] = 2, + ACTIONS(4452), 1, + anon_sym_STAR, + [58648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - aux_sym_preproc_if_token2, - [56899] = 2, + ACTIONS(2780), 1, + anon_sym_RPAREN, + [58655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - aux_sym_preproc_if_token2, - [56906] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4318), 1, - anon_sym_LF, - [56913] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4064), 1, - anon_sym_LF, - [56920] = 2, + ACTIONS(4454), 1, + anon_sym_SEMI, + [58662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, + ACTIONS(4456), 1, sym_identifier, - [56927] = 2, + [58669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 1, + ACTIONS(4458), 1, sym_identifier, - [56934] = 2, + [58676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4324), 1, - sym_identifier, - [56941] = 2, + ACTIONS(4460), 1, + anon_sym_LPAREN2, + [58683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 1, - anon_sym_RPAREN, - [56948] = 2, + ACTIONS(2774), 1, + anon_sym_SEMI, + [58690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 1, - sym_identifier, - [56955] = 2, + ACTIONS(4462), 1, + anon_sym_STAR, + [58697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, - aux_sym_preproc_if_token2, - [56962] = 2, - ACTIONS(3165), 1, + ACTIONS(4464), 1, + anon_sym_SQUOTE, + [58704] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4332), 1, - anon_sym_LF, - [56969] = 2, + ACTIONS(2880), 1, + anon_sym_SEMI, + [58711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4334), 1, - aux_sym_preproc_if_token2, - [56976] = 2, - ACTIONS(3165), 1, + ACTIONS(2820), 1, + anon_sym_SEMI, + [58718] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_LF, - [56983] = 2, + ACTIONS(4466), 1, + anon_sym_SEMI, + [58725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(4468), 1, sym_identifier, - [56990] = 2, + [58732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2742), 1, - anon_sym_RPAREN, - [56997] = 2, - ACTIONS(3), 1, + ACTIONS(2856), 1, + anon_sym_SEMI, + [58739] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_RPAREN, - [57004] = 2, + ACTIONS(4470), 1, + anon_sym_LF, + [58746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4342), 1, - aux_sym_preproc_if_token2, - [57011] = 2, - ACTIONS(3165), 1, + ACTIONS(4472), 1, + anon_sym_SEMI, + [58753] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4344), 1, + ACTIONS(4474), 1, anon_sym_LF, - [57018] = 2, + [58760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - sym_identifier, - [57025] = 2, + ACTIONS(4476), 1, + anon_sym_RPAREN, + [58767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2684), 1, - anon_sym_RBRACE, - [57032] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4348), 1, - anon_sym_LF, - [57039] = 2, - ACTIONS(3165), 1, + ACTIONS(4478), 1, + aux_sym_preproc_if_token2, + [58774] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 1, - anon_sym_LF, - [57046] = 2, - ACTIONS(3165), 1, + ACTIONS(4480), 1, + aux_sym_preproc_if_token2, + [58781] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(3961), 1, anon_sym_LF, - [57053] = 2, + [58788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4354), 1, + ACTIONS(4482), 1, anon_sym_SEMI, - [57060] = 2, + [58795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4356), 1, + ACTIONS(4484), 1, sym_identifier, - [57067] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4054), 1, - anon_sym_LF, - [57074] = 2, + [58802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, + ACTIONS(4486), 1, anon_sym_SEMI, - [57081] = 2, + [58809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4360), 1, - aux_sym_preproc_if_token2, - [57088] = 2, + ACTIONS(4488), 1, + anon_sym_SEMI, + [58816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4362), 1, - aux_sym_preproc_if_token2, - [57095] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4364), 1, - anon_sym_LF, - [57102] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4366), 1, - anon_sym_LF, - [57109] = 2, - ACTIONS(3165), 1, + ACTIONS(4490), 1, + anon_sym_COLON, + [58823] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4368), 1, - anon_sym_LF, - [57116] = 2, + ACTIONS(4492), 1, + anon_sym_COLON, + [58830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2746), 1, - anon_sym_SEMI, - [57123] = 2, + ACTIONS(4494), 1, + sym_identifier, + [58837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4370), 1, + ACTIONS(4496), 1, anon_sym_SEMI, - [57130] = 2, + [58844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2762), 1, + ACTIONS(4498), 1, anon_sym_SEMI, - [57137] = 2, + [58851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2728), 1, + ACTIONS(2772), 1, anon_sym_SEMI, - [57144] = 2, - ACTIONS(3165), 1, + [58858] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4372), 1, - anon_sym_LF, - [57151] = 2, + ACTIONS(4500), 1, + anon_sym_STAR, + [58865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4374), 1, + ACTIONS(4502), 1, anon_sym_SEMI, - [57158] = 2, + [58872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2724), 1, - anon_sym_RPAREN, - [57165] = 2, - ACTIONS(3165), 1, + ACTIONS(2814), 1, + anon_sym_SEMI, + [58879] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4376), 1, - anon_sym_LF, - [57172] = 2, + ACTIONS(2810), 1, + anon_sym_SEMI, + [58886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4378), 1, - aux_sym_preproc_if_token2, - [57179] = 2, + ACTIONS(4504), 1, + anon_sym_SEMI, + [58893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2862), 1, + ACTIONS(2828), 1, anon_sym_RPAREN, - [57186] = 2, + [58900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4380), 1, - aux_sym_preproc_if_token2, - [57193] = 2, + ACTIONS(4506), 1, + anon_sym_LPAREN2, + [58907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, - sym_identifier, - [57200] = 2, + ACTIONS(4508), 1, + anon_sym_LPAREN2, + [58914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2890), 1, - anon_sym_SEMI, - [57207] = 2, + ACTIONS(2854), 1, + anon_sym_RPAREN, + [58921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2814), 1, - anon_sym_SEMI, - [57214] = 2, + ACTIONS(4510), 1, + anon_sym_while, + [58928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2804), 1, + ACTIONS(4512), 1, anon_sym_SEMI, - [57221] = 2, + [58935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2798), 1, - anon_sym_RPAREN, - [57228] = 2, + ACTIONS(4514), 1, + aux_sym_preproc_if_token2, + [58942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(2886), 1, anon_sym_SEMI, - [57235] = 2, + [58949] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(3963), 1, + anon_sym_LF, + [58956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2764), 1, + ACTIONS(2890), 1, anon_sym_RPAREN, - [57242] = 2, + [58963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, - anon_sym_STAR, - [57249] = 2, + ACTIONS(4516), 1, + ts_builtin_sym_end, + [58970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2740), 1, + ACTIONS(2878), 1, anon_sym_RPAREN, - [57256] = 2, - ACTIONS(3165), 1, + [58977] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4518), 1, anon_sym_LF, - [57263] = 2, + [58984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, - anon_sym_SEMI, - [57270] = 2, + ACTIONS(2876), 1, + anon_sym_RPAREN, + [58991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2716), 1, + ACTIONS(4520), 1, anon_sym_RPAREN, - [57277] = 2, + [58998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2846), 1, + ACTIONS(4522), 1, + anon_sym_SEMI, + [59005] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4524), 1, + anon_sym_LF, + [59012] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 1, anon_sym_SEMI, - [57284] = 2, + [59019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4392), 1, + ACTIONS(4528), 1, sym_identifier, - [57291] = 2, + [59026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4530), 1, sym_identifier, - [57298] = 2, + [59033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4532), 1, aux_sym_preproc_if_token2, - [57305] = 2, - ACTIONS(3165), 1, + [59040] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4398), 1, - anon_sym_LF, - [57312] = 2, + ACTIONS(4534), 1, + aux_sym_preproc_if_token2, + [59047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(2800), 1, anon_sym_SEMI, - [57319] = 2, + [59054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2736), 1, - anon_sym_RPAREN, - [57326] = 2, + ACTIONS(4536), 1, + aux_sym_preproc_if_token2, + [59061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4538), 1, aux_sym_preproc_if_token2, - [57333] = 2, + [59068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(4540), 1, sym_identifier, - [57340] = 2, - ACTIONS(3165), 1, + [59075] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4406), 1, - anon_sym_LF, - [57347] = 2, + ACTIONS(4542), 1, + sym_identifier, + [59082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, - anon_sym_COLON, - [57354] = 2, + ACTIONS(2729), 1, + anon_sym_RBRACE, + [59089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4410), 1, - anon_sym_RPAREN, - [57361] = 2, - ACTIONS(3165), 1, + ACTIONS(4544), 1, + sym_identifier, + [59096] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, - anon_sym_LF, - [57368] = 2, - ACTIONS(2254), 1, + ACTIONS(4546), 1, + aux_sym_preproc_if_token2, + [59103] = 2, + ACTIONS(2256), 1, anon_sym_LF, - ACTIONS(3165), 1, - sym_comment, - [57375] = 2, - ACTIONS(3165), 1, + ACTIONS(3229), 1, sym_comment, - ACTIONS(3918), 1, - anon_sym_LF, - [57382] = 2, + [59110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, - anon_sym_COLON, - [57389] = 2, + ACTIONS(2848), 1, + anon_sym_RPAREN, + [59117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4416), 1, - aux_sym_preproc_if_token2, - [57396] = 2, + ACTIONS(2768), 1, + anon_sym_RPAREN, + [59124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4548), 1, sym_identifier, - [57403] = 2, + [59131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4420), 1, + ACTIONS(4550), 1, + anon_sym_SEMI, + [59138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4552), 1, + anon_sym_SQUOTE, + [59145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4554), 1, aux_sym_preproc_if_token2, - [57410] = 2, + [59152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4422), 1, + ACTIONS(4556), 1, aux_sym_preproc_if_token2, - [57417] = 2, + [59159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4424), 1, - anon_sym_RPAREN, - [57424] = 2, - ACTIONS(3165), 1, + ACTIONS(4558), 1, + anon_sym_SEMI, + [59166] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(4560), 1, anon_sym_LF, - [57431] = 2, + [59173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4428), 1, + ACTIONS(2874), 1, anon_sym_RPAREN, - [57438] = 2, + [59180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4562), 1, aux_sym_preproc_if_token2, - [57445] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_RPAREN, - [57452] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - anon_sym_SEMI, - [57459] = 2, - ACTIONS(3), 1, + [59187] = 2, + ACTIONS(2252), 1, + anon_sym_LF, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4434), 1, - aux_sym_preproc_if_token2, - [57466] = 2, + [59194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2772), 1, + ACTIONS(2733), 1, anon_sym_RPAREN, - [57473] = 2, + [59201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4436), 1, + ACTIONS(4564), 1, anon_sym_SEMI, - [57480] = 2, + [59208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4438), 1, - anon_sym_COLON, - [57487] = 2, + ACTIONS(4566), 1, + anon_sym_SEMI, + [59215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4440), 1, - anon_sym_STAR, - [57494] = 2, + ACTIONS(4568), 1, + aux_sym_preproc_if_token2, + [59222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2778), 1, + ACTIONS(2838), 1, anon_sym_RPAREN, - [57501] = 2, + [59229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 1, + ACTIONS(4570), 1, anon_sym_RPAREN, - [57508] = 2, + [59236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, + ACTIONS(2836), 1, anon_sym_RPAREN, - [57515] = 2, + [59243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - anon_sym_COLON, - [57522] = 2, + ACTIONS(4572), 1, + aux_sym_preproc_if_token2, + [59250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2848), 1, + ACTIONS(2830), 1, anon_sym_RPAREN, - [57529] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4446), 1, - anon_sym_COLON, - [57536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4448), 1, - anon_sym_COMMA, - [57543] = 2, + [59257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2864), 1, + ACTIONS(4574), 1, anon_sym_RPAREN, - [57550] = 2, + [59264] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4079), 1, + anon_sym_LF, + [59271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4450), 1, + ACTIONS(2826), 1, anon_sym_RPAREN, - [57557] = 2, + [59278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4452), 1, + ACTIONS(4576), 1, sym_identifier, - [57564] = 2, + [59285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(4578), 1, sym_identifier, - [57571] = 2, + [59292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2866), 1, - anon_sym_SEMI, - [57578] = 2, + ACTIONS(4580), 1, + sym_identifier, + [59299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4456), 1, + ACTIONS(4582), 1, aux_sym_preproc_if_token2, - [57585] = 2, - ACTIONS(2250), 1, + [59306] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4584), 1, anon_sym_LF, - ACTIONS(3165), 1, + [59313] = 2, + ACTIONS(3229), 1, sym_comment, - [57592] = 2, + ACTIONS(4586), 1, + anon_sym_LF, + [59320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4458), 1, + ACTIONS(4588), 1, sym_identifier, - [57599] = 2, + [59327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, - sym_identifier, - [57606] = 2, + ACTIONS(4590), 1, + anon_sym_LPAREN2, + [59334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4462), 1, - sym_primitive_type, - [57613] = 2, + ACTIONS(4592), 1, + sym_identifier, + [59341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2722), 1, - anon_sym_RPAREN, - [57620] = 2, + ACTIONS(4594), 1, + anon_sym_SEMI, + [59348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2828), 1, - anon_sym_RPAREN, - [57627] = 2, + ACTIONS(4596), 1, + anon_sym_COLON, + [59355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3898), 1, - anon_sym_RBRACE, - [57634] = 2, + ACTIONS(4598), 1, + aux_sym_preproc_if_token2, + [59362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4600), 1, anon_sym_RPAREN, - [57641] = 2, + [59369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2832), 1, + ACTIONS(2882), 1, anon_sym_RPAREN, - [57648] = 2, + [59376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(4602), 1, aux_sym_preproc_if_token2, - [57655] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LF, - [57662] = 2, + [59383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4470), 1, + ACTIONS(4604), 1, sym_identifier, - [57669] = 2, + [59390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4472), 1, - anon_sym_SEMI, - [57676] = 2, + ACTIONS(2770), 1, + anon_sym_RPAREN, + [59397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, + ACTIONS(4606), 1, sym_identifier, - [57683] = 2, + [59404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4608), 1, sym_identifier, - [57690] = 2, + [59411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4610), 1, sym_identifier, - [57697] = 2, - ACTIONS(3), 1, + [59418] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4480), 1, - sym_identifier, - [57704] = 2, + ACTIONS(4612), 1, + anon_sym_LF, + [59425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4482), 1, - anon_sym_RPAREN, - [57711] = 2, + ACTIONS(4614), 1, + anon_sym_LPAREN2, + [59432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4484), 1, - anon_sym_STAR, - [57718] = 2, + ACTIONS(4616), 1, + aux_sym_preproc_if_token2, + [59439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2880), 1, - anon_sym_SEMI, - [57725] = 2, + ACTIONS(2804), 1, + anon_sym_RPAREN, + [59446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(4618), 1, aux_sym_preproc_if_token2, - [57732] = 2, + [59453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, - aux_sym_preproc_if_token2, - [57739] = 2, + ACTIONS(2798), 1, + anon_sym_RPAREN, + [59460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4490), 1, - sym_identifier, - [57746] = 2, + ACTIONS(2892), 1, + anon_sym_RPAREN, + [59467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, - sym_identifier, - [57753] = 2, + ACTIONS(4620), 1, + anon_sym_RPAREN, + [59474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4494), 1, + ACTIONS(4622), 1, anon_sym_RPAREN, - [57760] = 2, + [59481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - aux_sym_preproc_if_token2, - [57767] = 2, + ACTIONS(4624), 1, + anon_sym_SEMI, + [59488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(4626), 1, anon_sym_while, - [57774] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4500), 1, - anon_sym_LF, - [57781] = 2, + [59495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - aux_sym_preproc_if_token2, - [57788] = 2, + ACTIONS(4628), 1, + anon_sym_RBRACK, + [59502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, - sym_identifier, - [57795] = 2, + ACTIONS(2739), 1, + anon_sym_SEMI, + [59509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4506), 1, - sym_identifier, - [57802] = 2, + ACTIONS(4630), 1, + anon_sym_RPAREN, + [59516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4508), 1, - aux_sym_preproc_if_token2, - [57809] = 2, + ACTIONS(4632), 1, + anon_sym_SEMI, + [59523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, + ACTIONS(2850), 1, anon_sym_RPAREN, - [57816] = 2, + [59530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4510), 1, - anon_sym_STAR, - [57823] = 2, + ACTIONS(4634), 1, + anon_sym_SEMI, + [59537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2842), 1, + ACTIONS(2766), 1, anon_sym_SEMI, - [57830] = 2, + [59544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4512), 1, - sym_identifier, - [57837] = 2, + ACTIONS(2782), 1, + anon_sym_SEMI, + [59551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4514), 1, - aux_sym_preproc_if_token2, - [57844] = 2, + ACTIONS(4636), 1, + anon_sym_RPAREN, + [59558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2834), 1, + ACTIONS(4638), 1, + anon_sym_COLON, + [59565] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2784), 1, anon_sym_SEMI, - [57851] = 2, + [59572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, - anon_sym_SQUOTE, - [57858] = 2, + ACTIONS(4640), 1, + sym_identifier, + [59579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2836), 1, + ACTIONS(2731), 1, anon_sym_SEMI, - [57865] = 2, + [59586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4518), 1, - aux_sym_preproc_if_token2, - [57872] = 2, + ACTIONS(4642), 1, + anon_sym_LPAREN2, + [59593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4520), 1, + ACTIONS(4644), 1, anon_sym_SEMI, - [57879] = 2, + [59600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2850), 1, + ACTIONS(2824), 1, anon_sym_SEMI, - [57886] = 2, - ACTIONS(3), 1, + [59607] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(2852), 1, - anon_sym_SEMI, - [57893] = 2, + ACTIONS(4646), 1, + anon_sym_LF, + [59614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4522), 1, - anon_sym_while, - [57900] = 2, + ACTIONS(4648), 1, + aux_sym_preproc_if_token2, + [59621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4524), 1, - anon_sym_LPAREN2, - [57907] = 2, + ACTIONS(2864), 1, + anon_sym_SEMI, + [59628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2840), 1, - anon_sym_RPAREN, - [57914] = 2, + ACTIONS(4650), 1, + sym_identifier, + [59635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, + ACTIONS(4652), 1, anon_sym_while, - [57921] = 2, + [59642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2826), 1, - anon_sym_RPAREN, - [57928] = 2, - ACTIONS(3165), 1, + ACTIONS(4654), 1, + anon_sym_LPAREN2, + [59649] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, + ACTIONS(4656), 1, + aux_sym_preproc_if_token2, + [59656] = 2, + ACTIONS(3229), 1, + sym_comment, + ACTIONS(4658), 1, anon_sym_LF, - [57935] = 2, + [59663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(4660), 1, anon_sym_SEMI, - [57942] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4530), 1, - sym_identifier, - [57949] = 2, + [59670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2824), 1, - anon_sym_RPAREN, - [57956] = 2, + ACTIONS(4662), 1, + aux_sym_preproc_if_token2, + [59677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4532), 1, - aux_sym_preproc_if_token2, - [57963] = 2, + ACTIONS(2852), 1, + anon_sym_SEMI, + [59684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4534), 1, + ACTIONS(4664), 1, aux_sym_preproc_if_token2, - [57970] = 2, + [59691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2912), 1, + ACTIONS(2822), 1, anon_sym_SEMI, - [57977] = 2, - ACTIONS(3), 1, + [59698] = 2, + ACTIONS(3229), 1, sym_comment, - ACTIONS(4536), 1, - aux_sym_preproc_if_token2, - [57984] = 2, + ACTIONS(4017), 1, + anon_sym_LF, + [59705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2808), 1, anon_sym_SEMI, - [57991] = 2, + [59712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4538), 1, - anon_sym_RPAREN, - [57998] = 2, + ACTIONS(4666), 1, + anon_sym_LPAREN2, + [59719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 1, - anon_sym_RPAREN, - [58005] = 2, + ACTIONS(4668), 1, + sym_identifier, + [59726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2878), 1, + ACTIONS(2737), 1, anon_sym_SEMI, - [58012] = 2, - ACTIONS(3165), 1, - sym_comment, - ACTIONS(4540), 1, - anon_sym_LF, - [58019] = 2, - ACTIONS(3165), 1, + [59733] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4542), 1, - anon_sym_LF, - [58026] = 2, - ACTIONS(3165), 1, + ACTIONS(4670), 1, + sym_identifier, + [59740] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4544), 1, - anon_sym_LF, - [58033] = 2, + ACTIONS(4672), 1, + anon_sym_RBRACK, + [59747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(2816), 1, anon_sym_RPAREN, - [58040] = 2, + [59754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4546), 1, + ACTIONS(2834), 1, + anon_sym_RPAREN, + [59761] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, anon_sym_while, - [58047] = 2, - ACTIONS(3165), 1, + [59768] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3864), 1, - anon_sym_LF, - [58054] = 2, + ACTIONS(4676), 1, + anon_sym_SEMI, + [59775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4548), 1, - ts_builtin_sym_end, - [58061] = 2, + ACTIONS(2842), 1, + anon_sym_RPAREN, + [59782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4678), 1, anon_sym_SEMI, - [58068] = 2, + [59789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2868), 1, + ACTIONS(4680), 1, anon_sym_SEMI, - [58075] = 2, + [59796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2802), 1, + ACTIONS(2778), 1, anon_sym_SEMI, - [58082] = 2, + [59803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4552), 1, - anon_sym_LPAREN2, - [58089] = 2, + ACTIONS(4682), 1, + aux_sym_preproc_if_token2, + [59810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2796), 1, + ACTIONS(2751), 1, anon_sym_SEMI, - [58096] = 2, + [59817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4554), 1, - anon_sym_LPAREN2, - [58103] = 2, + ACTIONS(4684), 1, + aux_sym_preproc_if_token2, + [59824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4556), 1, - sym_identifier, - [58110] = 2, + ACTIONS(4686), 1, + aux_sym_preproc_if_token2, + [59831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2784), 1, + ACTIONS(2735), 1, anon_sym_SEMI, - [58117] = 2, + [59838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4558), 1, + ACTIONS(4688), 1, anon_sym_SEMI, - [58124] = 2, + [59845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4560), 1, + ACTIONS(4690), 1, anon_sym_SEMI, - [58131] = 2, + [59852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4562), 1, - anon_sym_LPAREN2, - [58138] = 2, + ACTIONS(4692), 1, + anon_sym_COLON, + [59859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4564), 1, - sym_identifier, - [58145] = 2, + ACTIONS(4694), 1, + aux_sym_preproc_if_token2, + [59866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4566), 1, + ACTIONS(4696), 1, anon_sym_while, - [58152] = 2, + [59873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4568), 1, - anon_sym_COLON, - [58159] = 2, + ACTIONS(2870), 1, + anon_sym_RPAREN, + [59880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4570), 1, - anon_sym_RPAREN, - [58166] = 2, + ACTIONS(4698), 1, + aux_sym_preproc_if_token2, + [59887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4572), 1, + ACTIONS(4700), 1, anon_sym_LPAREN2, - [58173] = 2, + [59894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4574), 1, - anon_sym_COLON, - [58180] = 2, + ACTIONS(4702), 1, + aux_sym_preproc_if_token2, + [59901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2808), 1, + ACTIONS(4704), 1, anon_sym_RPAREN, - [58187] = 2, + [59908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2774), 1, + ACTIONS(2796), 1, anon_sym_SEMI, - [58194] = 2, + [59915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2858), 1, - anon_sym_SEMI, - [58201] = 2, + ACTIONS(2812), 1, + anon_sym_RPAREN, + [59922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4706), 1, anon_sym_LPAREN2, - [58208] = 2, - ACTIONS(3165), 1, + [59929] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4578), 1, - anon_sym_LF, - [58215] = 2, + ACTIONS(4708), 1, + anon_sym_SEMI, + [59936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, - anon_sym_LPAREN2, - [58222] = 2, + ACTIONS(2741), 1, + anon_sym_RPAREN, + [59943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2760), 1, + ACTIONS(2792), 1, anon_sym_SEMI, - [58229] = 2, + [59950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, - anon_sym_SEMI, - [58236] = 2, + ACTIONS(4710), 1, + sym_identifier, + [59957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4584), 1, - anon_sym_LPAREN2, - [58243] = 2, - ACTIONS(3165), 1, + ACTIONS(4712), 1, + aux_sym_preproc_if_token2, + [59964] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4108), 1, - anon_sym_LF, - [58250] = 2, + ACTIONS(4714), 1, + anon_sym_SEMI, + [59971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(2745), 1, anon_sym_SEMI, - [58257] = 2, + [59978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4716), 1, sym_identifier, - [58264] = 2, + [59985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4588), 1, + ACTIONS(4718), 1, anon_sym_LPAREN2, - [58271] = 2, + [59992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, + ACTIONS(4720), 1, anon_sym_LPAREN2, - [58278] = 2, + [59999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4722), 1, anon_sym_LPAREN2, }; @@ -111359,8 +112906,8 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(541)] = 1248, [SMALL_STATE(542)] = 1366, [SMALL_STATE(543)] = 1484, - [SMALL_STATE(544)] = 1602, - [SMALL_STATE(545)] = 1720, + [SMALL_STATE(544)] = 1608, + [SMALL_STATE(545)] = 1726, [SMALL_STATE(546)] = 1844, [SMALL_STATE(547)] = 1962, [SMALL_STATE(548)] = 2080, @@ -111369,12 +112916,12 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(551)] = 2431, [SMALL_STATE(552)] = 2546, [SMALL_STATE(553)] = 2658, - [SMALL_STATE(554)] = 2771, - [SMALL_STATE(555)] = 2884, - [SMALL_STATE(556)] = 2997, - [SMALL_STATE(557)] = 3110, - [SMALL_STATE(558)] = 3223, - [SMALL_STATE(559)] = 3336, + [SMALL_STATE(554)] = 2765, + [SMALL_STATE(555)] = 2878, + [SMALL_STATE(556)] = 2991, + [SMALL_STATE(557)] = 3104, + [SMALL_STATE(558)] = 3217, + [SMALL_STATE(559)] = 3330, [SMALL_STATE(560)] = 3443, [SMALL_STATE(561)] = 3556, [SMALL_STATE(562)] = 3669, @@ -111383,15 +112930,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(565)] = 3975, [SMALL_STATE(566)] = 4055, [SMALL_STATE(567)] = 4135, - [SMALL_STATE(568)] = 4217, - [SMALL_STATE(569)] = 4299, - [SMALL_STATE(570)] = 4379, - [SMALL_STATE(571)] = 4459, - [SMALL_STATE(572)] = 4541, + [SMALL_STATE(568)] = 4215, + [SMALL_STATE(569)] = 4295, + [SMALL_STATE(570)] = 4375, + [SMALL_STATE(571)] = 4457, + [SMALL_STATE(572)] = 4539, [SMALL_STATE(573)] = 4621, [SMALL_STATE(574)] = 4703, - [SMALL_STATE(575)] = 4780, - [SMALL_STATE(576)] = 4861, + [SMALL_STATE(575)] = 4808, + [SMALL_STATE(576)] = 4889, [SMALL_STATE(577)] = 4966, [SMALL_STATE(578)] = 5069, [SMALL_STATE(579)] = 5172, @@ -111401,20 +112948,20 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(583)] = 5584, [SMALL_STATE(584)] = 5687, [SMALL_STATE(585)] = 5790, - [SMALL_STATE(586)] = 5886, - [SMALL_STATE(587)] = 5986, - [SMALL_STATE(588)] = 6086, - [SMALL_STATE(589)] = 6186, - [SMALL_STATE(590)] = 6286, - [SMALL_STATE(591)] = 6386, - [SMALL_STATE(592)] = 6486, - [SMALL_STATE(593)] = 6586, - [SMALL_STATE(594)] = 6686, - [SMALL_STATE(595)] = 6786, - [SMALL_STATE(596)] = 6894, - [SMALL_STATE(597)] = 6994, - [SMALL_STATE(598)] = 7094, - [SMALL_STATE(599)] = 7194, + [SMALL_STATE(586)] = 5890, + [SMALL_STATE(587)] = 5990, + [SMALL_STATE(588)] = 6090, + [SMALL_STATE(589)] = 6190, + [SMALL_STATE(590)] = 6290, + [SMALL_STATE(591)] = 6390, + [SMALL_STATE(592)] = 6490, + [SMALL_STATE(593)] = 6590, + [SMALL_STATE(594)] = 6690, + [SMALL_STATE(595)] = 6790, + [SMALL_STATE(596)] = 6890, + [SMALL_STATE(597)] = 6990, + [SMALL_STATE(598)] = 7090, + [SMALL_STATE(599)] = 7198, [SMALL_STATE(600)] = 7294, [SMALL_STATE(601)] = 7394, [SMALL_STATE(602)] = 7494, @@ -111422,1337 +112969,1398 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(604)] = 7694, [SMALL_STATE(605)] = 7794, [SMALL_STATE(606)] = 7894, - [SMALL_STATE(607)] = 7996, - [SMALL_STATE(608)] = 8096, - [SMALL_STATE(609)] = 8196, - [SMALL_STATE(610)] = 8296, - [SMALL_STATE(611)] = 8398, - [SMALL_STATE(612)] = 8498, - [SMALL_STATE(613)] = 8598, - [SMALL_STATE(614)] = 8698, - [SMALL_STATE(615)] = 8798, - [SMALL_STATE(616)] = 8900, - [SMALL_STATE(617)] = 9000, - [SMALL_STATE(618)] = 9100, - [SMALL_STATE(619)] = 9200, - [SMALL_STATE(620)] = 9300, - [SMALL_STATE(621)] = 9400, - [SMALL_STATE(622)] = 9500, - [SMALL_STATE(623)] = 9600, - [SMALL_STATE(624)] = 9700, - [SMALL_STATE(625)] = 9800, - [SMALL_STATE(626)] = 9900, - [SMALL_STATE(627)] = 10000, - [SMALL_STATE(628)] = 10102, - [SMALL_STATE(629)] = 10202, - [SMALL_STATE(630)] = 10304, - [SMALL_STATE(631)] = 10404, - [SMALL_STATE(632)] = 10500, - [SMALL_STATE(633)] = 10600, - [SMALL_STATE(634)] = 10700, - [SMALL_STATE(635)] = 10800, - [SMALL_STATE(636)] = 10900, - [SMALL_STATE(637)] = 11000, - [SMALL_STATE(638)] = 11100, - [SMALL_STATE(639)] = 11200, - [SMALL_STATE(640)] = 11300, - [SMALL_STATE(641)] = 11400, - [SMALL_STATE(642)] = 11500, - [SMALL_STATE(643)] = 11600, - [SMALL_STATE(644)] = 11700, - [SMALL_STATE(645)] = 11800, - [SMALL_STATE(646)] = 11900, - [SMALL_STATE(647)] = 12000, - [SMALL_STATE(648)] = 12100, - [SMALL_STATE(649)] = 12200, - [SMALL_STATE(650)] = 12300, - [SMALL_STATE(651)] = 12400, - [SMALL_STATE(652)] = 12500, - [SMALL_STATE(653)] = 12600, - [SMALL_STATE(654)] = 12700, - [SMALL_STATE(655)] = 12800, - [SMALL_STATE(656)] = 12900, - [SMALL_STATE(657)] = 13000, - [SMALL_STATE(658)] = 13093, - [SMALL_STATE(659)] = 13186, - [SMALL_STATE(660)] = 13279, - [SMALL_STATE(661)] = 13376, - [SMALL_STATE(662)] = 13473, - [SMALL_STATE(663)] = 13570, - [SMALL_STATE(664)] = 13663, - [SMALL_STATE(665)] = 13760, - [SMALL_STATE(666)] = 13857, - [SMALL_STATE(667)] = 13950, - [SMALL_STATE(668)] = 14047, - [SMALL_STATE(669)] = 14140, - [SMALL_STATE(670)] = 14233, - [SMALL_STATE(671)] = 14326, - [SMALL_STATE(672)] = 14419, - [SMALL_STATE(673)] = 14512, - [SMALL_STATE(674)] = 14609, - [SMALL_STATE(675)] = 14703, - [SMALL_STATE(676)] = 14797, - [SMALL_STATE(677)] = 14887, - [SMALL_STATE(678)] = 14981, - [SMALL_STATE(679)] = 15071, - [SMALL_STATE(680)] = 15165, - [SMALL_STATE(681)] = 15259, - [SMALL_STATE(682)] = 15349, - [SMALL_STATE(683)] = 15443, - [SMALL_STATE(684)] = 15537, - [SMALL_STATE(685)] = 15631, - [SMALL_STATE(686)] = 15725, - [SMALL_STATE(687)] = 15815, - [SMALL_STATE(688)] = 15905, - [SMALL_STATE(689)] = 15999, - [SMALL_STATE(690)] = 16093, - [SMALL_STATE(691)] = 16187, - [SMALL_STATE(692)] = 16281, - [SMALL_STATE(693)] = 16375, - [SMALL_STATE(694)] = 16469, - [SMALL_STATE(695)] = 16563, - [SMALL_STATE(696)] = 16657, - [SMALL_STATE(697)] = 16751, - [SMALL_STATE(698)] = 16845, - [SMALL_STATE(699)] = 16939, - [SMALL_STATE(700)] = 17033, - [SMALL_STATE(701)] = 17127, - [SMALL_STATE(702)] = 17221, - [SMALL_STATE(703)] = 17311, - [SMALL_STATE(704)] = 17401, - [SMALL_STATE(705)] = 17491, - [SMALL_STATE(706)] = 17585, - [SMALL_STATE(707)] = 17675, - [SMALL_STATE(708)] = 17769, - [SMALL_STATE(709)] = 17859, - [SMALL_STATE(710)] = 17953, - [SMALL_STATE(711)] = 18047, - [SMALL_STATE(712)] = 18137, - [SMALL_STATE(713)] = 18231, - [SMALL_STATE(714)] = 18325, - [SMALL_STATE(715)] = 18419, - [SMALL_STATE(716)] = 18509, - [SMALL_STATE(717)] = 18603, - [SMALL_STATE(718)] = 18697, - [SMALL_STATE(719)] = 18791, - [SMALL_STATE(720)] = 18885, - [SMALL_STATE(721)] = 18975, - [SMALL_STATE(722)] = 19069, - [SMALL_STATE(723)] = 19163, - [SMALL_STATE(724)] = 19253, - [SMALL_STATE(725)] = 19347, - [SMALL_STATE(726)] = 19441, - [SMALL_STATE(727)] = 19535, - [SMALL_STATE(728)] = 19625, - [SMALL_STATE(729)] = 19719, - [SMALL_STATE(730)] = 19813, - [SMALL_STATE(731)] = 19907, - [SMALL_STATE(732)] = 19997, - [SMALL_STATE(733)] = 20087, - [SMALL_STATE(734)] = 20181, - [SMALL_STATE(735)] = 20271, - [SMALL_STATE(736)] = 20361, - [SMALL_STATE(737)] = 20455, - [SMALL_STATE(738)] = 20549, - [SMALL_STATE(739)] = 20639, - [SMALL_STATE(740)] = 20733, - [SMALL_STATE(741)] = 20823, - [SMALL_STATE(742)] = 20913, - [SMALL_STATE(743)] = 21003, - [SMALL_STATE(744)] = 21093, - [SMALL_STATE(745)] = 21183, - [SMALL_STATE(746)] = 21273, - [SMALL_STATE(747)] = 21363, - [SMALL_STATE(748)] = 21453, - [SMALL_STATE(749)] = 21543, - [SMALL_STATE(750)] = 21633, - [SMALL_STATE(751)] = 21727, - [SMALL_STATE(752)] = 21817, - [SMALL_STATE(753)] = 21907, - [SMALL_STATE(754)] = 21971, - [SMALL_STATE(755)] = 22035, - [SMALL_STATE(756)] = 22099, - [SMALL_STATE(757)] = 22155, - [SMALL_STATE(758)] = 22211, - [SMALL_STATE(759)] = 22279, - [SMALL_STATE(760)] = 22366, - [SMALL_STATE(761)] = 22418, - [SMALL_STATE(762)] = 22470, - [SMALL_STATE(763)] = 22554, - [SMALL_STATE(764)] = 22606, - [SMALL_STATE(765)] = 22657, - [SMALL_STATE(766)] = 22737, - [SMALL_STATE(767)] = 22797, - [SMALL_STATE(768)] = 22877, - [SMALL_STATE(769)] = 22961, - [SMALL_STATE(770)] = 23027, - [SMALL_STATE(771)] = 23077, - [SMALL_STATE(772)] = 23127, - [SMALL_STATE(773)] = 23177, - [SMALL_STATE(774)] = 23227, - [SMALL_STATE(775)] = 23277, - [SMALL_STATE(776)] = 23327, - [SMALL_STATE(777)] = 23377, - [SMALL_STATE(778)] = 23427, - [SMALL_STATE(779)] = 23477, - [SMALL_STATE(780)] = 23527, - [SMALL_STATE(781)] = 23611, - [SMALL_STATE(782)] = 23661, - [SMALL_STATE(783)] = 23741, - [SMALL_STATE(784)] = 23791, - [SMALL_STATE(785)] = 23841, - [SMALL_STATE(786)] = 23891, - [SMALL_STATE(787)] = 23941, - [SMALL_STATE(788)] = 24001, - [SMALL_STATE(789)] = 24081, - [SMALL_STATE(790)] = 24145, - [SMALL_STATE(791)] = 24195, - [SMALL_STATE(792)] = 24245, - [SMALL_STATE(793)] = 24311, - [SMALL_STATE(794)] = 24381, - [SMALL_STATE(795)] = 24431, - [SMALL_STATE(796)] = 24481, - [SMALL_STATE(797)] = 24553, - [SMALL_STATE(798)] = 24613, - [SMALL_STATE(799)] = 24687, - [SMALL_STATE(800)] = 24763, - [SMALL_STATE(801)] = 24841, - [SMALL_STATE(802)] = 24921, - [SMALL_STATE(803)] = 24983, - [SMALL_STATE(804)] = 25033, - [SMALL_STATE(805)] = 25113, - [SMALL_STATE(806)] = 25195, - [SMALL_STATE(807)] = 25245, - [SMALL_STATE(808)] = 25295, - [SMALL_STATE(809)] = 25345, - [SMALL_STATE(810)] = 25395, - [SMALL_STATE(811)] = 25445, - [SMALL_STATE(812)] = 25505, - [SMALL_STATE(813)] = 25555, - [SMALL_STATE(814)] = 25613, - [SMALL_STATE(815)] = 25663, - [SMALL_STATE(816)] = 25713, - [SMALL_STATE(817)] = 25766, - [SMALL_STATE(818)] = 25843, - [SMALL_STATE(819)] = 25896, - [SMALL_STATE(820)] = 25973, - [SMALL_STATE(821)] = 26033, - [SMALL_STATE(822)] = 26107, - [SMALL_STATE(823)] = 26160, - [SMALL_STATE(824)] = 26207, - [SMALL_STATE(825)] = 26260, - [SMALL_STATE(826)] = 26313, - [SMALL_STATE(827)] = 26366, - [SMALL_STATE(828)] = 26419, - [SMALL_STATE(829)] = 26472, - [SMALL_STATE(830)] = 26540, - [SMALL_STATE(831)] = 26596, - [SMALL_STATE(832)] = 26668, - [SMALL_STATE(833)] = 26746, - [SMALL_STATE(834)] = 26826, - [SMALL_STATE(835)] = 26880, + [SMALL_STATE(607)] = 7990, + [SMALL_STATE(608)] = 8090, + [SMALL_STATE(609)] = 8190, + [SMALL_STATE(610)] = 8290, + [SMALL_STATE(611)] = 8390, + [SMALL_STATE(612)] = 8490, + [SMALL_STATE(613)] = 8590, + [SMALL_STATE(614)] = 8690, + [SMALL_STATE(615)] = 8790, + [SMALL_STATE(616)] = 8890, + [SMALL_STATE(617)] = 8990, + [SMALL_STATE(618)] = 9090, + [SMALL_STATE(619)] = 9190, + [SMALL_STATE(620)] = 9290, + [SMALL_STATE(621)] = 9390, + [SMALL_STATE(622)] = 9490, + [SMALL_STATE(623)] = 9590, + [SMALL_STATE(624)] = 9690, + [SMALL_STATE(625)] = 9790, + [SMALL_STATE(626)] = 9890, + [SMALL_STATE(627)] = 9990, + [SMALL_STATE(628)] = 10090, + [SMALL_STATE(629)] = 10190, + [SMALL_STATE(630)] = 10290, + [SMALL_STATE(631)] = 10390, + [SMALL_STATE(632)] = 10490, + [SMALL_STATE(633)] = 10590, + [SMALL_STATE(634)] = 10690, + [SMALL_STATE(635)] = 10790, + [SMALL_STATE(636)] = 10890, + [SMALL_STATE(637)] = 10990, + [SMALL_STATE(638)] = 11090, + [SMALL_STATE(639)] = 11190, + [SMALL_STATE(640)] = 11290, + [SMALL_STATE(641)] = 11390, + [SMALL_STATE(642)] = 11490, + [SMALL_STATE(643)] = 11590, + [SMALL_STATE(644)] = 11690, + [SMALL_STATE(645)] = 11790, + [SMALL_STATE(646)] = 11890, + [SMALL_STATE(647)] = 11990, + [SMALL_STATE(648)] = 12090, + [SMALL_STATE(649)] = 12190, + [SMALL_STATE(650)] = 12290, + [SMALL_STATE(651)] = 12390, + [SMALL_STATE(652)] = 12490, + [SMALL_STATE(653)] = 12587, + [SMALL_STATE(654)] = 12684, + [SMALL_STATE(655)] = 12781, + [SMALL_STATE(656)] = 12878, + [SMALL_STATE(657)] = 12971, + [SMALL_STATE(658)] = 13068, + [SMALL_STATE(659)] = 13161, + [SMALL_STATE(660)] = 13254, + [SMALL_STATE(661)] = 13347, + [SMALL_STATE(662)] = 13440, + [SMALL_STATE(663)] = 13533, + [SMALL_STATE(664)] = 13630, + [SMALL_STATE(665)] = 13727, + [SMALL_STATE(666)] = 13820, + [SMALL_STATE(667)] = 13913, + [SMALL_STATE(668)] = 14006, + [SMALL_STATE(669)] = 14099, + [SMALL_STATE(670)] = 14193, + [SMALL_STATE(671)] = 14283, + [SMALL_STATE(672)] = 14377, + [SMALL_STATE(673)] = 14471, + [SMALL_STATE(674)] = 14565, + [SMALL_STATE(675)] = 14659, + [SMALL_STATE(676)] = 14753, + [SMALL_STATE(677)] = 14847, + [SMALL_STATE(678)] = 14943, + [SMALL_STATE(679)] = 15037, + [SMALL_STATE(680)] = 15131, + [SMALL_STATE(681)] = 15227, + [SMALL_STATE(682)] = 15317, + [SMALL_STATE(683)] = 15407, + [SMALL_STATE(684)] = 15497, + [SMALL_STATE(685)] = 15587, + [SMALL_STATE(686)] = 15677, + [SMALL_STATE(687)] = 15771, + [SMALL_STATE(688)] = 15861, + [SMALL_STATE(689)] = 15951, + [SMALL_STATE(690)] = 16041, + [SMALL_STATE(691)] = 16131, + [SMALL_STATE(692)] = 16225, + [SMALL_STATE(693)] = 16315, + [SMALL_STATE(694)] = 16409, + [SMALL_STATE(695)] = 16499, + [SMALL_STATE(696)] = 16589, + [SMALL_STATE(697)] = 16679, + [SMALL_STATE(698)] = 16773, + [SMALL_STATE(699)] = 16863, + [SMALL_STATE(700)] = 16957, + [SMALL_STATE(701)] = 17051, + [SMALL_STATE(702)] = 17145, + [SMALL_STATE(703)] = 17239, + [SMALL_STATE(704)] = 17333, + [SMALL_STATE(705)] = 17427, + [SMALL_STATE(706)] = 17521, + [SMALL_STATE(707)] = 17615, + [SMALL_STATE(708)] = 17705, + [SMALL_STATE(709)] = 17799, + [SMALL_STATE(710)] = 17893, + [SMALL_STATE(711)] = 17987, + [SMALL_STATE(712)] = 18081, + [SMALL_STATE(713)] = 18175, + [SMALL_STATE(714)] = 18269, + [SMALL_STATE(715)] = 18359, + [SMALL_STATE(716)] = 18453, + [SMALL_STATE(717)] = 18543, + [SMALL_STATE(718)] = 18639, + [SMALL_STATE(719)] = 18733, + [SMALL_STATE(720)] = 18823, + [SMALL_STATE(721)] = 18913, + [SMALL_STATE(722)] = 19003, + [SMALL_STATE(723)] = 19097, + [SMALL_STATE(724)] = 19191, + [SMALL_STATE(725)] = 19285, + [SMALL_STATE(726)] = 19375, + [SMALL_STATE(727)] = 19469, + [SMALL_STATE(728)] = 19559, + [SMALL_STATE(729)] = 19653, + [SMALL_STATE(730)] = 19743, + [SMALL_STATE(731)] = 19833, + [SMALL_STATE(732)] = 19927, + [SMALL_STATE(733)] = 20021, + [SMALL_STATE(734)] = 20115, + [SMALL_STATE(735)] = 20209, + [SMALL_STATE(736)] = 20299, + [SMALL_STATE(737)] = 20393, + [SMALL_STATE(738)] = 20483, + [SMALL_STATE(739)] = 20577, + [SMALL_STATE(740)] = 20671, + [SMALL_STATE(741)] = 20761, + [SMALL_STATE(742)] = 20855, + [SMALL_STATE(743)] = 20949, + [SMALL_STATE(744)] = 21039, + [SMALL_STATE(745)] = 21129, + [SMALL_STATE(746)] = 21223, + [SMALL_STATE(747)] = 21319, + [SMALL_STATE(748)] = 21413, + [SMALL_STATE(749)] = 21509, + [SMALL_STATE(750)] = 21599, + [SMALL_STATE(751)] = 21693, + [SMALL_STATE(752)] = 21783, + [SMALL_STATE(753)] = 21877, + [SMALL_STATE(754)] = 21942, + [SMALL_STATE(755)] = 22007, + [SMALL_STATE(756)] = 22072, + [SMALL_STATE(757)] = 22129, + [SMALL_STATE(758)] = 22186, + [SMALL_STATE(759)] = 22254, + [SMALL_STATE(760)] = 22341, + [SMALL_STATE(761)] = 22425, + [SMALL_STATE(762)] = 22477, + [SMALL_STATE(763)] = 22529, + [SMALL_STATE(764)] = 22581, + [SMALL_STATE(765)] = 22633, + [SMALL_STATE(766)] = 22684, + [SMALL_STATE(767)] = 22735, + [SMALL_STATE(768)] = 22798, + [SMALL_STATE(769)] = 22883, + [SMALL_STATE(770)] = 22960, + [SMALL_STATE(771)] = 23011, + [SMALL_STATE(772)] = 23062, + [SMALL_STATE(773)] = 23113, + [SMALL_STATE(774)] = 23164, + [SMALL_STATE(775)] = 23225, + [SMALL_STATE(776)] = 23276, + [SMALL_STATE(777)] = 23327, + [SMALL_STATE(778)] = 23388, + [SMALL_STATE(779)] = 23449, + [SMALL_STATE(780)] = 23500, + [SMALL_STATE(781)] = 23551, + [SMALL_STATE(782)] = 23602, + [SMALL_STATE(783)] = 23685, + [SMALL_STATE(784)] = 23736, + [SMALL_STATE(785)] = 23787, + [SMALL_STATE(786)] = 23838, + [SMALL_STATE(787)] = 23913, + [SMALL_STATE(788)] = 23972, + [SMALL_STATE(789)] = 24053, + [SMALL_STATE(790)] = 24104, + [SMALL_STATE(791)] = 24171, + [SMALL_STATE(792)] = 24222, + [SMALL_STATE(793)] = 24301, + [SMALL_STATE(794)] = 24386, + [SMALL_STATE(795)] = 24437, + [SMALL_STATE(796)] = 24488, + [SMALL_STATE(797)] = 24539, + [SMALL_STATE(798)] = 24590, + [SMALL_STATE(799)] = 24663, + [SMALL_STATE(800)] = 24714, + [SMALL_STATE(801)] = 24765, + [SMALL_STATE(802)] = 24816, + [SMALL_STATE(803)] = 24867, + [SMALL_STATE(804)] = 24938, + [SMALL_STATE(805)] = 24989, + [SMALL_STATE(806)] = 25040, + [SMALL_STATE(807)] = 25107, + [SMALL_STATE(808)] = 25172, + [SMALL_STATE(809)] = 25223, + [SMALL_STATE(810)] = 25284, + [SMALL_STATE(811)] = 25335, + [SMALL_STATE(812)] = 25389, + [SMALL_STATE(813)] = 25466, + [SMALL_STATE(814)] = 25519, + [SMALL_STATE(815)] = 25596, + [SMALL_STATE(816)] = 25673, + [SMALL_STATE(817)] = 25750, + [SMALL_STATE(818)] = 25827, + [SMALL_STATE(819)] = 25887, + [SMALL_STATE(820)] = 25961, + [SMALL_STATE(821)] = 26014, + [SMALL_STATE(822)] = 26061, + [SMALL_STATE(823)] = 26114, + [SMALL_STATE(824)] = 26167, + [SMALL_STATE(825)] = 26220, + [SMALL_STATE(826)] = 26273, + [SMALL_STATE(827)] = 26326, + [SMALL_STATE(828)] = 26388, + [SMALL_STATE(829)] = 26466, + [SMALL_STATE(830)] = 26536, + [SMALL_STATE(831)] = 26608, + [SMALL_STATE(832)] = 26682, + [SMALL_STATE(833)] = 26738, + [SMALL_STATE(834)] = 26814, + [SMALL_STATE(835)] = 26894, [SMALL_STATE(836)] = 26960, - [SMALL_STATE(837)] = 27034, - [SMALL_STATE(838)] = 27090, - [SMALL_STATE(839)] = 27146, - [SMALL_STATE(840)] = 27224, - [SMALL_STATE(841)] = 27280, + [SMALL_STATE(837)] = 27018, + [SMALL_STATE(838)] = 27074, + [SMALL_STATE(839)] = 27142, + [SMALL_STATE(840)] = 27222, + [SMALL_STATE(841)] = 27300, [SMALL_STATE(842)] = 27356, - [SMALL_STATE(843)] = 27418, - [SMALL_STATE(844)] = 27484, - [SMALL_STATE(845)] = 27546, - [SMALL_STATE(846)] = 27616, - [SMALL_STATE(847)] = 27676, - [SMALL_STATE(848)] = 27734, - [SMALL_STATE(849)] = 27783, - [SMALL_STATE(850)] = 27828, - [SMALL_STATE(851)] = 27873, - [SMALL_STATE(852)] = 27918, - [SMALL_STATE(853)] = 27962, - [SMALL_STATE(854)] = 28006, - [SMALL_STATE(855)] = 28050, - [SMALL_STATE(856)] = 28094, - [SMALL_STATE(857)] = 28138, - [SMALL_STATE(858)] = 28182, - [SMALL_STATE(859)] = 28226, - [SMALL_STATE(860)] = 28270, - [SMALL_STATE(861)] = 28314, - [SMALL_STATE(862)] = 28358, - [SMALL_STATE(863)] = 28402, - [SMALL_STATE(864)] = 28446, - [SMALL_STATE(865)] = 28490, - [SMALL_STATE(866)] = 28534, - [SMALL_STATE(867)] = 28578, - [SMALL_STATE(868)] = 28622, - [SMALL_STATE(869)] = 28666, - [SMALL_STATE(870)] = 28710, - [SMALL_STATE(871)] = 28754, - [SMALL_STATE(872)] = 28797, - [SMALL_STATE(873)] = 28839, - [SMALL_STATE(874)] = 28881, - [SMALL_STATE(875)] = 28923, - [SMALL_STATE(876)] = 28965, - [SMALL_STATE(877)] = 29007, - [SMALL_STATE(878)] = 29049, - [SMALL_STATE(879)] = 29091, - [SMALL_STATE(880)] = 29133, - [SMALL_STATE(881)] = 29175, - [SMALL_STATE(882)] = 29217, - [SMALL_STATE(883)] = 29259, - [SMALL_STATE(884)] = 29301, - [SMALL_STATE(885)] = 29343, - [SMALL_STATE(886)] = 29385, - [SMALL_STATE(887)] = 29427, - [SMALL_STATE(888)] = 29469, - [SMALL_STATE(889)] = 29511, - [SMALL_STATE(890)] = 29553, - [SMALL_STATE(891)] = 29595, - [SMALL_STATE(892)] = 29637, - [SMALL_STATE(893)] = 29679, - [SMALL_STATE(894)] = 29720, - [SMALL_STATE(895)] = 29761, - [SMALL_STATE(896)] = 29802, - [SMALL_STATE(897)] = 29843, - [SMALL_STATE(898)] = 29884, - [SMALL_STATE(899)] = 29924, - [SMALL_STATE(900)] = 29964, - [SMALL_STATE(901)] = 30008, - [SMALL_STATE(902)] = 30048, - [SMALL_STATE(903)] = 30088, - [SMALL_STATE(904)] = 30128, - [SMALL_STATE(905)] = 30180, - [SMALL_STATE(906)] = 30220, - [SMALL_STATE(907)] = 30260, - [SMALL_STATE(908)] = 30300, - [SMALL_STATE(909)] = 30340, - [SMALL_STATE(910)] = 30384, - [SMALL_STATE(911)] = 30424, - [SMALL_STATE(912)] = 30464, - [SMALL_STATE(913)] = 30504, - [SMALL_STATE(914)] = 30556, - [SMALL_STATE(915)] = 30596, - [SMALL_STATE(916)] = 30640, - [SMALL_STATE(917)] = 30680, - [SMALL_STATE(918)] = 30720, - [SMALL_STATE(919)] = 30760, - [SMALL_STATE(920)] = 30812, - [SMALL_STATE(921)] = 30852, - [SMALL_STATE(922)] = 30892, - [SMALL_STATE(923)] = 30932, - [SMALL_STATE(924)] = 30972, - [SMALL_STATE(925)] = 31012, - [SMALL_STATE(926)] = 31052, - [SMALL_STATE(927)] = 31096, - [SMALL_STATE(928)] = 31136, - [SMALL_STATE(929)] = 31176, - [SMALL_STATE(930)] = 31216, - [SMALL_STATE(931)] = 31256, - [SMALL_STATE(932)] = 31296, - [SMALL_STATE(933)] = 31336, - [SMALL_STATE(934)] = 31376, - [SMALL_STATE(935)] = 31416, - [SMALL_STATE(936)] = 31456, - [SMALL_STATE(937)] = 31496, - [SMALL_STATE(938)] = 31536, - [SMALL_STATE(939)] = 31588, - [SMALL_STATE(940)] = 31628, - [SMALL_STATE(941)] = 31668, - [SMALL_STATE(942)] = 31708, - [SMALL_STATE(943)] = 31748, - [SMALL_STATE(944)] = 31792, - [SMALL_STATE(945)] = 31836, - [SMALL_STATE(946)] = 31876, - [SMALL_STATE(947)] = 31933, - [SMALL_STATE(948)] = 31996, - [SMALL_STATE(949)] = 32069, - [SMALL_STATE(950)] = 32138, - [SMALL_STATE(951)] = 32199, - [SMALL_STATE(952)] = 32254, - [SMALL_STATE(953)] = 32327, - [SMALL_STATE(954)] = 32398, - [SMALL_STATE(955)] = 32451, - [SMALL_STATE(956)] = 32518, - [SMALL_STATE(957)] = 32585, - [SMALL_STATE(958)] = 32650, - [SMALL_STATE(959)] = 32697, - [SMALL_STATE(960)] = 32754, - [SMALL_STATE(961)] = 32810, - [SMALL_STATE(962)] = 32872, - [SMALL_STATE(963)] = 32928, - [SMALL_STATE(964)] = 32984, - [SMALL_STATE(965)] = 33040, - [SMALL_STATE(966)] = 33096, - [SMALL_STATE(967)] = 33155, - [SMALL_STATE(968)] = 33214, - [SMALL_STATE(969)] = 33287, - [SMALL_STATE(970)] = 33346, - [SMALL_STATE(971)] = 33421, - [SMALL_STATE(972)] = 33496, - [SMALL_STATE(973)] = 33555, - [SMALL_STATE(974)] = 33608, - [SMALL_STATE(975)] = 33667, - [SMALL_STATE(976)] = 33720, - [SMALL_STATE(977)] = 33779, - [SMALL_STATE(978)] = 33854, - [SMALL_STATE(979)] = 33913, - [SMALL_STATE(980)] = 33966, - [SMALL_STATE(981)] = 34041, - [SMALL_STATE(982)] = 34100, - [SMALL_STATE(983)] = 34159, - [SMALL_STATE(984)] = 34218, - [SMALL_STATE(985)] = 34277, - [SMALL_STATE(986)] = 34336, - [SMALL_STATE(987)] = 34389, - [SMALL_STATE(988)] = 34461, - [SMALL_STATE(989)] = 34533, - [SMALL_STATE(990)] = 34605, - [SMALL_STATE(991)] = 34677, - [SMALL_STATE(992)] = 34749, - [SMALL_STATE(993)] = 34819, - [SMALL_STATE(994)] = 34891, - [SMALL_STATE(995)] = 34939, - [SMALL_STATE(996)] = 35011, - [SMALL_STATE(997)] = 35081, - [SMALL_STATE(998)] = 35153, - [SMALL_STATE(999)] = 35225, - [SMALL_STATE(1000)] = 35295, - [SMALL_STATE(1001)] = 35367, - [SMALL_STATE(1002)] = 35407, - [SMALL_STATE(1003)] = 35479, - [SMALL_STATE(1004)] = 35551, - [SMALL_STATE(1005)] = 35623, - [SMALL_STATE(1006)] = 35695, - [SMALL_STATE(1007)] = 35767, - [SMALL_STATE(1008)] = 35839, - [SMALL_STATE(1009)] = 35887, - [SMALL_STATE(1010)] = 35959, - [SMALL_STATE(1011)] = 36031, - [SMALL_STATE(1012)] = 36101, - [SMALL_STATE(1013)] = 36173, - [SMALL_STATE(1014)] = 36245, - [SMALL_STATE(1015)] = 36317, - [SMALL_STATE(1016)] = 36389, - [SMALL_STATE(1017)] = 36461, - [SMALL_STATE(1018)] = 36533, - [SMALL_STATE(1019)] = 36605, - [SMALL_STATE(1020)] = 36653, - [SMALL_STATE(1021)] = 36701, - [SMALL_STATE(1022)] = 36773, - [SMALL_STATE(1023)] = 36845, - [SMALL_STATE(1024)] = 36917, - [SMALL_STATE(1025)] = 36989, - [SMALL_STATE(1026)] = 37061, - [SMALL_STATE(1027)] = 37133, - [SMALL_STATE(1028)] = 37205, - [SMALL_STATE(1029)] = 37253, - [SMALL_STATE(1030)] = 37325, - [SMALL_STATE(1031)] = 37397, - [SMALL_STATE(1032)] = 37469, - [SMALL_STATE(1033)] = 37539, - [SMALL_STATE(1034)] = 37611, - [SMALL_STATE(1035)] = 37683, - [SMALL_STATE(1036)] = 37755, - [SMALL_STATE(1037)] = 37803, - [SMALL_STATE(1038)] = 37875, - [SMALL_STATE(1039)] = 37947, - [SMALL_STATE(1040)] = 38019, - [SMALL_STATE(1041)] = 38091, - [SMALL_STATE(1042)] = 38163, - [SMALL_STATE(1043)] = 38235, - [SMALL_STATE(1044)] = 38307, - [SMALL_STATE(1045)] = 38379, - [SMALL_STATE(1046)] = 38451, - [SMALL_STATE(1047)] = 38523, - [SMALL_STATE(1048)] = 38595, - [SMALL_STATE(1049)] = 38667, - [SMALL_STATE(1050)] = 38739, - [SMALL_STATE(1051)] = 38809, - [SMALL_STATE(1052)] = 38881, - [SMALL_STATE(1053)] = 38953, - [SMALL_STATE(1054)] = 39025, - [SMALL_STATE(1055)] = 39097, - [SMALL_STATE(1056)] = 39169, - [SMALL_STATE(1057)] = 39241, - [SMALL_STATE(1058)] = 39313, - [SMALL_STATE(1059)] = 39385, - [SMALL_STATE(1060)] = 39425, - [SMALL_STATE(1061)] = 39497, - [SMALL_STATE(1062)] = 39569, - [SMALL_STATE(1063)] = 39641, - [SMALL_STATE(1064)] = 39713, - [SMALL_STATE(1065)] = 39753, - [SMALL_STATE(1066)] = 39825, - [SMALL_STATE(1067)] = 39865, - [SMALL_STATE(1068)] = 39907, - [SMALL_STATE(1069)] = 39979, - [SMALL_STATE(1070)] = 40051, - [SMALL_STATE(1071)] = 40123, - [SMALL_STATE(1072)] = 40195, - [SMALL_STATE(1073)] = 40267, - [SMALL_STATE(1074)] = 40339, - [SMALL_STATE(1075)] = 40409, - [SMALL_STATE(1076)] = 40481, - [SMALL_STATE(1077)] = 40553, - [SMALL_STATE(1078)] = 40593, - [SMALL_STATE(1079)] = 40650, - [SMALL_STATE(1080)] = 40703, - [SMALL_STATE(1081)] = 40772, - [SMALL_STATE(1082)] = 40841, - [SMALL_STATE(1083)] = 40910, - [SMALL_STATE(1084)] = 40979, - [SMALL_STATE(1085)] = 41032, - [SMALL_STATE(1086)] = 41101, - [SMALL_STATE(1087)] = 41170, - [SMALL_STATE(1088)] = 41239, - [SMALL_STATE(1089)] = 41290, - [SMALL_STATE(1090)] = 41359, - [SMALL_STATE(1091)] = 41428, - [SMALL_STATE(1092)] = 41497, - [SMALL_STATE(1093)] = 41552, - [SMALL_STATE(1094)] = 41621, - [SMALL_STATE(1095)] = 41690, - [SMALL_STATE(1096)] = 41759, - [SMALL_STATE(1097)] = 41828, - [SMALL_STATE(1098)] = 41887, - [SMALL_STATE(1099)] = 41942, - [SMALL_STATE(1100)] = 42003, - [SMALL_STATE(1101)] = 42072, - [SMALL_STATE(1102)] = 42135, - [SMALL_STATE(1103)] = 42198, - [SMALL_STATE(1104)] = 42267, - [SMALL_STATE(1105)] = 42336, - [SMALL_STATE(1106)] = 42401, - [SMALL_STATE(1107)] = 42470, - [SMALL_STATE(1108)] = 42539, - [SMALL_STATE(1109)] = 42608, - [SMALL_STATE(1110)] = 42657, - [SMALL_STATE(1111)] = 42712, - [SMALL_STATE(1112)] = 42781, - [SMALL_STATE(1113)] = 42850, - [SMALL_STATE(1114)] = 42919, - [SMALL_STATE(1115)] = 42974, - [SMALL_STATE(1116)] = 43043, - [SMALL_STATE(1117)] = 43112, - [SMALL_STATE(1118)] = 43181, - [SMALL_STATE(1119)] = 43250, - [SMALL_STATE(1120)] = 43317, - [SMALL_STATE(1121)] = 43369, - [SMALL_STATE(1122)] = 43421, - [SMALL_STATE(1123)] = 43455, - [SMALL_STATE(1124)] = 43521, - [SMALL_STATE(1125)] = 43557, - [SMALL_STATE(1126)] = 43591, - [SMALL_STATE(1127)] = 43643, - [SMALL_STATE(1128)] = 43677, - [SMALL_STATE(1129)] = 43729, - [SMALL_STATE(1130)] = 43781, - [SMALL_STATE(1131)] = 43815, - [SMALL_STATE(1132)] = 43849, - [SMALL_STATE(1133)] = 43883, - [SMALL_STATE(1134)] = 43919, - [SMALL_STATE(1135)] = 43971, - [SMALL_STATE(1136)] = 44005, - [SMALL_STATE(1137)] = 44039, - [SMALL_STATE(1138)] = 44073, - [SMALL_STATE(1139)] = 44107, - [SMALL_STATE(1140)] = 44141, - [SMALL_STATE(1141)] = 44193, - [SMALL_STATE(1142)] = 44227, - [SMALL_STATE(1143)] = 44261, - [SMALL_STATE(1144)] = 44313, - [SMALL_STATE(1145)] = 44347, - [SMALL_STATE(1146)] = 44381, - [SMALL_STATE(1147)] = 44415, - [SMALL_STATE(1148)] = 44449, - [SMALL_STATE(1149)] = 44483, - [SMALL_STATE(1150)] = 44517, - [SMALL_STATE(1151)] = 44551, - [SMALL_STATE(1152)] = 44603, - [SMALL_STATE(1153)] = 44637, - [SMALL_STATE(1154)] = 44675, - [SMALL_STATE(1155)] = 44727, - [SMALL_STATE(1156)] = 44761, - [SMALL_STATE(1157)] = 44813, - [SMALL_STATE(1158)] = 44865, - [SMALL_STATE(1159)] = 44903, - [SMALL_STATE(1160)] = 44949, - [SMALL_STATE(1161)] = 44995, - [SMALL_STATE(1162)] = 45041, - [SMALL_STATE(1163)] = 45075, - [SMALL_STATE(1164)] = 45109, - [SMALL_STATE(1165)] = 45155, - [SMALL_STATE(1166)] = 45189, - [SMALL_STATE(1167)] = 45235, - [SMALL_STATE(1168)] = 45281, - [SMALL_STATE(1169)] = 45324, - [SMALL_STATE(1170)] = 45367, - [SMALL_STATE(1171)] = 45410, - [SMALL_STATE(1172)] = 45453, - [SMALL_STATE(1173)] = 45496, - [SMALL_STATE(1174)] = 45539, - [SMALL_STATE(1175)] = 45582, - [SMALL_STATE(1176)] = 45625, - [SMALL_STATE(1177)] = 45662, - [SMALL_STATE(1178)] = 45705, - [SMALL_STATE(1179)] = 45748, - [SMALL_STATE(1180)] = 45803, - [SMALL_STATE(1181)] = 45836, - [SMALL_STATE(1182)] = 45891, - [SMALL_STATE(1183)] = 45934, - [SMALL_STATE(1184)] = 45977, - [SMALL_STATE(1185)] = 46020, - [SMALL_STATE(1186)] = 46063, - [SMALL_STATE(1187)] = 46106, - [SMALL_STATE(1188)] = 46149, - [SMALL_STATE(1189)] = 46192, - [SMALL_STATE(1190)] = 46235, - [SMALL_STATE(1191)] = 46278, - [SMALL_STATE(1192)] = 46321, - [SMALL_STATE(1193)] = 46364, - [SMALL_STATE(1194)] = 46407, - [SMALL_STATE(1195)] = 46450, - [SMALL_STATE(1196)] = 46493, - [SMALL_STATE(1197)] = 46536, - [SMALL_STATE(1198)] = 46579, - [SMALL_STATE(1199)] = 46622, - [SMALL_STATE(1200)] = 46665, - [SMALL_STATE(1201)] = 46708, - [SMALL_STATE(1202)] = 46751, - [SMALL_STATE(1203)] = 46794, - [SMALL_STATE(1204)] = 46834, - [SMALL_STATE(1205)] = 46874, - [SMALL_STATE(1206)] = 46914, - [SMALL_STATE(1207)] = 46954, - [SMALL_STATE(1208)] = 46994, - [SMALL_STATE(1209)] = 47034, - [SMALL_STATE(1210)] = 47070, - [SMALL_STATE(1211)] = 47110, - [SMALL_STATE(1212)] = 47138, - [SMALL_STATE(1213)] = 47178, - [SMALL_STATE(1214)] = 47218, - [SMALL_STATE(1215)] = 47258, - [SMALL_STATE(1216)] = 47298, - [SMALL_STATE(1217)] = 47338, - [SMALL_STATE(1218)] = 47378, - [SMALL_STATE(1219)] = 47406, - [SMALL_STATE(1220)] = 47434, - [SMALL_STATE(1221)] = 47474, - [SMALL_STATE(1222)] = 47502, - [SMALL_STATE(1223)] = 47542, - [SMALL_STATE(1224)] = 47582, - [SMALL_STATE(1225)] = 47622, - [SMALL_STATE(1226)] = 47662, - [SMALL_STATE(1227)] = 47702, - [SMALL_STATE(1228)] = 47742, - [SMALL_STATE(1229)] = 47782, - [SMALL_STATE(1230)] = 47822, - [SMALL_STATE(1231)] = 47862, - [SMALL_STATE(1232)] = 47902, - [SMALL_STATE(1233)] = 47950, - [SMALL_STATE(1234)] = 47990, - [SMALL_STATE(1235)] = 48030, - [SMALL_STATE(1236)] = 48070, - [SMALL_STATE(1237)] = 48110, - [SMALL_STATE(1238)] = 48150, - [SMALL_STATE(1239)] = 48190, - [SMALL_STATE(1240)] = 48230, - [SMALL_STATE(1241)] = 48270, - [SMALL_STATE(1242)] = 48298, - [SMALL_STATE(1243)] = 48348, - [SMALL_STATE(1244)] = 48388, - [SMALL_STATE(1245)] = 48416, - [SMALL_STATE(1246)] = 48448, - [SMALL_STATE(1247)] = 48496, - [SMALL_STATE(1248)] = 48542, - [SMALL_STATE(1249)] = 48588, - [SMALL_STATE(1250)] = 48632, - [SMALL_STATE(1251)] = 48672, - [SMALL_STATE(1252)] = 48714, - [SMALL_STATE(1253)] = 48754, - [SMALL_STATE(1254)] = 48790, - [SMALL_STATE(1255)] = 48824, - [SMALL_STATE(1256)] = 48852, - [SMALL_STATE(1257)] = 48880, - [SMALL_STATE(1258)] = 48920, - [SMALL_STATE(1259)] = 48960, - [SMALL_STATE(1260)] = 48988, - [SMALL_STATE(1261)] = 49016, - [SMALL_STATE(1262)] = 49061, - [SMALL_STATE(1263)] = 49098, - [SMALL_STATE(1264)] = 49143, - [SMALL_STATE(1265)] = 49188, - [SMALL_STATE(1266)] = 49219, - [SMALL_STATE(1267)] = 49252, - [SMALL_STATE(1268)] = 49301, - [SMALL_STATE(1269)] = 49336, - [SMALL_STATE(1270)] = 49375, - [SMALL_STATE(1271)] = 49420, - [SMALL_STATE(1272)] = 49465, - [SMALL_STATE(1273)] = 49510, - [SMALL_STATE(1274)] = 49537, - [SMALL_STATE(1275)] = 49564, - [SMALL_STATE(1276)] = 49605, - [SMALL_STATE(1277)] = 49648, - [SMALL_STATE(1278)] = 49693, - [SMALL_STATE(1279)] = 49720, - [SMALL_STATE(1280)] = 49765, - [SMALL_STATE(1281)] = 49810, - [SMALL_STATE(1282)] = 49855, - [SMALL_STATE(1283)] = 49900, - [SMALL_STATE(1284)] = 49927, - [SMALL_STATE(1285)] = 49954, - [SMALL_STATE(1286)] = 49981, - [SMALL_STATE(1287)] = 50008, - [SMALL_STATE(1288)] = 50057, - [SMALL_STATE(1289)] = 50102, - [SMALL_STATE(1290)] = 50129, - [SMALL_STATE(1291)] = 50156, - [SMALL_STATE(1292)] = 50183, - [SMALL_STATE(1293)] = 50212, - [SMALL_STATE(1294)] = 50237, - [SMALL_STATE(1295)] = 50262, - [SMALL_STATE(1296)] = 50290, - [SMALL_STATE(1297)] = 50322, - [SMALL_STATE(1298)] = 50356, - [SMALL_STATE(1299)] = 50390, - [SMALL_STATE(1300)] = 50422, - [SMALL_STATE(1301)] = 50454, - [SMALL_STATE(1302)] = 50486, - [SMALL_STATE(1303)] = 50520, - [SMALL_STATE(1304)] = 50554, - [SMALL_STATE(1305)] = 50586, - [SMALL_STATE(1306)] = 50620, - [SMALL_STATE(1307)] = 50654, - [SMALL_STATE(1308)] = 50688, - [SMALL_STATE(1309)] = 50720, - [SMALL_STATE(1310)] = 50752, - [SMALL_STATE(1311)] = 50786, - [SMALL_STATE(1312)] = 50818, - [SMALL_STATE(1313)] = 50850, - [SMALL_STATE(1314)] = 50884, - [SMALL_STATE(1315)] = 50916, - [SMALL_STATE(1316)] = 50950, - [SMALL_STATE(1317)] = 50979, - [SMALL_STATE(1318)] = 51008, - [SMALL_STATE(1319)] = 51035, - [SMALL_STATE(1320)] = 51070, - [SMALL_STATE(1321)] = 51093, - [SMALL_STATE(1322)] = 51128, - [SMALL_STATE(1323)] = 51151, - [SMALL_STATE(1324)] = 51174, - [SMALL_STATE(1325)] = 51201, - [SMALL_STATE(1326)] = 51230, - [SMALL_STATE(1327)] = 51265, - [SMALL_STATE(1328)] = 51294, - [SMALL_STATE(1329)] = 51317, - [SMALL_STATE(1330)] = 51352, - [SMALL_STATE(1331)] = 51381, - [SMALL_STATE(1332)] = 51399, - [SMALL_STATE(1333)] = 51431, - [SMALL_STATE(1334)] = 51449, - [SMALL_STATE(1335)] = 51481, - [SMALL_STATE(1336)] = 51507, - [SMALL_STATE(1337)] = 51531, - [SMALL_STATE(1338)] = 51561, - [SMALL_STATE(1339)] = 51587, - [SMALL_STATE(1340)] = 51613, - [SMALL_STATE(1341)] = 51637, - [SMALL_STATE(1342)] = 51659, - [SMALL_STATE(1343)] = 51685, - [SMALL_STATE(1344)] = 51717, - [SMALL_STATE(1345)] = 51743, - [SMALL_STATE(1346)] = 51769, - [SMALL_STATE(1347)] = 51801, - [SMALL_STATE(1348)] = 51833, - [SMALL_STATE(1349)] = 51851, - [SMALL_STATE(1350)] = 51877, - [SMALL_STATE(1351)] = 51903, - [SMALL_STATE(1352)] = 51932, - [SMALL_STATE(1353)] = 51961, - [SMALL_STATE(1354)] = 51990, - [SMALL_STATE(1355)] = 52019, - [SMALL_STATE(1356)] = 52048, - [SMALL_STATE(1357)] = 52077, - [SMALL_STATE(1358)] = 52106, - [SMALL_STATE(1359)] = 52135, - [SMALL_STATE(1360)] = 52160, - [SMALL_STATE(1361)] = 52189, - [SMALL_STATE(1362)] = 52210, - [SMALL_STATE(1363)] = 52239, - [SMALL_STATE(1364)] = 52268, - [SMALL_STATE(1365)] = 52289, - [SMALL_STATE(1366)] = 52314, - [SMALL_STATE(1367)] = 52335, - [SMALL_STATE(1368)] = 52364, - [SMALL_STATE(1369)] = 52393, - [SMALL_STATE(1370)] = 52422, - [SMALL_STATE(1371)] = 52447, - [SMALL_STATE(1372)] = 52476, - [SMALL_STATE(1373)] = 52497, - [SMALL_STATE(1374)] = 52526, - [SMALL_STATE(1375)] = 52553, - [SMALL_STATE(1376)] = 52578, - [SMALL_STATE(1377)] = 52599, - [SMALL_STATE(1378)] = 52628, - [SMALL_STATE(1379)] = 52657, - [SMALL_STATE(1380)] = 52678, - [SMALL_STATE(1381)] = 52707, - [SMALL_STATE(1382)] = 52736, - [SMALL_STATE(1383)] = 52756, - [SMALL_STATE(1384)] = 52776, - [SMALL_STATE(1385)] = 52792, - [SMALL_STATE(1386)] = 52816, - [SMALL_STATE(1387)] = 52832, - [SMALL_STATE(1388)] = 52856, - [SMALL_STATE(1389)] = 52872, - [SMALL_STATE(1390)] = 52888, - [SMALL_STATE(1391)] = 52906, - [SMALL_STATE(1392)] = 52922, - [SMALL_STATE(1393)] = 52942, - [SMALL_STATE(1394)] = 52965, - [SMALL_STATE(1395)] = 52980, - [SMALL_STATE(1396)] = 52995, - [SMALL_STATE(1397)] = 53010, - [SMALL_STATE(1398)] = 53033, - [SMALL_STATE(1399)] = 53048, - [SMALL_STATE(1400)] = 53063, - [SMALL_STATE(1401)] = 53078, - [SMALL_STATE(1402)] = 53101, - [SMALL_STATE(1403)] = 53116, - [SMALL_STATE(1404)] = 53133, - [SMALL_STATE(1405)] = 53148, - [SMALL_STATE(1406)] = 53163, - [SMALL_STATE(1407)] = 53180, - [SMALL_STATE(1408)] = 53198, - [SMALL_STATE(1409)] = 53214, - [SMALL_STATE(1410)] = 53228, - [SMALL_STATE(1411)] = 53242, - [SMALL_STATE(1412)] = 53260, - [SMALL_STATE(1413)] = 53274, - [SMALL_STATE(1414)] = 53294, - [SMALL_STATE(1415)] = 53308, - [SMALL_STATE(1416)] = 53322, - [SMALL_STATE(1417)] = 53340, - [SMALL_STATE(1418)] = 53356, - [SMALL_STATE(1419)] = 53374, - [SMALL_STATE(1420)] = 53388, - [SMALL_STATE(1421)] = 53402, - [SMALL_STATE(1422)] = 53416, - [SMALL_STATE(1423)] = 53430, - [SMALL_STATE(1424)] = 53448, - [SMALL_STATE(1425)] = 53464, - [SMALL_STATE(1426)] = 53478, - [SMALL_STATE(1427)] = 53496, - [SMALL_STATE(1428)] = 53514, - [SMALL_STATE(1429)] = 53532, - [SMALL_STATE(1430)] = 53546, - [SMALL_STATE(1431)] = 53557, - [SMALL_STATE(1432)] = 53568, - [SMALL_STATE(1433)] = 53587, - [SMALL_STATE(1434)] = 53606, - [SMALL_STATE(1435)] = 53617, - [SMALL_STATE(1436)] = 53628, - [SMALL_STATE(1437)] = 53645, - [SMALL_STATE(1438)] = 53656, - [SMALL_STATE(1439)] = 53667, - [SMALL_STATE(1440)] = 53678, - [SMALL_STATE(1441)] = 53689, - [SMALL_STATE(1442)] = 53700, - [SMALL_STATE(1443)] = 53711, - [SMALL_STATE(1444)] = 53722, - [SMALL_STATE(1445)] = 53739, - [SMALL_STATE(1446)] = 53750, - [SMALL_STATE(1447)] = 53764, - [SMALL_STATE(1448)] = 53778, - [SMALL_STATE(1449)] = 53794, - [SMALL_STATE(1450)] = 53810, - [SMALL_STATE(1451)] = 53826, - [SMALL_STATE(1452)] = 53840, - [SMALL_STATE(1453)] = 53854, - [SMALL_STATE(1454)] = 53870, - [SMALL_STATE(1455)] = 53886, - [SMALL_STATE(1456)] = 53896, - [SMALL_STATE(1457)] = 53912, - [SMALL_STATE(1458)] = 53926, - [SMALL_STATE(1459)] = 53940, - [SMALL_STATE(1460)] = 53956, - [SMALL_STATE(1461)] = 53970, - [SMALL_STATE(1462)] = 53986, - [SMALL_STATE(1463)] = 54000, - [SMALL_STATE(1464)] = 54016, - [SMALL_STATE(1465)] = 54032, - [SMALL_STATE(1466)] = 54048, - [SMALL_STATE(1467)] = 54064, - [SMALL_STATE(1468)] = 54080, - [SMALL_STATE(1469)] = 54094, - [SMALL_STATE(1470)] = 54110, - [SMALL_STATE(1471)] = 54124, - [SMALL_STATE(1472)] = 54138, - [SMALL_STATE(1473)] = 54154, - [SMALL_STATE(1474)] = 54170, - [SMALL_STATE(1475)] = 54186, - [SMALL_STATE(1476)] = 54202, - [SMALL_STATE(1477)] = 54215, - [SMALL_STATE(1478)] = 54224, - [SMALL_STATE(1479)] = 54237, - [SMALL_STATE(1480)] = 54250, - [SMALL_STATE(1481)] = 54263, - [SMALL_STATE(1482)] = 54276, - [SMALL_STATE(1483)] = 54289, - [SMALL_STATE(1484)] = 54302, - [SMALL_STATE(1485)] = 54315, - [SMALL_STATE(1486)] = 54328, - [SMALL_STATE(1487)] = 54341, - [SMALL_STATE(1488)] = 54354, - [SMALL_STATE(1489)] = 54365, - [SMALL_STATE(1490)] = 54378, - [SMALL_STATE(1491)] = 54391, - [SMALL_STATE(1492)] = 54404, - [SMALL_STATE(1493)] = 54417, - [SMALL_STATE(1494)] = 54428, - [SMALL_STATE(1495)] = 54441, - [SMALL_STATE(1496)] = 54454, - [SMALL_STATE(1497)] = 54467, - [SMALL_STATE(1498)] = 54480, - [SMALL_STATE(1499)] = 54493, - [SMALL_STATE(1500)] = 54506, - [SMALL_STATE(1501)] = 54519, - [SMALL_STATE(1502)] = 54532, - [SMALL_STATE(1503)] = 54545, - [SMALL_STATE(1504)] = 54558, - [SMALL_STATE(1505)] = 54571, - [SMALL_STATE(1506)] = 54584, - [SMALL_STATE(1507)] = 54597, - [SMALL_STATE(1508)] = 54610, - [SMALL_STATE(1509)] = 54623, - [SMALL_STATE(1510)] = 54636, - [SMALL_STATE(1511)] = 54649, - [SMALL_STATE(1512)] = 54662, - [SMALL_STATE(1513)] = 54675, - [SMALL_STATE(1514)] = 54688, - [SMALL_STATE(1515)] = 54701, - [SMALL_STATE(1516)] = 54714, - [SMALL_STATE(1517)] = 54727, - [SMALL_STATE(1518)] = 54740, - [SMALL_STATE(1519)] = 54753, - [SMALL_STATE(1520)] = 54766, - [SMALL_STATE(1521)] = 54779, - [SMALL_STATE(1522)] = 54792, - [SMALL_STATE(1523)] = 54805, - [SMALL_STATE(1524)] = 54818, - [SMALL_STATE(1525)] = 54831, - [SMALL_STATE(1526)] = 54844, - [SMALL_STATE(1527)] = 54857, - [SMALL_STATE(1528)] = 54870, - [SMALL_STATE(1529)] = 54883, - [SMALL_STATE(1530)] = 54896, - [SMALL_STATE(1531)] = 54909, - [SMALL_STATE(1532)] = 54922, - [SMALL_STATE(1533)] = 54935, - [SMALL_STATE(1534)] = 54948, - [SMALL_STATE(1535)] = 54961, - [SMALL_STATE(1536)] = 54974, - [SMALL_STATE(1537)] = 54987, - [SMALL_STATE(1538)] = 55000, - [SMALL_STATE(1539)] = 55013, - [SMALL_STATE(1540)] = 55026, - [SMALL_STATE(1541)] = 55039, - [SMALL_STATE(1542)] = 55052, - [SMALL_STATE(1543)] = 55065, - [SMALL_STATE(1544)] = 55078, - [SMALL_STATE(1545)] = 55091, - [SMALL_STATE(1546)] = 55104, - [SMALL_STATE(1547)] = 55117, - [SMALL_STATE(1548)] = 55130, - [SMALL_STATE(1549)] = 55143, - [SMALL_STATE(1550)] = 55156, - [SMALL_STATE(1551)] = 55169, - [SMALL_STATE(1552)] = 55182, - [SMALL_STATE(1553)] = 55195, - [SMALL_STATE(1554)] = 55208, - [SMALL_STATE(1555)] = 55221, - [SMALL_STATE(1556)] = 55234, - [SMALL_STATE(1557)] = 55247, - [SMALL_STATE(1558)] = 55256, - [SMALL_STATE(1559)] = 55269, - [SMALL_STATE(1560)] = 55282, - [SMALL_STATE(1561)] = 55291, - [SMALL_STATE(1562)] = 55304, - [SMALL_STATE(1563)] = 55317, - [SMALL_STATE(1564)] = 55330, - [SMALL_STATE(1565)] = 55343, - [SMALL_STATE(1566)] = 55352, - [SMALL_STATE(1567)] = 55365, - [SMALL_STATE(1568)] = 55374, - [SMALL_STATE(1569)] = 55383, - [SMALL_STATE(1570)] = 55396, - [SMALL_STATE(1571)] = 55409, - [SMALL_STATE(1572)] = 55422, - [SMALL_STATE(1573)] = 55435, - [SMALL_STATE(1574)] = 55448, - [SMALL_STATE(1575)] = 55461, - [SMALL_STATE(1576)] = 55474, - [SMALL_STATE(1577)] = 55487, - [SMALL_STATE(1578)] = 55500, - [SMALL_STATE(1579)] = 55513, - [SMALL_STATE(1580)] = 55526, - [SMALL_STATE(1581)] = 55539, - [SMALL_STATE(1582)] = 55552, - [SMALL_STATE(1583)] = 55561, - [SMALL_STATE(1584)] = 55570, - [SMALL_STATE(1585)] = 55583, - [SMALL_STATE(1586)] = 55596, - [SMALL_STATE(1587)] = 55605, - [SMALL_STATE(1588)] = 55618, - [SMALL_STATE(1589)] = 55628, - [SMALL_STATE(1590)] = 55636, - [SMALL_STATE(1591)] = 55646, - [SMALL_STATE(1592)] = 55654, - [SMALL_STATE(1593)] = 55664, - [SMALL_STATE(1594)] = 55674, - [SMALL_STATE(1595)] = 55684, - [SMALL_STATE(1596)] = 55694, - [SMALL_STATE(1597)] = 55702, - [SMALL_STATE(1598)] = 55712, - [SMALL_STATE(1599)] = 55722, - [SMALL_STATE(1600)] = 55730, - [SMALL_STATE(1601)] = 55740, - [SMALL_STATE(1602)] = 55750, - [SMALL_STATE(1603)] = 55760, - [SMALL_STATE(1604)] = 55770, - [SMALL_STATE(1605)] = 55780, - [SMALL_STATE(1606)] = 55790, - [SMALL_STATE(1607)] = 55800, - [SMALL_STATE(1608)] = 55810, - [SMALL_STATE(1609)] = 55818, - [SMALL_STATE(1610)] = 55828, - [SMALL_STATE(1611)] = 55838, - [SMALL_STATE(1612)] = 55848, - [SMALL_STATE(1613)] = 55858, - [SMALL_STATE(1614)] = 55868, - [SMALL_STATE(1615)] = 55878, - [SMALL_STATE(1616)] = 55888, - [SMALL_STATE(1617)] = 55898, - [SMALL_STATE(1618)] = 55906, - [SMALL_STATE(1619)] = 55916, - [SMALL_STATE(1620)] = 55926, - [SMALL_STATE(1621)] = 55934, - [SMALL_STATE(1622)] = 55944, - [SMALL_STATE(1623)] = 55954, - [SMALL_STATE(1624)] = 55964, - [SMALL_STATE(1625)] = 55972, - [SMALL_STATE(1626)] = 55982, - [SMALL_STATE(1627)] = 55992, - [SMALL_STATE(1628)] = 56002, - [SMALL_STATE(1629)] = 56012, - [SMALL_STATE(1630)] = 56020, - [SMALL_STATE(1631)] = 56030, - [SMALL_STATE(1632)] = 56038, - [SMALL_STATE(1633)] = 56048, - [SMALL_STATE(1634)] = 56056, - [SMALL_STATE(1635)] = 56066, - [SMALL_STATE(1636)] = 56076, - [SMALL_STATE(1637)] = 56084, - [SMALL_STATE(1638)] = 56092, - [SMALL_STATE(1639)] = 56102, - [SMALL_STATE(1640)] = 56112, - [SMALL_STATE(1641)] = 56122, - [SMALL_STATE(1642)] = 56132, - [SMALL_STATE(1643)] = 56142, - [SMALL_STATE(1644)] = 56152, - [SMALL_STATE(1645)] = 56162, - [SMALL_STATE(1646)] = 56170, - [SMALL_STATE(1647)] = 56180, - [SMALL_STATE(1648)] = 56190, - [SMALL_STATE(1649)] = 56200, - [SMALL_STATE(1650)] = 56210, - [SMALL_STATE(1651)] = 56220, - [SMALL_STATE(1652)] = 56230, - [SMALL_STATE(1653)] = 56240, - [SMALL_STATE(1654)] = 56248, - [SMALL_STATE(1655)] = 56258, - [SMALL_STATE(1656)] = 56268, - [SMALL_STATE(1657)] = 56278, - [SMALL_STATE(1658)] = 56288, - [SMALL_STATE(1659)] = 56298, - [SMALL_STATE(1660)] = 56308, - [SMALL_STATE(1661)] = 56316, - [SMALL_STATE(1662)] = 56326, - [SMALL_STATE(1663)] = 56336, - [SMALL_STATE(1664)] = 56344, - [SMALL_STATE(1665)] = 56352, - [SMALL_STATE(1666)] = 56362, - [SMALL_STATE(1667)] = 56370, - [SMALL_STATE(1668)] = 56380, - [SMALL_STATE(1669)] = 56390, - [SMALL_STATE(1670)] = 56398, - [SMALL_STATE(1671)] = 56408, - [SMALL_STATE(1672)] = 56418, - [SMALL_STATE(1673)] = 56426, - [SMALL_STATE(1674)] = 56434, - [SMALL_STATE(1675)] = 56444, - [SMALL_STATE(1676)] = 56451, - [SMALL_STATE(1677)] = 56458, - [SMALL_STATE(1678)] = 56465, - [SMALL_STATE(1679)] = 56472, - [SMALL_STATE(1680)] = 56479, - [SMALL_STATE(1681)] = 56486, - [SMALL_STATE(1682)] = 56493, - [SMALL_STATE(1683)] = 56500, - [SMALL_STATE(1684)] = 56507, - [SMALL_STATE(1685)] = 56514, - [SMALL_STATE(1686)] = 56521, - [SMALL_STATE(1687)] = 56528, - [SMALL_STATE(1688)] = 56535, - [SMALL_STATE(1689)] = 56542, - [SMALL_STATE(1690)] = 56549, - [SMALL_STATE(1691)] = 56556, - [SMALL_STATE(1692)] = 56563, - [SMALL_STATE(1693)] = 56570, - [SMALL_STATE(1694)] = 56577, - [SMALL_STATE(1695)] = 56584, - [SMALL_STATE(1696)] = 56591, - [SMALL_STATE(1697)] = 56598, - [SMALL_STATE(1698)] = 56605, - [SMALL_STATE(1699)] = 56612, - [SMALL_STATE(1700)] = 56619, - [SMALL_STATE(1701)] = 56626, - [SMALL_STATE(1702)] = 56633, - [SMALL_STATE(1703)] = 56640, - [SMALL_STATE(1704)] = 56647, - [SMALL_STATE(1705)] = 56654, - [SMALL_STATE(1706)] = 56661, - [SMALL_STATE(1707)] = 56668, - [SMALL_STATE(1708)] = 56675, - [SMALL_STATE(1709)] = 56682, - [SMALL_STATE(1710)] = 56689, - [SMALL_STATE(1711)] = 56696, - [SMALL_STATE(1712)] = 56703, - [SMALL_STATE(1713)] = 56710, - [SMALL_STATE(1714)] = 56717, - [SMALL_STATE(1715)] = 56724, - [SMALL_STATE(1716)] = 56731, - [SMALL_STATE(1717)] = 56738, - [SMALL_STATE(1718)] = 56745, - [SMALL_STATE(1719)] = 56752, - [SMALL_STATE(1720)] = 56759, - [SMALL_STATE(1721)] = 56766, - [SMALL_STATE(1722)] = 56773, - [SMALL_STATE(1723)] = 56780, - [SMALL_STATE(1724)] = 56787, - [SMALL_STATE(1725)] = 56794, - [SMALL_STATE(1726)] = 56801, - [SMALL_STATE(1727)] = 56808, - [SMALL_STATE(1728)] = 56815, - [SMALL_STATE(1729)] = 56822, - [SMALL_STATE(1730)] = 56829, - [SMALL_STATE(1731)] = 56836, - [SMALL_STATE(1732)] = 56843, - [SMALL_STATE(1733)] = 56850, - [SMALL_STATE(1734)] = 56857, - [SMALL_STATE(1735)] = 56864, - [SMALL_STATE(1736)] = 56871, - [SMALL_STATE(1737)] = 56878, - [SMALL_STATE(1738)] = 56885, - [SMALL_STATE(1739)] = 56892, - [SMALL_STATE(1740)] = 56899, - [SMALL_STATE(1741)] = 56906, - [SMALL_STATE(1742)] = 56913, - [SMALL_STATE(1743)] = 56920, - [SMALL_STATE(1744)] = 56927, - [SMALL_STATE(1745)] = 56934, - [SMALL_STATE(1746)] = 56941, - [SMALL_STATE(1747)] = 56948, - [SMALL_STATE(1748)] = 56955, - [SMALL_STATE(1749)] = 56962, - [SMALL_STATE(1750)] = 56969, - [SMALL_STATE(1751)] = 56976, - [SMALL_STATE(1752)] = 56983, - [SMALL_STATE(1753)] = 56990, - [SMALL_STATE(1754)] = 56997, - [SMALL_STATE(1755)] = 57004, - [SMALL_STATE(1756)] = 57011, - [SMALL_STATE(1757)] = 57018, - [SMALL_STATE(1758)] = 57025, - [SMALL_STATE(1759)] = 57032, - [SMALL_STATE(1760)] = 57039, - [SMALL_STATE(1761)] = 57046, - [SMALL_STATE(1762)] = 57053, - [SMALL_STATE(1763)] = 57060, - [SMALL_STATE(1764)] = 57067, - [SMALL_STATE(1765)] = 57074, - [SMALL_STATE(1766)] = 57081, - [SMALL_STATE(1767)] = 57088, - [SMALL_STATE(1768)] = 57095, - [SMALL_STATE(1769)] = 57102, - [SMALL_STATE(1770)] = 57109, - [SMALL_STATE(1771)] = 57116, - [SMALL_STATE(1772)] = 57123, - [SMALL_STATE(1773)] = 57130, - [SMALL_STATE(1774)] = 57137, - [SMALL_STATE(1775)] = 57144, - [SMALL_STATE(1776)] = 57151, - [SMALL_STATE(1777)] = 57158, - [SMALL_STATE(1778)] = 57165, - [SMALL_STATE(1779)] = 57172, - [SMALL_STATE(1780)] = 57179, - [SMALL_STATE(1781)] = 57186, - [SMALL_STATE(1782)] = 57193, - [SMALL_STATE(1783)] = 57200, - [SMALL_STATE(1784)] = 57207, - [SMALL_STATE(1785)] = 57214, - [SMALL_STATE(1786)] = 57221, - [SMALL_STATE(1787)] = 57228, - [SMALL_STATE(1788)] = 57235, - [SMALL_STATE(1789)] = 57242, - [SMALL_STATE(1790)] = 57249, - [SMALL_STATE(1791)] = 57256, - [SMALL_STATE(1792)] = 57263, - [SMALL_STATE(1793)] = 57270, - [SMALL_STATE(1794)] = 57277, - [SMALL_STATE(1795)] = 57284, - [SMALL_STATE(1796)] = 57291, - [SMALL_STATE(1797)] = 57298, - [SMALL_STATE(1798)] = 57305, - [SMALL_STATE(1799)] = 57312, - [SMALL_STATE(1800)] = 57319, - [SMALL_STATE(1801)] = 57326, - [SMALL_STATE(1802)] = 57333, - [SMALL_STATE(1803)] = 57340, - [SMALL_STATE(1804)] = 57347, - [SMALL_STATE(1805)] = 57354, - [SMALL_STATE(1806)] = 57361, - [SMALL_STATE(1807)] = 57368, - [SMALL_STATE(1808)] = 57375, - [SMALL_STATE(1809)] = 57382, - [SMALL_STATE(1810)] = 57389, - [SMALL_STATE(1811)] = 57396, - [SMALL_STATE(1812)] = 57403, - [SMALL_STATE(1813)] = 57410, - [SMALL_STATE(1814)] = 57417, - [SMALL_STATE(1815)] = 57424, - [SMALL_STATE(1816)] = 57431, - [SMALL_STATE(1817)] = 57438, - [SMALL_STATE(1818)] = 57445, - [SMALL_STATE(1819)] = 57452, - [SMALL_STATE(1820)] = 57459, - [SMALL_STATE(1821)] = 57466, - [SMALL_STATE(1822)] = 57473, - [SMALL_STATE(1823)] = 57480, - [SMALL_STATE(1824)] = 57487, - [SMALL_STATE(1825)] = 57494, - [SMALL_STATE(1826)] = 57501, - [SMALL_STATE(1827)] = 57508, - [SMALL_STATE(1828)] = 57515, - [SMALL_STATE(1829)] = 57522, - [SMALL_STATE(1830)] = 57529, - [SMALL_STATE(1831)] = 57536, - [SMALL_STATE(1832)] = 57543, - [SMALL_STATE(1833)] = 57550, - [SMALL_STATE(1834)] = 57557, - [SMALL_STATE(1835)] = 57564, - [SMALL_STATE(1836)] = 57571, - [SMALL_STATE(1837)] = 57578, - [SMALL_STATE(1838)] = 57585, - [SMALL_STATE(1839)] = 57592, - [SMALL_STATE(1840)] = 57599, - [SMALL_STATE(1841)] = 57606, - [SMALL_STATE(1842)] = 57613, - [SMALL_STATE(1843)] = 57620, - [SMALL_STATE(1844)] = 57627, - [SMALL_STATE(1845)] = 57634, - [SMALL_STATE(1846)] = 57641, - [SMALL_STATE(1847)] = 57648, - [SMALL_STATE(1848)] = 57655, - [SMALL_STATE(1849)] = 57662, - [SMALL_STATE(1850)] = 57669, - [SMALL_STATE(1851)] = 57676, - [SMALL_STATE(1852)] = 57683, - [SMALL_STATE(1853)] = 57690, - [SMALL_STATE(1854)] = 57697, - [SMALL_STATE(1855)] = 57704, - [SMALL_STATE(1856)] = 57711, - [SMALL_STATE(1857)] = 57718, - [SMALL_STATE(1858)] = 57725, - [SMALL_STATE(1859)] = 57732, - [SMALL_STATE(1860)] = 57739, - [SMALL_STATE(1861)] = 57746, - [SMALL_STATE(1862)] = 57753, - [SMALL_STATE(1863)] = 57760, - [SMALL_STATE(1864)] = 57767, - [SMALL_STATE(1865)] = 57774, - [SMALL_STATE(1866)] = 57781, - [SMALL_STATE(1867)] = 57788, - [SMALL_STATE(1868)] = 57795, - [SMALL_STATE(1869)] = 57802, - [SMALL_STATE(1870)] = 57809, - [SMALL_STATE(1871)] = 57816, - [SMALL_STATE(1872)] = 57823, - [SMALL_STATE(1873)] = 57830, - [SMALL_STATE(1874)] = 57837, - [SMALL_STATE(1875)] = 57844, - [SMALL_STATE(1876)] = 57851, - [SMALL_STATE(1877)] = 57858, - [SMALL_STATE(1878)] = 57865, - [SMALL_STATE(1879)] = 57872, - [SMALL_STATE(1880)] = 57879, - [SMALL_STATE(1881)] = 57886, - [SMALL_STATE(1882)] = 57893, - [SMALL_STATE(1883)] = 57900, - [SMALL_STATE(1884)] = 57907, - [SMALL_STATE(1885)] = 57914, - [SMALL_STATE(1886)] = 57921, - [SMALL_STATE(1887)] = 57928, - [SMALL_STATE(1888)] = 57935, - [SMALL_STATE(1889)] = 57942, - [SMALL_STATE(1890)] = 57949, - [SMALL_STATE(1891)] = 57956, - [SMALL_STATE(1892)] = 57963, - [SMALL_STATE(1893)] = 57970, - [SMALL_STATE(1894)] = 57977, - [SMALL_STATE(1895)] = 57984, - [SMALL_STATE(1896)] = 57991, - [SMALL_STATE(1897)] = 57998, - [SMALL_STATE(1898)] = 58005, - [SMALL_STATE(1899)] = 58012, - [SMALL_STATE(1900)] = 58019, - [SMALL_STATE(1901)] = 58026, - [SMALL_STATE(1902)] = 58033, - [SMALL_STATE(1903)] = 58040, - [SMALL_STATE(1904)] = 58047, - [SMALL_STATE(1905)] = 58054, - [SMALL_STATE(1906)] = 58061, - [SMALL_STATE(1907)] = 58068, - [SMALL_STATE(1908)] = 58075, - [SMALL_STATE(1909)] = 58082, - [SMALL_STATE(1910)] = 58089, - [SMALL_STATE(1911)] = 58096, - [SMALL_STATE(1912)] = 58103, - [SMALL_STATE(1913)] = 58110, - [SMALL_STATE(1914)] = 58117, - [SMALL_STATE(1915)] = 58124, - [SMALL_STATE(1916)] = 58131, - [SMALL_STATE(1917)] = 58138, - [SMALL_STATE(1918)] = 58145, - [SMALL_STATE(1919)] = 58152, - [SMALL_STATE(1920)] = 58159, - [SMALL_STATE(1921)] = 58166, - [SMALL_STATE(1922)] = 58173, - [SMALL_STATE(1923)] = 58180, - [SMALL_STATE(1924)] = 58187, - [SMALL_STATE(1925)] = 58194, - [SMALL_STATE(1926)] = 58201, - [SMALL_STATE(1927)] = 58208, - [SMALL_STATE(1928)] = 58215, - [SMALL_STATE(1929)] = 58222, - [SMALL_STATE(1930)] = 58229, - [SMALL_STATE(1931)] = 58236, - [SMALL_STATE(1932)] = 58243, - [SMALL_STATE(1933)] = 58250, - [SMALL_STATE(1934)] = 58257, - [SMALL_STATE(1935)] = 58264, - [SMALL_STATE(1936)] = 58271, - [SMALL_STATE(1937)] = 58278, + [SMALL_STATE(843)] = 27410, + [SMALL_STATE(844)] = 27466, + [SMALL_STATE(845)] = 27528, + [SMALL_STATE(846)] = 27588, + [SMALL_STATE(847)] = 27633, + [SMALL_STATE(848)] = 27682, + [SMALL_STATE(849)] = 27727, + [SMALL_STATE(850)] = 27772, + [SMALL_STATE(851)] = 27816, + [SMALL_STATE(852)] = 27860, + [SMALL_STATE(853)] = 27904, + [SMALL_STATE(854)] = 27948, + [SMALL_STATE(855)] = 27992, + [SMALL_STATE(856)] = 28036, + [SMALL_STATE(857)] = 28080, + [SMALL_STATE(858)] = 28124, + [SMALL_STATE(859)] = 28168, + [SMALL_STATE(860)] = 28212, + [SMALL_STATE(861)] = 28256, + [SMALL_STATE(862)] = 28300, + [SMALL_STATE(863)] = 28344, + [SMALL_STATE(864)] = 28388, + [SMALL_STATE(865)] = 28432, + [SMALL_STATE(866)] = 28476, + [SMALL_STATE(867)] = 28520, + [SMALL_STATE(868)] = 28564, + [SMALL_STATE(869)] = 28608, + [SMALL_STATE(870)] = 28652, + [SMALL_STATE(871)] = 28696, + [SMALL_STATE(872)] = 28740, + [SMALL_STATE(873)] = 28784, + [SMALL_STATE(874)] = 28828, + [SMALL_STATE(875)] = 28872, + [SMALL_STATE(876)] = 28914, + [SMALL_STATE(877)] = 28956, + [SMALL_STATE(878)] = 28998, + [SMALL_STATE(879)] = 29040, + [SMALL_STATE(880)] = 29082, + [SMALL_STATE(881)] = 29124, + [SMALL_STATE(882)] = 29166, + [SMALL_STATE(883)] = 29208, + [SMALL_STATE(884)] = 29250, + [SMALL_STATE(885)] = 29292, + [SMALL_STATE(886)] = 29334, + [SMALL_STATE(887)] = 29376, + [SMALL_STATE(888)] = 29418, + [SMALL_STATE(889)] = 29460, + [SMALL_STATE(890)] = 29502, + [SMALL_STATE(891)] = 29544, + [SMALL_STATE(892)] = 29586, + [SMALL_STATE(893)] = 29628, + [SMALL_STATE(894)] = 29670, + [SMALL_STATE(895)] = 29712, + [SMALL_STATE(896)] = 29754, + [SMALL_STATE(897)] = 29796, + [SMALL_STATE(898)] = 29838, + [SMALL_STATE(899)] = 29880, + [SMALL_STATE(900)] = 29922, + [SMALL_STATE(901)] = 29964, + [SMALL_STATE(902)] = 30005, + [SMALL_STATE(903)] = 30046, + [SMALL_STATE(904)] = 30087, + [SMALL_STATE(905)] = 30128, + [SMALL_STATE(906)] = 30169, + [SMALL_STATE(907)] = 30209, + [SMALL_STATE(908)] = 30249, + [SMALL_STATE(909)] = 30289, + [SMALL_STATE(910)] = 30329, + [SMALL_STATE(911)] = 30391, + [SMALL_STATE(912)] = 30431, + [SMALL_STATE(913)] = 30471, + [SMALL_STATE(914)] = 30511, + [SMALL_STATE(915)] = 30569, + [SMALL_STATE(916)] = 30609, + [SMALL_STATE(917)] = 30653, + [SMALL_STATE(918)] = 30693, + [SMALL_STATE(919)] = 30733, + [SMALL_STATE(920)] = 30773, + [SMALL_STATE(921)] = 30817, + [SMALL_STATE(922)] = 30857, + [SMALL_STATE(923)] = 30901, + [SMALL_STATE(924)] = 30941, + [SMALL_STATE(925)] = 30981, + [SMALL_STATE(926)] = 31021, + [SMALL_STATE(927)] = 31065, + [SMALL_STATE(928)] = 31105, + [SMALL_STATE(929)] = 31145, + [SMALL_STATE(930)] = 31185, + [SMALL_STATE(931)] = 31225, + [SMALL_STATE(932)] = 31265, + [SMALL_STATE(933)] = 31337, + [SMALL_STATE(934)] = 31377, + [SMALL_STATE(935)] = 31429, + [SMALL_STATE(936)] = 31469, + [SMALL_STATE(937)] = 31543, + [SMALL_STATE(938)] = 31583, + [SMALL_STATE(939)] = 31623, + [SMALL_STATE(940)] = 31663, + [SMALL_STATE(941)] = 31703, + [SMALL_STATE(942)] = 31743, + [SMALL_STATE(943)] = 31783, + [SMALL_STATE(944)] = 31823, + [SMALL_STATE(945)] = 31863, + [SMALL_STATE(946)] = 31915, + [SMALL_STATE(947)] = 31973, + [SMALL_STATE(948)] = 32025, + [SMALL_STATE(949)] = 32081, + [SMALL_STATE(950)] = 32121, + [SMALL_STATE(951)] = 32161, + [SMALL_STATE(952)] = 32205, + [SMALL_STATE(953)] = 32245, + [SMALL_STATE(954)] = 32289, + [SMALL_STATE(955)] = 32355, + [SMALL_STATE(956)] = 32395, + [SMALL_STATE(957)] = 32463, + [SMALL_STATE(958)] = 32503, + [SMALL_STATE(959)] = 32543, + [SMALL_STATE(960)] = 32583, + [SMALL_STATE(961)] = 32623, + [SMALL_STATE(962)] = 32691, + [SMALL_STATE(963)] = 32731, + [SMALL_STATE(964)] = 32801, + [SMALL_STATE(965)] = 32865, + [SMALL_STATE(966)] = 32905, + [SMALL_STATE(967)] = 32957, + [SMALL_STATE(968)] = 32997, + [SMALL_STATE(969)] = 33037, + [SMALL_STATE(970)] = 33077, + [SMALL_STATE(971)] = 33117, + [SMALL_STATE(972)] = 33157, + [SMALL_STATE(973)] = 33197, + [SMALL_STATE(974)] = 33271, + [SMALL_STATE(975)] = 33311, + [SMALL_STATE(976)] = 33365, + [SMALL_STATE(977)] = 33405, + [SMALL_STATE(978)] = 33444, + [SMALL_STATE(979)] = 33483, + [SMALL_STATE(980)] = 33522, + [SMALL_STATE(981)] = 33561, + [SMALL_STATE(982)] = 33608, + [SMALL_STATE(983)] = 33670, + [SMALL_STATE(984)] = 33721, + [SMALL_STATE(985)] = 33772, + [SMALL_STATE(986)] = 33845, + [SMALL_STATE(987)] = 33904, + [SMALL_STATE(988)] = 33955, + [SMALL_STATE(989)] = 34014, + [SMALL_STATE(990)] = 34085, + [SMALL_STATE(991)] = 34132, + [SMALL_STATE(992)] = 34183, + [SMALL_STATE(993)] = 34258, + [SMALL_STATE(994)] = 34303, + [SMALL_STATE(995)] = 34362, + [SMALL_STATE(996)] = 34421, + [SMALL_STATE(997)] = 34480, + [SMALL_STATE(998)] = 34539, + [SMALL_STATE(999)] = 34584, + [SMALL_STATE(1000)] = 34635, + [SMALL_STATE(1001)] = 34680, + [SMALL_STATE(1002)] = 34739, + [SMALL_STATE(1003)] = 34798, + [SMALL_STATE(1004)] = 34857, + [SMALL_STATE(1005)] = 34916, + [SMALL_STATE(1006)] = 34975, + [SMALL_STATE(1007)] = 35050, + [SMALL_STATE(1008)] = 35125, + [SMALL_STATE(1009)] = 35184, + [SMALL_STATE(1010)] = 35229, + [SMALL_STATE(1011)] = 35304, + [SMALL_STATE(1012)] = 35376, + [SMALL_STATE(1013)] = 35448, + [SMALL_STATE(1014)] = 35520, + [SMALL_STATE(1015)] = 35592, + [SMALL_STATE(1016)] = 35664, + [SMALL_STATE(1017)] = 35736, + [SMALL_STATE(1018)] = 35808, + [SMALL_STATE(1019)] = 35880, + [SMALL_STATE(1020)] = 35950, + [SMALL_STATE(1021)] = 36022, + [SMALL_STATE(1022)] = 36094, + [SMALL_STATE(1023)] = 36138, + [SMALL_STATE(1024)] = 36208, + [SMALL_STATE(1025)] = 36278, + [SMALL_STATE(1026)] = 36350, + [SMALL_STATE(1027)] = 36422, + [SMALL_STATE(1028)] = 36494, + [SMALL_STATE(1029)] = 36566, + [SMALL_STATE(1030)] = 36638, + [SMALL_STATE(1031)] = 36710, + [SMALL_STATE(1032)] = 36782, + [SMALL_STATE(1033)] = 36854, + [SMALL_STATE(1034)] = 36926, + [SMALL_STATE(1035)] = 36998, + [SMALL_STATE(1036)] = 37070, + [SMALL_STATE(1037)] = 37142, + [SMALL_STATE(1038)] = 37214, + [SMALL_STATE(1039)] = 37286, + [SMALL_STATE(1040)] = 37358, + [SMALL_STATE(1041)] = 37430, + [SMALL_STATE(1042)] = 37502, + [SMALL_STATE(1043)] = 37574, + [SMALL_STATE(1044)] = 37646, + [SMALL_STATE(1045)] = 37718, + [SMALL_STATE(1046)] = 37790, + [SMALL_STATE(1047)] = 37862, + [SMALL_STATE(1048)] = 37934, + [SMALL_STATE(1049)] = 38006, + [SMALL_STATE(1050)] = 38078, + [SMALL_STATE(1051)] = 38150, + [SMALL_STATE(1052)] = 38222, + [SMALL_STATE(1053)] = 38294, + [SMALL_STATE(1054)] = 38366, + [SMALL_STATE(1055)] = 38438, + [SMALL_STATE(1056)] = 38510, + [SMALL_STATE(1057)] = 38582, + [SMALL_STATE(1058)] = 38654, + [SMALL_STATE(1059)] = 38726, + [SMALL_STATE(1060)] = 38798, + [SMALL_STATE(1061)] = 38870, + [SMALL_STATE(1062)] = 38942, + [SMALL_STATE(1063)] = 39014, + [SMALL_STATE(1064)] = 39084, + [SMALL_STATE(1065)] = 39156, + [SMALL_STATE(1066)] = 39228, + [SMALL_STATE(1067)] = 39300, + [SMALL_STATE(1068)] = 39372, + [SMALL_STATE(1069)] = 39444, + [SMALL_STATE(1070)] = 39516, + [SMALL_STATE(1071)] = 39588, + [SMALL_STATE(1072)] = 39660, + [SMALL_STATE(1073)] = 39732, + [SMALL_STATE(1074)] = 39804, + [SMALL_STATE(1075)] = 39876, + [SMALL_STATE(1076)] = 39948, + [SMALL_STATE(1077)] = 40020, + [SMALL_STATE(1078)] = 40092, + [SMALL_STATE(1079)] = 40164, + [SMALL_STATE(1080)] = 40236, + [SMALL_STATE(1081)] = 40308, + [SMALL_STATE(1082)] = 40380, + [SMALL_STATE(1083)] = 40452, + [SMALL_STATE(1084)] = 40524, + [SMALL_STATE(1085)] = 40596, + [SMALL_STATE(1086)] = 40666, + [SMALL_STATE(1087)] = 40738, + [SMALL_STATE(1088)] = 40808, + [SMALL_STATE(1089)] = 40880, + [SMALL_STATE(1090)] = 40952, + [SMALL_STATE(1091)] = 41007, + [SMALL_STATE(1092)] = 41066, + [SMALL_STATE(1093)] = 41105, + [SMALL_STATE(1094)] = 41174, + [SMALL_STATE(1095)] = 41213, + [SMALL_STATE(1096)] = 41282, + [SMALL_STATE(1097)] = 41351, + [SMALL_STATE(1098)] = 41390, + [SMALL_STATE(1099)] = 41459, + [SMALL_STATE(1100)] = 41528, + [SMALL_STATE(1101)] = 41583, + [SMALL_STATE(1102)] = 41652, + [SMALL_STATE(1103)] = 41721, + [SMALL_STATE(1104)] = 41760, + [SMALL_STATE(1105)] = 41829, + [SMALL_STATE(1106)] = 41898, + [SMALL_STATE(1107)] = 41967, + [SMALL_STATE(1108)] = 42036, + [SMALL_STATE(1109)] = 42105, + [SMALL_STATE(1110)] = 42160, + [SMALL_STATE(1111)] = 42229, + [SMALL_STATE(1112)] = 42298, + [SMALL_STATE(1113)] = 42367, + [SMALL_STATE(1114)] = 42406, + [SMALL_STATE(1115)] = 42475, + [SMALL_STATE(1116)] = 42514, + [SMALL_STATE(1117)] = 42553, + [SMALL_STATE(1118)] = 42592, + [SMALL_STATE(1119)] = 42661, + [SMALL_STATE(1120)] = 42728, + [SMALL_STATE(1121)] = 42797, + [SMALL_STATE(1122)] = 42866, + [SMALL_STATE(1123)] = 42935, + [SMALL_STATE(1124)] = 43004, + [SMALL_STATE(1125)] = 43055, + [SMALL_STATE(1126)] = 43124, + [SMALL_STATE(1127)] = 43177, + [SMALL_STATE(1128)] = 43246, + [SMALL_STATE(1129)] = 43299, + [SMALL_STATE(1130)] = 43356, + [SMALL_STATE(1131)] = 43425, + [SMALL_STATE(1132)] = 43494, + [SMALL_STATE(1133)] = 43563, + [SMALL_STATE(1134)] = 43624, + [SMALL_STATE(1135)] = 43687, + [SMALL_STATE(1136)] = 43736, + [SMALL_STATE(1137)] = 43801, + [SMALL_STATE(1138)] = 43864, + [SMALL_STATE(1139)] = 43919, + [SMALL_STATE(1140)] = 43988, + [SMALL_STATE(1141)] = 44026, + [SMALL_STATE(1142)] = 44060, + [SMALL_STATE(1143)] = 44094, + [SMALL_STATE(1144)] = 44128, + [SMALL_STATE(1145)] = 44162, + [SMALL_STATE(1146)] = 44196, + [SMALL_STATE(1147)] = 44230, + [SMALL_STATE(1148)] = 44264, + [SMALL_STATE(1149)] = 44302, + [SMALL_STATE(1150)] = 44336, + [SMALL_STATE(1151)] = 44372, + [SMALL_STATE(1152)] = 44406, + [SMALL_STATE(1153)] = 44440, + [SMALL_STATE(1154)] = 44474, + [SMALL_STATE(1155)] = 44526, + [SMALL_STATE(1156)] = 44560, + [SMALL_STATE(1157)] = 44598, + [SMALL_STATE(1158)] = 44632, + [SMALL_STATE(1159)] = 44666, + [SMALL_STATE(1160)] = 44718, + [SMALL_STATE(1161)] = 44752, + [SMALL_STATE(1162)] = 44786, + [SMALL_STATE(1163)] = 44820, + [SMALL_STATE(1164)] = 44854, + [SMALL_STATE(1165)] = 44888, + [SMALL_STATE(1166)] = 44922, + [SMALL_STATE(1167)] = 44958, + [SMALL_STATE(1168)] = 44996, + [SMALL_STATE(1169)] = 45030, + [SMALL_STATE(1170)] = 45064, + [SMALL_STATE(1171)] = 45098, + [SMALL_STATE(1172)] = 45132, + [SMALL_STATE(1173)] = 45166, + [SMALL_STATE(1174)] = 45232, + [SMALL_STATE(1175)] = 45266, + [SMALL_STATE(1176)] = 45300, + [SMALL_STATE(1177)] = 45334, + [SMALL_STATE(1178)] = 45383, + [SMALL_STATE(1179)] = 45432, + [SMALL_STATE(1180)] = 45481, + [SMALL_STATE(1181)] = 45530, + [SMALL_STATE(1182)] = 45579, + [SMALL_STATE(1183)] = 45628, + [SMALL_STATE(1184)] = 45677, + [SMALL_STATE(1185)] = 45726, + [SMALL_STATE(1186)] = 45775, + [SMALL_STATE(1187)] = 45824, + [SMALL_STATE(1188)] = 45862, + [SMALL_STATE(1189)] = 45908, + [SMALL_STATE(1190)] = 45942, + [SMALL_STATE(1191)] = 45988, + [SMALL_STATE(1192)] = 46034, + [SMALL_STATE(1193)] = 46080, + [SMALL_STATE(1194)] = 46126, + [SMALL_STATE(1195)] = 46172, + [SMALL_STATE(1196)] = 46215, + [SMALL_STATE(1197)] = 46252, + [SMALL_STATE(1198)] = 46295, + [SMALL_STATE(1199)] = 46338, + [SMALL_STATE(1200)] = 46381, + [SMALL_STATE(1201)] = 46424, + [SMALL_STATE(1202)] = 46467, + [SMALL_STATE(1203)] = 46510, + [SMALL_STATE(1204)] = 46553, + [SMALL_STATE(1205)] = 46596, + [SMALL_STATE(1206)] = 46639, + [SMALL_STATE(1207)] = 46682, + [SMALL_STATE(1208)] = 46725, + [SMALL_STATE(1209)] = 46768, + [SMALL_STATE(1210)] = 46811, + [SMALL_STATE(1211)] = 46854, + [SMALL_STATE(1212)] = 46897, + [SMALL_STATE(1213)] = 46940, + [SMALL_STATE(1214)] = 46995, + [SMALL_STATE(1215)] = 47038, + [SMALL_STATE(1216)] = 47081, + [SMALL_STATE(1217)] = 47124, + [SMALL_STATE(1218)] = 47179, + [SMALL_STATE(1219)] = 47222, + [SMALL_STATE(1220)] = 47265, + [SMALL_STATE(1221)] = 47308, + [SMALL_STATE(1222)] = 47341, + [SMALL_STATE(1223)] = 47384, + [SMALL_STATE(1224)] = 47427, + [SMALL_STATE(1225)] = 47470, + [SMALL_STATE(1226)] = 47513, + [SMALL_STATE(1227)] = 47556, + [SMALL_STATE(1228)] = 47599, + [SMALL_STATE(1229)] = 47642, + [SMALL_STATE(1230)] = 47685, + [SMALL_STATE(1231)] = 47725, + [SMALL_STATE(1232)] = 47765, + [SMALL_STATE(1233)] = 47805, + [SMALL_STATE(1234)] = 47843, + [SMALL_STATE(1235)] = 47883, + [SMALL_STATE(1236)] = 47923, + [SMALL_STATE(1237)] = 47963, + [SMALL_STATE(1238)] = 47991, + [SMALL_STATE(1239)] = 48041, + [SMALL_STATE(1240)] = 48081, + [SMALL_STATE(1241)] = 48121, + [SMALL_STATE(1242)] = 48161, + [SMALL_STATE(1243)] = 48201, + [SMALL_STATE(1244)] = 48241, + [SMALL_STATE(1245)] = 48281, + [SMALL_STATE(1246)] = 48321, + [SMALL_STATE(1247)] = 48361, + [SMALL_STATE(1248)] = 48401, + [SMALL_STATE(1249)] = 48429, + [SMALL_STATE(1250)] = 48469, + [SMALL_STATE(1251)] = 48497, + [SMALL_STATE(1252)] = 48533, + [SMALL_STATE(1253)] = 48573, + [SMALL_STATE(1254)] = 48613, + [SMALL_STATE(1255)] = 48653, + [SMALL_STATE(1256)] = 48681, + [SMALL_STATE(1257)] = 48721, + [SMALL_STATE(1258)] = 48761, + [SMALL_STATE(1259)] = 48801, + [SMALL_STATE(1260)] = 48841, + [SMALL_STATE(1261)] = 48869, + [SMALL_STATE(1262)] = 48909, + [SMALL_STATE(1263)] = 48949, + [SMALL_STATE(1264)] = 48977, + [SMALL_STATE(1265)] = 49017, + [SMALL_STATE(1266)] = 49053, + [SMALL_STATE(1267)] = 49093, + [SMALL_STATE(1268)] = 49133, + [SMALL_STATE(1269)] = 49173, + [SMALL_STATE(1270)] = 49201, + [SMALL_STATE(1271)] = 49241, + [SMALL_STATE(1272)] = 49275, + [SMALL_STATE(1273)] = 49315, + [SMALL_STATE(1274)] = 49351, + [SMALL_STATE(1275)] = 49391, + [SMALL_STATE(1276)] = 49431, + [SMALL_STATE(1277)] = 49471, + [SMALL_STATE(1278)] = 49513, + [SMALL_STATE(1279)] = 49557, + [SMALL_STATE(1280)] = 49603, + [SMALL_STATE(1281)] = 49649, + [SMALL_STATE(1282)] = 49689, + [SMALL_STATE(1283)] = 49737, + [SMALL_STATE(1284)] = 49765, + [SMALL_STATE(1285)] = 49797, + [SMALL_STATE(1286)] = 49837, + [SMALL_STATE(1287)] = 49877, + [SMALL_STATE(1288)] = 49905, + [SMALL_STATE(1289)] = 49933, + [SMALL_STATE(1290)] = 49981, + [SMALL_STATE(1291)] = 50026, + [SMALL_STATE(1292)] = 50065, + [SMALL_STATE(1293)] = 50092, + [SMALL_STATE(1294)] = 50141, + [SMALL_STATE(1295)] = 50172, + [SMALL_STATE(1296)] = 50199, + [SMALL_STATE(1297)] = 50226, + [SMALL_STATE(1298)] = 50271, + [SMALL_STATE(1299)] = 50304, + [SMALL_STATE(1300)] = 50339, + [SMALL_STATE(1301)] = 50366, + [SMALL_STATE(1302)] = 50393, + [SMALL_STATE(1303)] = 50430, + [SMALL_STATE(1304)] = 50475, + [SMALL_STATE(1305)] = 50502, + [SMALL_STATE(1306)] = 50547, + [SMALL_STATE(1307)] = 50588, + [SMALL_STATE(1308)] = 50631, + [SMALL_STATE(1309)] = 50676, + [SMALL_STATE(1310)] = 50721, + [SMALL_STATE(1311)] = 50748, + [SMALL_STATE(1312)] = 50775, + [SMALL_STATE(1313)] = 50804, + [SMALL_STATE(1314)] = 50849, + [SMALL_STATE(1315)] = 50898, + [SMALL_STATE(1316)] = 50925, + [SMALL_STATE(1317)] = 50970, + [SMALL_STATE(1318)] = 51015, + [SMALL_STATE(1319)] = 51042, + [SMALL_STATE(1320)] = 51087, + [SMALL_STATE(1321)] = 51132, + [SMALL_STATE(1322)] = 51177, + [SMALL_STATE(1323)] = 51207, + [SMALL_STATE(1324)] = 51237, + [SMALL_STATE(1325)] = 51267, + [SMALL_STATE(1326)] = 51292, + [SMALL_STATE(1327)] = 51321, + [SMALL_STATE(1328)] = 51346, + [SMALL_STATE(1329)] = 51375, + [SMALL_STATE(1330)] = 51409, + [SMALL_STATE(1331)] = 51433, + [SMALL_STATE(1332)] = 51471, + [SMALL_STATE(1333)] = 51509, + [SMALL_STATE(1334)] = 51547, + [SMALL_STATE(1335)] = 51585, + [SMALL_STATE(1336)] = 51626, + [SMALL_STATE(1337)] = 51667, + [SMALL_STATE(1338)] = 51708, + [SMALL_STATE(1339)] = 51749, + [SMALL_STATE(1340)] = 51781, + [SMALL_STATE(1341)] = 51813, + [SMALL_STATE(1342)] = 51845, + [SMALL_STATE(1343)] = 51877, + [SMALL_STATE(1344)] = 51909, + [SMALL_STATE(1345)] = 51941, + [SMALL_STATE(1346)] = 51963, + [SMALL_STATE(1347)] = 52001, + [SMALL_STATE(1348)] = 52039, + [SMALL_STATE(1349)] = 52071, + [SMALL_STATE(1350)] = 52103, + [SMALL_STATE(1351)] = 52135, + [SMALL_STATE(1352)] = 52167, + [SMALL_STATE(1353)] = 52191, + [SMALL_STATE(1354)] = 52223, + [SMALL_STATE(1355)] = 52261, + [SMALL_STATE(1356)] = 52293, + [SMALL_STATE(1357)] = 52331, + [SMALL_STATE(1358)] = 52369, + [SMALL_STATE(1359)] = 52398, + [SMALL_STATE(1360)] = 52425, + [SMALL_STATE(1361)] = 52452, + [SMALL_STATE(1362)] = 52479, + [SMALL_STATE(1363)] = 52502, + [SMALL_STATE(1364)] = 52529, + [SMALL_STATE(1365)] = 52552, + [SMALL_STATE(1366)] = 52579, + [SMALL_STATE(1367)] = 52602, + [SMALL_STATE(1368)] = 52633, + [SMALL_STATE(1369)] = 52662, + [SMALL_STATE(1370)] = 52691, + [SMALL_STATE(1371)] = 52720, + [SMALL_STATE(1372)] = 52749, + [SMALL_STATE(1373)] = 52776, + [SMALL_STATE(1374)] = 52805, + [SMALL_STATE(1375)] = 52834, + [SMALL_STATE(1376)] = 52863, + [SMALL_STATE(1377)] = 52890, + [SMALL_STATE(1378)] = 52917, + [SMALL_STATE(1379)] = 52946, + [SMALL_STATE(1380)] = 52975, + [SMALL_STATE(1381)] = 53002, + [SMALL_STATE(1382)] = 53029, + [SMALL_STATE(1383)] = 53047, + [SMALL_STATE(1384)] = 53079, + [SMALL_STATE(1385)] = 53101, + [SMALL_STATE(1386)] = 53119, + [SMALL_STATE(1387)] = 53151, + [SMALL_STATE(1388)] = 53173, + [SMALL_STATE(1389)] = 53197, + [SMALL_STATE(1390)] = 53229, + [SMALL_STATE(1391)] = 53261, + [SMALL_STATE(1392)] = 53293, + [SMALL_STATE(1393)] = 53317, + [SMALL_STATE(1394)] = 53349, + [SMALL_STATE(1395)] = 53367, + [SMALL_STATE(1396)] = 53392, + [SMALL_STATE(1397)] = 53421, + [SMALL_STATE(1398)] = 53450, + [SMALL_STATE(1399)] = 53479, + [SMALL_STATE(1400)] = 53508, + [SMALL_STATE(1401)] = 53537, + [SMALL_STATE(1402)] = 53558, + [SMALL_STATE(1403)] = 53583, + [SMALL_STATE(1404)] = 53612, + [SMALL_STATE(1405)] = 53641, + [SMALL_STATE(1406)] = 53662, + [SMALL_STATE(1407)] = 53689, + [SMALL_STATE(1408)] = 53718, + [SMALL_STATE(1409)] = 53743, + [SMALL_STATE(1410)] = 53772, + [SMALL_STATE(1411)] = 53801, + [SMALL_STATE(1412)] = 53830, + [SMALL_STATE(1413)] = 53859, + [SMALL_STATE(1414)] = 53888, + [SMALL_STATE(1415)] = 53917, + [SMALL_STATE(1416)] = 53942, + [SMALL_STATE(1417)] = 53963, + [SMALL_STATE(1418)] = 53984, + [SMALL_STATE(1419)] = 54013, + [SMALL_STATE(1420)] = 54042, + [SMALL_STATE(1421)] = 54063, + [SMALL_STATE(1422)] = 54092, + [SMALL_STATE(1423)] = 54121, + [SMALL_STATE(1424)] = 54150, + [SMALL_STATE(1425)] = 54179, + [SMALL_STATE(1426)] = 54205, + [SMALL_STATE(1427)] = 54223, + [SMALL_STATE(1428)] = 54249, + [SMALL_STATE(1429)] = 54265, + [SMALL_STATE(1430)] = 54285, + [SMALL_STATE(1431)] = 54311, + [SMALL_STATE(1432)] = 54327, + [SMALL_STATE(1433)] = 54343, + [SMALL_STATE(1434)] = 54359, + [SMALL_STATE(1435)] = 54375, + [SMALL_STATE(1436)] = 54391, + [SMALL_STATE(1437)] = 54407, + [SMALL_STATE(1438)] = 54423, + [SMALL_STATE(1439)] = 54439, + [SMALL_STATE(1440)] = 54459, + [SMALL_STATE(1441)] = 54483, + [SMALL_STATE(1442)] = 54503, + [SMALL_STATE(1443)] = 54519, + [SMALL_STATE(1444)] = 54535, + [SMALL_STATE(1445)] = 54559, + [SMALL_STATE(1446)] = 54575, + [SMALL_STATE(1447)] = 54591, + [SMALL_STATE(1448)] = 54607, + [SMALL_STATE(1449)] = 54633, + [SMALL_STATE(1450)] = 54659, + [SMALL_STATE(1451)] = 54682, + [SMALL_STATE(1452)] = 54699, + [SMALL_STATE(1453)] = 54722, + [SMALL_STATE(1454)] = 54745, + [SMALL_STATE(1455)] = 54762, + [SMALL_STATE(1456)] = 54780, + [SMALL_STATE(1457)] = 54794, + [SMALL_STATE(1458)] = 54808, + [SMALL_STATE(1459)] = 54826, + [SMALL_STATE(1460)] = 54844, + [SMALL_STATE(1461)] = 54858, + [SMALL_STATE(1462)] = 54872, + [SMALL_STATE(1463)] = 54890, + [SMALL_STATE(1464)] = 54906, + [SMALL_STATE(1465)] = 54922, + [SMALL_STATE(1466)] = 54936, + [SMALL_STATE(1467)] = 54954, + [SMALL_STATE(1468)] = 54968, + [SMALL_STATE(1469)] = 54982, + [SMALL_STATE(1470)] = 55000, + [SMALL_STATE(1471)] = 55018, + [SMALL_STATE(1472)] = 55036, + [SMALL_STATE(1473)] = 55050, + [SMALL_STATE(1474)] = 55064, + [SMALL_STATE(1475)] = 55080, + [SMALL_STATE(1476)] = 55094, + [SMALL_STATE(1477)] = 55108, + [SMALL_STATE(1478)] = 55127, + [SMALL_STATE(1479)] = 55138, + [SMALL_STATE(1480)] = 55155, + [SMALL_STATE(1481)] = 55174, + [SMALL_STATE(1482)] = 55193, + [SMALL_STATE(1483)] = 55204, + [SMALL_STATE(1484)] = 55223, + [SMALL_STATE(1485)] = 55242, + [SMALL_STATE(1486)] = 55261, + [SMALL_STATE(1487)] = 55280, + [SMALL_STATE(1488)] = 55299, + [SMALL_STATE(1489)] = 55310, + [SMALL_STATE(1490)] = 55321, + [SMALL_STATE(1491)] = 55332, + [SMALL_STATE(1492)] = 55343, + [SMALL_STATE(1493)] = 55354, + [SMALL_STATE(1494)] = 55373, + [SMALL_STATE(1495)] = 55392, + [SMALL_STATE(1496)] = 55411, + [SMALL_STATE(1497)] = 55430, + [SMALL_STATE(1498)] = 55441, + [SMALL_STATE(1499)] = 55452, + [SMALL_STATE(1500)] = 55469, + [SMALL_STATE(1501)] = 55480, + [SMALL_STATE(1502)] = 55499, + [SMALL_STATE(1503)] = 55510, + [SMALL_STATE(1504)] = 55529, + [SMALL_STATE(1505)] = 55540, + [SMALL_STATE(1506)] = 55556, + [SMALL_STATE(1507)] = 55572, + [SMALL_STATE(1508)] = 55588, + [SMALL_STATE(1509)] = 55602, + [SMALL_STATE(1510)] = 55618, + [SMALL_STATE(1511)] = 55632, + [SMALL_STATE(1512)] = 55646, + [SMALL_STATE(1513)] = 55660, + [SMALL_STATE(1514)] = 55674, + [SMALL_STATE(1515)] = 55690, + [SMALL_STATE(1516)] = 55700, + [SMALL_STATE(1517)] = 55716, + [SMALL_STATE(1518)] = 55732, + [SMALL_STATE(1519)] = 55748, + [SMALL_STATE(1520)] = 55764, + [SMALL_STATE(1521)] = 55780, + [SMALL_STATE(1522)] = 55794, + [SMALL_STATE(1523)] = 55808, + [SMALL_STATE(1524)] = 55824, + [SMALL_STATE(1525)] = 55838, + [SMALL_STATE(1526)] = 55854, + [SMALL_STATE(1527)] = 55870, + [SMALL_STATE(1528)] = 55886, + [SMALL_STATE(1529)] = 55902, + [SMALL_STATE(1530)] = 55916, + [SMALL_STATE(1531)] = 55930, + [SMALL_STATE(1532)] = 55946, + [SMALL_STATE(1533)] = 55960, + [SMALL_STATE(1534)] = 55976, + [SMALL_STATE(1535)] = 55992, + [SMALL_STATE(1536)] = 56005, + [SMALL_STATE(1537)] = 56018, + [SMALL_STATE(1538)] = 56031, + [SMALL_STATE(1539)] = 56044, + [SMALL_STATE(1540)] = 56057, + [SMALL_STATE(1541)] = 56070, + [SMALL_STATE(1542)] = 56083, + [SMALL_STATE(1543)] = 56096, + [SMALL_STATE(1544)] = 56109, + [SMALL_STATE(1545)] = 56122, + [SMALL_STATE(1546)] = 56135, + [SMALL_STATE(1547)] = 56148, + [SMALL_STATE(1548)] = 56161, + [SMALL_STATE(1549)] = 56174, + [SMALL_STATE(1550)] = 56183, + [SMALL_STATE(1551)] = 56196, + [SMALL_STATE(1552)] = 56209, + [SMALL_STATE(1553)] = 56222, + [SMALL_STATE(1554)] = 56235, + [SMALL_STATE(1555)] = 56248, + [SMALL_STATE(1556)] = 56261, + [SMALL_STATE(1557)] = 56274, + [SMALL_STATE(1558)] = 56287, + [SMALL_STATE(1559)] = 56296, + [SMALL_STATE(1560)] = 56309, + [SMALL_STATE(1561)] = 56322, + [SMALL_STATE(1562)] = 56335, + [SMALL_STATE(1563)] = 56348, + [SMALL_STATE(1564)] = 56357, + [SMALL_STATE(1565)] = 56370, + [SMALL_STATE(1566)] = 56383, + [SMALL_STATE(1567)] = 56396, + [SMALL_STATE(1568)] = 56405, + [SMALL_STATE(1569)] = 56418, + [SMALL_STATE(1570)] = 56431, + [SMALL_STATE(1571)] = 56444, + [SMALL_STATE(1572)] = 56457, + [SMALL_STATE(1573)] = 56470, + [SMALL_STATE(1574)] = 56483, + [SMALL_STATE(1575)] = 56492, + [SMALL_STATE(1576)] = 56505, + [SMALL_STATE(1577)] = 56518, + [SMALL_STATE(1578)] = 56527, + [SMALL_STATE(1579)] = 56538, + [SMALL_STATE(1580)] = 56551, + [SMALL_STATE(1581)] = 56564, + [SMALL_STATE(1582)] = 56577, + [SMALL_STATE(1583)] = 56586, + [SMALL_STATE(1584)] = 56599, + [SMALL_STATE(1585)] = 56612, + [SMALL_STATE(1586)] = 56625, + [SMALL_STATE(1587)] = 56638, + [SMALL_STATE(1588)] = 56651, + [SMALL_STATE(1589)] = 56664, + [SMALL_STATE(1590)] = 56673, + [SMALL_STATE(1591)] = 56686, + [SMALL_STATE(1592)] = 56699, + [SMALL_STATE(1593)] = 56712, + [SMALL_STATE(1594)] = 56725, + [SMALL_STATE(1595)] = 56734, + [SMALL_STATE(1596)] = 56747, + [SMALL_STATE(1597)] = 56760, + [SMALL_STATE(1598)] = 56769, + [SMALL_STATE(1599)] = 56782, + [SMALL_STATE(1600)] = 56795, + [SMALL_STATE(1601)] = 56808, + [SMALL_STATE(1602)] = 56821, + [SMALL_STATE(1603)] = 56834, + [SMALL_STATE(1604)] = 56847, + [SMALL_STATE(1605)] = 56860, + [SMALL_STATE(1606)] = 56873, + [SMALL_STATE(1607)] = 56886, + [SMALL_STATE(1608)] = 56899, + [SMALL_STATE(1609)] = 56912, + [SMALL_STATE(1610)] = 56925, + [SMALL_STATE(1611)] = 56938, + [SMALL_STATE(1612)] = 56951, + [SMALL_STATE(1613)] = 56964, + [SMALL_STATE(1614)] = 56977, + [SMALL_STATE(1615)] = 56990, + [SMALL_STATE(1616)] = 57003, + [SMALL_STATE(1617)] = 57014, + [SMALL_STATE(1618)] = 57027, + [SMALL_STATE(1619)] = 57040, + [SMALL_STATE(1620)] = 57053, + [SMALL_STATE(1621)] = 57066, + [SMALL_STATE(1622)] = 57079, + [SMALL_STATE(1623)] = 57092, + [SMALL_STATE(1624)] = 57105, + [SMALL_STATE(1625)] = 57118, + [SMALL_STATE(1626)] = 57131, + [SMALL_STATE(1627)] = 57144, + [SMALL_STATE(1628)] = 57157, + [SMALL_STATE(1629)] = 57170, + [SMALL_STATE(1630)] = 57183, + [SMALL_STATE(1631)] = 57196, + [SMALL_STATE(1632)] = 57209, + [SMALL_STATE(1633)] = 57222, + [SMALL_STATE(1634)] = 57235, + [SMALL_STATE(1635)] = 57248, + [SMALL_STATE(1636)] = 57261, + [SMALL_STATE(1637)] = 57274, + [SMALL_STATE(1638)] = 57287, + [SMALL_STATE(1639)] = 57300, + [SMALL_STATE(1640)] = 57310, + [SMALL_STATE(1641)] = 57318, + [SMALL_STATE(1642)] = 57328, + [SMALL_STATE(1643)] = 57336, + [SMALL_STATE(1644)] = 57344, + [SMALL_STATE(1645)] = 57352, + [SMALL_STATE(1646)] = 57362, + [SMALL_STATE(1647)] = 57372, + [SMALL_STATE(1648)] = 57380, + [SMALL_STATE(1649)] = 57390, + [SMALL_STATE(1650)] = 57400, + [SMALL_STATE(1651)] = 57410, + [SMALL_STATE(1652)] = 57420, + [SMALL_STATE(1653)] = 57430, + [SMALL_STATE(1654)] = 57440, + [SMALL_STATE(1655)] = 57450, + [SMALL_STATE(1656)] = 57458, + [SMALL_STATE(1657)] = 57466, + [SMALL_STATE(1658)] = 57474, + [SMALL_STATE(1659)] = 57484, + [SMALL_STATE(1660)] = 57492, + [SMALL_STATE(1661)] = 57500, + [SMALL_STATE(1662)] = 57510, + [SMALL_STATE(1663)] = 57520, + [SMALL_STATE(1664)] = 57530, + [SMALL_STATE(1665)] = 57540, + [SMALL_STATE(1666)] = 57550, + [SMALL_STATE(1667)] = 57558, + [SMALL_STATE(1668)] = 57568, + [SMALL_STATE(1669)] = 57578, + [SMALL_STATE(1670)] = 57588, + [SMALL_STATE(1671)] = 57598, + [SMALL_STATE(1672)] = 57608, + [SMALL_STATE(1673)] = 57618, + [SMALL_STATE(1674)] = 57628, + [SMALL_STATE(1675)] = 57638, + [SMALL_STATE(1676)] = 57646, + [SMALL_STATE(1677)] = 57654, + [SMALL_STATE(1678)] = 57664, + [SMALL_STATE(1679)] = 57674, + [SMALL_STATE(1680)] = 57684, + [SMALL_STATE(1681)] = 57694, + [SMALL_STATE(1682)] = 57702, + [SMALL_STATE(1683)] = 57712, + [SMALL_STATE(1684)] = 57722, + [SMALL_STATE(1685)] = 57732, + [SMALL_STATE(1686)] = 57742, + [SMALL_STATE(1687)] = 57752, + [SMALL_STATE(1688)] = 57762, + [SMALL_STATE(1689)] = 57772, + [SMALL_STATE(1690)] = 57782, + [SMALL_STATE(1691)] = 57792, + [SMALL_STATE(1692)] = 57802, + [SMALL_STATE(1693)] = 57812, + [SMALL_STATE(1694)] = 57822, + [SMALL_STATE(1695)] = 57830, + [SMALL_STATE(1696)] = 57838, + [SMALL_STATE(1697)] = 57846, + [SMALL_STATE(1698)] = 57856, + [SMALL_STATE(1699)] = 57866, + [SMALL_STATE(1700)] = 57876, + [SMALL_STATE(1701)] = 57886, + [SMALL_STATE(1702)] = 57896, + [SMALL_STATE(1703)] = 57906, + [SMALL_STATE(1704)] = 57914, + [SMALL_STATE(1705)] = 57924, + [SMALL_STATE(1706)] = 57932, + [SMALL_STATE(1707)] = 57940, + [SMALL_STATE(1708)] = 57950, + [SMALL_STATE(1709)] = 57960, + [SMALL_STATE(1710)] = 57970, + [SMALL_STATE(1711)] = 57980, + [SMALL_STATE(1712)] = 57990, + [SMALL_STATE(1713)] = 58000, + [SMALL_STATE(1714)] = 58008, + [SMALL_STATE(1715)] = 58018, + [SMALL_STATE(1716)] = 58025, + [SMALL_STATE(1717)] = 58032, + [SMALL_STATE(1718)] = 58039, + [SMALL_STATE(1719)] = 58046, + [SMALL_STATE(1720)] = 58053, + [SMALL_STATE(1721)] = 58060, + [SMALL_STATE(1722)] = 58067, + [SMALL_STATE(1723)] = 58074, + [SMALL_STATE(1724)] = 58081, + [SMALL_STATE(1725)] = 58088, + [SMALL_STATE(1726)] = 58095, + [SMALL_STATE(1727)] = 58102, + [SMALL_STATE(1728)] = 58109, + [SMALL_STATE(1729)] = 58116, + [SMALL_STATE(1730)] = 58123, + [SMALL_STATE(1731)] = 58130, + [SMALL_STATE(1732)] = 58137, + [SMALL_STATE(1733)] = 58144, + [SMALL_STATE(1734)] = 58151, + [SMALL_STATE(1735)] = 58158, + [SMALL_STATE(1736)] = 58165, + [SMALL_STATE(1737)] = 58172, + [SMALL_STATE(1738)] = 58179, + [SMALL_STATE(1739)] = 58186, + [SMALL_STATE(1740)] = 58193, + [SMALL_STATE(1741)] = 58200, + [SMALL_STATE(1742)] = 58207, + [SMALL_STATE(1743)] = 58214, + [SMALL_STATE(1744)] = 58221, + [SMALL_STATE(1745)] = 58228, + [SMALL_STATE(1746)] = 58235, + [SMALL_STATE(1747)] = 58242, + [SMALL_STATE(1748)] = 58249, + [SMALL_STATE(1749)] = 58256, + [SMALL_STATE(1750)] = 58263, + [SMALL_STATE(1751)] = 58270, + [SMALL_STATE(1752)] = 58277, + [SMALL_STATE(1753)] = 58284, + [SMALL_STATE(1754)] = 58291, + [SMALL_STATE(1755)] = 58298, + [SMALL_STATE(1756)] = 58305, + [SMALL_STATE(1757)] = 58312, + [SMALL_STATE(1758)] = 58319, + [SMALL_STATE(1759)] = 58326, + [SMALL_STATE(1760)] = 58333, + [SMALL_STATE(1761)] = 58340, + [SMALL_STATE(1762)] = 58347, + [SMALL_STATE(1763)] = 58354, + [SMALL_STATE(1764)] = 58361, + [SMALL_STATE(1765)] = 58368, + [SMALL_STATE(1766)] = 58375, + [SMALL_STATE(1767)] = 58382, + [SMALL_STATE(1768)] = 58389, + [SMALL_STATE(1769)] = 58396, + [SMALL_STATE(1770)] = 58403, + [SMALL_STATE(1771)] = 58410, + [SMALL_STATE(1772)] = 58417, + [SMALL_STATE(1773)] = 58424, + [SMALL_STATE(1774)] = 58431, + [SMALL_STATE(1775)] = 58438, + [SMALL_STATE(1776)] = 58445, + [SMALL_STATE(1777)] = 58452, + [SMALL_STATE(1778)] = 58459, + [SMALL_STATE(1779)] = 58466, + [SMALL_STATE(1780)] = 58473, + [SMALL_STATE(1781)] = 58480, + [SMALL_STATE(1782)] = 58487, + [SMALL_STATE(1783)] = 58494, + [SMALL_STATE(1784)] = 58501, + [SMALL_STATE(1785)] = 58508, + [SMALL_STATE(1786)] = 58515, + [SMALL_STATE(1787)] = 58522, + [SMALL_STATE(1788)] = 58529, + [SMALL_STATE(1789)] = 58536, + [SMALL_STATE(1790)] = 58543, + [SMALL_STATE(1791)] = 58550, + [SMALL_STATE(1792)] = 58557, + [SMALL_STATE(1793)] = 58564, + [SMALL_STATE(1794)] = 58571, + [SMALL_STATE(1795)] = 58578, + [SMALL_STATE(1796)] = 58585, + [SMALL_STATE(1797)] = 58592, + [SMALL_STATE(1798)] = 58599, + [SMALL_STATE(1799)] = 58606, + [SMALL_STATE(1800)] = 58613, + [SMALL_STATE(1801)] = 58620, + [SMALL_STATE(1802)] = 58627, + [SMALL_STATE(1803)] = 58634, + [SMALL_STATE(1804)] = 58641, + [SMALL_STATE(1805)] = 58648, + [SMALL_STATE(1806)] = 58655, + [SMALL_STATE(1807)] = 58662, + [SMALL_STATE(1808)] = 58669, + [SMALL_STATE(1809)] = 58676, + [SMALL_STATE(1810)] = 58683, + [SMALL_STATE(1811)] = 58690, + [SMALL_STATE(1812)] = 58697, + [SMALL_STATE(1813)] = 58704, + [SMALL_STATE(1814)] = 58711, + [SMALL_STATE(1815)] = 58718, + [SMALL_STATE(1816)] = 58725, + [SMALL_STATE(1817)] = 58732, + [SMALL_STATE(1818)] = 58739, + [SMALL_STATE(1819)] = 58746, + [SMALL_STATE(1820)] = 58753, + [SMALL_STATE(1821)] = 58760, + [SMALL_STATE(1822)] = 58767, + [SMALL_STATE(1823)] = 58774, + [SMALL_STATE(1824)] = 58781, + [SMALL_STATE(1825)] = 58788, + [SMALL_STATE(1826)] = 58795, + [SMALL_STATE(1827)] = 58802, + [SMALL_STATE(1828)] = 58809, + [SMALL_STATE(1829)] = 58816, + [SMALL_STATE(1830)] = 58823, + [SMALL_STATE(1831)] = 58830, + [SMALL_STATE(1832)] = 58837, + [SMALL_STATE(1833)] = 58844, + [SMALL_STATE(1834)] = 58851, + [SMALL_STATE(1835)] = 58858, + [SMALL_STATE(1836)] = 58865, + [SMALL_STATE(1837)] = 58872, + [SMALL_STATE(1838)] = 58879, + [SMALL_STATE(1839)] = 58886, + [SMALL_STATE(1840)] = 58893, + [SMALL_STATE(1841)] = 58900, + [SMALL_STATE(1842)] = 58907, + [SMALL_STATE(1843)] = 58914, + [SMALL_STATE(1844)] = 58921, + [SMALL_STATE(1845)] = 58928, + [SMALL_STATE(1846)] = 58935, + [SMALL_STATE(1847)] = 58942, + [SMALL_STATE(1848)] = 58949, + [SMALL_STATE(1849)] = 58956, + [SMALL_STATE(1850)] = 58963, + [SMALL_STATE(1851)] = 58970, + [SMALL_STATE(1852)] = 58977, + [SMALL_STATE(1853)] = 58984, + [SMALL_STATE(1854)] = 58991, + [SMALL_STATE(1855)] = 58998, + [SMALL_STATE(1856)] = 59005, + [SMALL_STATE(1857)] = 59012, + [SMALL_STATE(1858)] = 59019, + [SMALL_STATE(1859)] = 59026, + [SMALL_STATE(1860)] = 59033, + [SMALL_STATE(1861)] = 59040, + [SMALL_STATE(1862)] = 59047, + [SMALL_STATE(1863)] = 59054, + [SMALL_STATE(1864)] = 59061, + [SMALL_STATE(1865)] = 59068, + [SMALL_STATE(1866)] = 59075, + [SMALL_STATE(1867)] = 59082, + [SMALL_STATE(1868)] = 59089, + [SMALL_STATE(1869)] = 59096, + [SMALL_STATE(1870)] = 59103, + [SMALL_STATE(1871)] = 59110, + [SMALL_STATE(1872)] = 59117, + [SMALL_STATE(1873)] = 59124, + [SMALL_STATE(1874)] = 59131, + [SMALL_STATE(1875)] = 59138, + [SMALL_STATE(1876)] = 59145, + [SMALL_STATE(1877)] = 59152, + [SMALL_STATE(1878)] = 59159, + [SMALL_STATE(1879)] = 59166, + [SMALL_STATE(1880)] = 59173, + [SMALL_STATE(1881)] = 59180, + [SMALL_STATE(1882)] = 59187, + [SMALL_STATE(1883)] = 59194, + [SMALL_STATE(1884)] = 59201, + [SMALL_STATE(1885)] = 59208, + [SMALL_STATE(1886)] = 59215, + [SMALL_STATE(1887)] = 59222, + [SMALL_STATE(1888)] = 59229, + [SMALL_STATE(1889)] = 59236, + [SMALL_STATE(1890)] = 59243, + [SMALL_STATE(1891)] = 59250, + [SMALL_STATE(1892)] = 59257, + [SMALL_STATE(1893)] = 59264, + [SMALL_STATE(1894)] = 59271, + [SMALL_STATE(1895)] = 59278, + [SMALL_STATE(1896)] = 59285, + [SMALL_STATE(1897)] = 59292, + [SMALL_STATE(1898)] = 59299, + [SMALL_STATE(1899)] = 59306, + [SMALL_STATE(1900)] = 59313, + [SMALL_STATE(1901)] = 59320, + [SMALL_STATE(1902)] = 59327, + [SMALL_STATE(1903)] = 59334, + [SMALL_STATE(1904)] = 59341, + [SMALL_STATE(1905)] = 59348, + [SMALL_STATE(1906)] = 59355, + [SMALL_STATE(1907)] = 59362, + [SMALL_STATE(1908)] = 59369, + [SMALL_STATE(1909)] = 59376, + [SMALL_STATE(1910)] = 59383, + [SMALL_STATE(1911)] = 59390, + [SMALL_STATE(1912)] = 59397, + [SMALL_STATE(1913)] = 59404, + [SMALL_STATE(1914)] = 59411, + [SMALL_STATE(1915)] = 59418, + [SMALL_STATE(1916)] = 59425, + [SMALL_STATE(1917)] = 59432, + [SMALL_STATE(1918)] = 59439, + [SMALL_STATE(1919)] = 59446, + [SMALL_STATE(1920)] = 59453, + [SMALL_STATE(1921)] = 59460, + [SMALL_STATE(1922)] = 59467, + [SMALL_STATE(1923)] = 59474, + [SMALL_STATE(1924)] = 59481, + [SMALL_STATE(1925)] = 59488, + [SMALL_STATE(1926)] = 59495, + [SMALL_STATE(1927)] = 59502, + [SMALL_STATE(1928)] = 59509, + [SMALL_STATE(1929)] = 59516, + [SMALL_STATE(1930)] = 59523, + [SMALL_STATE(1931)] = 59530, + [SMALL_STATE(1932)] = 59537, + [SMALL_STATE(1933)] = 59544, + [SMALL_STATE(1934)] = 59551, + [SMALL_STATE(1935)] = 59558, + [SMALL_STATE(1936)] = 59565, + [SMALL_STATE(1937)] = 59572, + [SMALL_STATE(1938)] = 59579, + [SMALL_STATE(1939)] = 59586, + [SMALL_STATE(1940)] = 59593, + [SMALL_STATE(1941)] = 59600, + [SMALL_STATE(1942)] = 59607, + [SMALL_STATE(1943)] = 59614, + [SMALL_STATE(1944)] = 59621, + [SMALL_STATE(1945)] = 59628, + [SMALL_STATE(1946)] = 59635, + [SMALL_STATE(1947)] = 59642, + [SMALL_STATE(1948)] = 59649, + [SMALL_STATE(1949)] = 59656, + [SMALL_STATE(1950)] = 59663, + [SMALL_STATE(1951)] = 59670, + [SMALL_STATE(1952)] = 59677, + [SMALL_STATE(1953)] = 59684, + [SMALL_STATE(1954)] = 59691, + [SMALL_STATE(1955)] = 59698, + [SMALL_STATE(1956)] = 59705, + [SMALL_STATE(1957)] = 59712, + [SMALL_STATE(1958)] = 59719, + [SMALL_STATE(1959)] = 59726, + [SMALL_STATE(1960)] = 59733, + [SMALL_STATE(1961)] = 59740, + [SMALL_STATE(1962)] = 59747, + [SMALL_STATE(1963)] = 59754, + [SMALL_STATE(1964)] = 59761, + [SMALL_STATE(1965)] = 59768, + [SMALL_STATE(1966)] = 59775, + [SMALL_STATE(1967)] = 59782, + [SMALL_STATE(1968)] = 59789, + [SMALL_STATE(1969)] = 59796, + [SMALL_STATE(1970)] = 59803, + [SMALL_STATE(1971)] = 59810, + [SMALL_STATE(1972)] = 59817, + [SMALL_STATE(1973)] = 59824, + [SMALL_STATE(1974)] = 59831, + [SMALL_STATE(1975)] = 59838, + [SMALL_STATE(1976)] = 59845, + [SMALL_STATE(1977)] = 59852, + [SMALL_STATE(1978)] = 59859, + [SMALL_STATE(1979)] = 59866, + [SMALL_STATE(1980)] = 59873, + [SMALL_STATE(1981)] = 59880, + [SMALL_STATE(1982)] = 59887, + [SMALL_STATE(1983)] = 59894, + [SMALL_STATE(1984)] = 59901, + [SMALL_STATE(1985)] = 59908, + [SMALL_STATE(1986)] = 59915, + [SMALL_STATE(1987)] = 59922, + [SMALL_STATE(1988)] = 59929, + [SMALL_STATE(1989)] = 59936, + [SMALL_STATE(1990)] = 59943, + [SMALL_STATE(1991)] = 59950, + [SMALL_STATE(1992)] = 59957, + [SMALL_STATE(1993)] = 59964, + [SMALL_STATE(1994)] = 59971, + [SMALL_STATE(1995)] = 59978, + [SMALL_STATE(1996)] = 59985, + [SMALL_STATE(1997)] = 59992, + [SMALL_STATE(1998)] = 59999, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -112761,2085 +114369,2154 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(575), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 34), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 34), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 14), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 14), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(568), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1366), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1743), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1214), - [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1744), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1594), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(516), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(712), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(712), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(676), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(97), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1134), - [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(909), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1931), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1592), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1928), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1147), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(28), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(897), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(875), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(958), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1136), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1478), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1432), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1433), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1658), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1649), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(707), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1823), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1661), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(433), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1935), - [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(654), - [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1930), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1799), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1752), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(696), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(705), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1911), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1909), - [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1424), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(806), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1599), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1461), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(806), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(803), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), - [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1379), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1834), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1206), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1796), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1619), - [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(160), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1129), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(915), - [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(43), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1651), - [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1627), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(739), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 35), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 15), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 35), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 15), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(573), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1416), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1807), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1275), + [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(1808), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1645), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(516), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(742), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(742), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(740), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(121), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1182), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(922), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1947), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1691), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1809), + [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1161), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(30), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(902), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(875), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(981), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1147), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1551), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1487), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1486), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1711), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1649), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(693), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1977), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1658), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(312), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1996), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(605), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1832), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1839), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1816), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(731), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(726), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1842), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1474), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(797), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1655), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1525), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(797), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(789), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(571), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1420), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1896), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1281), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1859), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1646), + [397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(157), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1184), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(920), + [406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(45), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1663), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(732), [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1830), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1647), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(440), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1936), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(656), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1822), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1819), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1802), - [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1361), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1747), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1250), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1745), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1668), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(344), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1126), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(944), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(46), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1621), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1659), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(724), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1809), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1623), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(431), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1921), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(653), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1721), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1776), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1727), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(571), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1376), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1849), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1216), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1835), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1625), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(352), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1120), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(926), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(49), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1628), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1613), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(717), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1804), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1626), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(333), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1937), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(640), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1850), - [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1762), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1839), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1648), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(231), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(617), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1976), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1975), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1865), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(570), + [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1417), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1727), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1272), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1728), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1697), + [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(378), + [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1179), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(916), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), + [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1671), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1712), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(691), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1775), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1672), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(330), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1982), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(591), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1772), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1771), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1730), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(572), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1401), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1910), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1253), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1897), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1685), + [651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(277), + [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1177), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(953), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1662), + [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1682), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(752), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1750), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1670), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(392), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1998), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(604), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1828), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1827), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1901), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), [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(575), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1364), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1873), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1217), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1934), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1590), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1405), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1995), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1236), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1991), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1707), [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(516), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), - [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(712), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(676), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1154), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(943), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1931), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1592), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1928), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(30), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(897), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(742), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(742), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(740), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1185), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(951), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1947), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1691), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1809), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1161), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(39), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(902), [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(875), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(958), - [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1136), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1478), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1432), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1433), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1595), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1597), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(691), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1919), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1598), - [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(422), - [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1916), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(649), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1915), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1914), - [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1912), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(696), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(705), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1911), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1909), - [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1424), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1124), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1599), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1461), - [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1124), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(803), - [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(570), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(516), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(712), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(712), - [851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(676), - [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(97), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1134), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(897), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1931), - [866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1592), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1928), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(875), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(958), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1136), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1478), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1432), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1433), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1658), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1649), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1661), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(433), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1935), - [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(654), - [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1930), - [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1799), - [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1752), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(696), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(705), - [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1911), - [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1909), - [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1424), - [935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(806), - [938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1599), - [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1461), - [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(806), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(803), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), - [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(160), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1129), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(43), - [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1651), - [977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1627), - [980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1647), - [983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(440), - [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1936), - [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(656), - [992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1822), - [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1819), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1802), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 8), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(565), - [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(352), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1120), - [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(49), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1628), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1613), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1626), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(333), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1937), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(640), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1850), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1762), - [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1839), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 8), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(345), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), - [1067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1595), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1597), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1598), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(422), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1916), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(649), - [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1915), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1914), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1912), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(344), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1126), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1621), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1659), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1623), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(431), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1921), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(653), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1721), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1776), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1727), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(564), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1593), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1648), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1926), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(981), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1147), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1551), + [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1487), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1486), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1687), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1678), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(703), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1791), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1664), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(431), + [792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1796), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(590), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1819), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1825), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1831), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(731), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(726), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1841), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1842), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1474), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), + [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1655), + [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1525), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1166), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(789), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(565), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(516), + [855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(742), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(742), + [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(740), + [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(121), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1182), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(902), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1947), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1691), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1809), + [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(30), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(875), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(981), + [891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1147), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1551), + [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1487), + [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1486), + [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1711), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1649), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1658), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(312), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1996), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1832), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1839), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1816), + [930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(731), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(726), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1842), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1474), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(797), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1655), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1525), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(797), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(789), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(566), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(157), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1184), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(45), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1650), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1663), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1648), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(231), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1997), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(617), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1976), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1975), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1865), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(567), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(378), + [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1179), + [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(1671), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1712), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1672), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(330), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1982), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(591), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1772), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1771), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1730), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(569), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(277), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1177), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1662), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1682), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1670), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(392), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1998), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(604), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1828), + [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1827), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(564), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(307), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1185), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(39), + [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1687), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1678), + [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1664), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(431), + [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1796), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(590), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1819), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1825), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1831), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(568), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1641), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1654), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1987), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 22), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 46), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 108), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 108), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 102), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 102), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 52), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 52), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 61), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 61), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 28), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 28), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 40), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 45), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 26), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 24), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 66), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 66), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 23), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 23), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 76), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 77), - [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 77), - [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), - [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), - [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 79), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 79), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 80), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 80), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 88), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 88), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 90), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 90), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 101), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 101), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 47), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 47), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 23), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 23), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 7, .production_id = 89), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 7, .production_id = 89), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 62), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 64), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 64), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 67), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 67), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 29), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 27), + [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 25), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [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_switch_statement, 3, .production_id = 24), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 24), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 77), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 77), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 78), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 79), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 79), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 80), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 80), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 81), + [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 81), + [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 93), + [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 93), + [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 95), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 95), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 101), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 101), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 102), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 102), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 103), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 103), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 109), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 109), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 63), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 63), [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 100), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 99), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 94), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 93), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 93), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 92), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 91), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [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}}, SHIFT(346), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 15), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 18), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 73), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 73), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 14), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 35), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 35), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 34), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 34), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 59), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 34), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 34), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 58), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 58), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 57), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 54), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 54), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 33), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 32), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 32), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(822), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(516), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(712), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(712), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(676), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(345), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1657), - [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1595), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1597), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(691), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1919), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1598), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(422), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1916), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(649), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1915), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1914), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1912), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(696), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(705), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1911), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1909), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1424), - [1538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(806), - [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1599), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1461), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(806), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(803), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(824), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(344), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1593), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(710), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1648), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1926), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(827), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1621), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1659), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(724), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1809), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1623), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(431), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1921), - [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(653), - [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1721), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1776), - [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1727), - [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(825), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(160), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(43), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1651), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1627), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(739), - [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1830), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1647), - [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(440), - [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1936), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(656), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1822), - [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1819), - [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1802), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(828), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(97), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), - [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1658), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1649), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(707), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1823), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1661), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(433), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1935), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(654), - [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1930), - [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1799), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1752), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(826), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(352), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(49), - [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1628), - [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1613), - [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(717), - [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1804), - [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1626), - [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(333), - [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1937), - [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(640), - [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1850), - [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1762), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1839), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 53), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 53), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 46), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 46), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 41), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 14), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 14), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 15), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 15), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 15), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 15), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 15), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 15), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 36), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 16), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 16), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 19), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 74), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 74), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 35), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 34), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 33), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 3), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 60), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 35), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 59), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 59), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 58), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 55), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 55), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 30), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(824), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(516), + [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(742), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(742), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(740), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(121), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1709), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(30), + [1492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1711), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1649), + [1498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(693), + [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1977), + [1504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1658), + [1507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(312), + [1510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1996), + [1513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(605), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1832), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1839), + [1522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1816), + [1525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(731), + [1528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(726), + [1531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), + [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1842), + [1537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1474), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(797), + [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1655), + [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1525), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(797), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(789), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(825), + [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(307), + [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(39), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1687), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1678), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(703), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1791), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1664), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(431), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1796), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(590), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1819), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1825), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1831), + [1597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(823), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(378), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), + [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1671), + [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1712), + [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(691), + [1615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1775), + [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1672), + [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(330), + [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1982), + [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(591), + [1630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1772), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1771), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1730), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(820), + [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1641), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(676), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1829), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1654), + [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1987), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(826), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(157), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(45), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1650), + [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1663), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(732), + [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1830), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1648), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(231), + [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1997), + [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(617), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1976), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1975), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1865), + [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(822), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(277), + [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1662), + [1713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1682), + [1716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(752), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1750), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1670), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(392), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1998), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(604), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1828), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1827), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 34), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1133), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1851), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1215), - [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1697), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1634), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(897), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1931), - [1930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1652), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1928), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(875), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(958), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1136), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1478), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1432), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1433), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 34), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1966] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1114), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1852), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1212), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1763), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1640), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1853), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1213), - [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1811), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1646), - [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1795), - [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1258), - [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1840), - [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1614), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1150), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1912), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1285), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1756), + [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1698), + [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(902), + [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1947), + [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1651), + [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1809), + [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(875), + [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(981), + [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1147), + [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1551), + [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1487), + [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1486), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 35), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 35), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1968] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1138), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1913), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1270), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1826), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1704), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1858), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1235), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1798), + [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1701), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1914), + [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1286), + [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1873), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1710), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(753), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1461), - [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [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 = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(755), + [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1525), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 39), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), - [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 56), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 8), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 10), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 55), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 9), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 81), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 81), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 83), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 83), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 72), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 68), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 111), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 111), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 106), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 106), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 31), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 31), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 97), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 97), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 39), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 47), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(823), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(897), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1931), - [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1652), - [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1928), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(875), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 73), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 34), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 34), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 58), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 59), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 28), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 52), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 52), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 14), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 89), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 89), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 36), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 36), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 28), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 35), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 34), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 14), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(900), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1149), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), REDUCE(sym__function_declaration_specifiers, 1, .production_id = 2), - [2639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), REDUCE(sym__function_declaration_specifiers, 1, .production_id = 2), - [2642] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), REDUCE(sym__function_declaration_specifiers, 1, .production_id = 2), SHIFT(1163), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 38), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_specifiers, 1, .production_id = 2), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_specifiers, 1, .production_id = 2), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declaration_specifiers, 1, .production_id = 2), SHIFT(1163), - [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_specifiers, 2, .production_id = 11), - [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_specifiers, 2, .production_id = 11), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declaration_specifiers, 2, .production_id = 11), SHIFT(1163), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), REDUCE(sym__function_declaration_specifiers, 2, .production_id = 11), - [2705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), REDUCE(sym__function_declaration_specifiers, 2, .production_id = 11), - [2708] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 11), REDUCE(sym__function_declaration_specifiers, 2, .production_id = 11), SHIFT(1163), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 51), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), REDUCE(sym__function_declaration_specifiers, 3, .production_id = 11), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 11), REDUCE(sym__function_declaration_specifiers, 3, .production_id = 11), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 87), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 42), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 56), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 108), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 57), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 99), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 82), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 84), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 40), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 40), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 4), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), + [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 70), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), + [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 48), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 26), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 10), + [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 10), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 11), + [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 11), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 4), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), + [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 107), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 73), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 98), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 32), + [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__expression, 1), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 85), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 112), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 69), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 4), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [2446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(821), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(902), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1947), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1651), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1809), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(875), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 15), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 15), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 35), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 36), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 29), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 37), + [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 15), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 15), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 29), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 90), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 90), + [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 59), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 59), + [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 35), + [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 60), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 60), + [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 29), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, .production_id = 53), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, .production_id = 53), + [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 53), + [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 53), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 37), + [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 74), + [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 74), + [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, .production_id = 90), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, .production_id = 90), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(926), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 12), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 2), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 12), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), + [2643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1157), + [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 39), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [2678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1947), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 88), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 43), SHIFT(1947), + [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 65), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [2786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_specifiers, 2, .production_id = 2), - [2788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_specifiers, 2, .production_id = 2), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), REDUCE(sym__function_declaration_specifiers, 2, .production_id = 2), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 2), REDUCE(sym__function_declaration_specifiers, 2, .production_id = 2), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_specifiers, 3, .production_id = 11), - [2812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_specifiers, 3, .production_id = 11), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 64), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 6), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 6), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), - [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 65), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 44), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 44), - [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 48), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), - [3006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 44), - [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1114), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 19), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 52), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 20), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 20), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 22), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 22), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 45), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 45), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), + [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 20), SHIFT(1947), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 21), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 20), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 43), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 49), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 66), [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 21), - [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 21), - [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 19), - [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 11), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 12), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 19), - [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(875), - [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3081] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1114), - [3085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 11), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), - [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_type_repeat1, 2), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_type_repeat1, 2), - [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_type_repeat1, 2), SHIFT_REPEAT(1165), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 11), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1294), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1293), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 10), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 36), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 25), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 6), SHIFT(1841), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 29), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 29), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1592), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 29), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 29), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1931), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 27), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 85), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 85), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 85), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 27), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 70), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 50), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 50), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 28), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 27), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 86), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 86), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 71), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 71), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 50), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 50), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 29), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 29), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 50), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 86), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 86), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 50), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 71), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 43), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 43), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 27), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 86), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 86), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 37), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 50), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 29), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 29), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 40), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [3660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1455), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 16), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), - [3667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 50), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 71), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(695), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1757), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 61), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 49), - [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 60), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 29), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 86), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 50), - [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 71), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 74), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 50), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 17), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 67), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 82), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1450), - [3752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1450), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_definition_declarator, 1), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 41), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 82), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 67), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 95), SHIFT_REPEAT(1392), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 95), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 96), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 95), SHIFT_REPEAT(1382), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 95), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 104), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), SHIFT_REPEAT(1422), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 109), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 113), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 5), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1609), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1300), - [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 53), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), SHIFT_REPEAT(1327), - [3967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 53), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1671), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(609), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1210), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1636), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(762), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), SHIFT_REPEAT(1317), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 53), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(552), - [4052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 67), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 103), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 67), - [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 75), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 105), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1098), - [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1917), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 112), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 103), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 96), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 113), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 110), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 27), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 105), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 41), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 73), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 59), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 58), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 58), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 35), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 73), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4548] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 66), SHIFT(1947), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 5), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 5), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1138), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 20), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 21), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(875), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 13), + [3054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 13), + [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 22), + [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [3070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 20), + [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 45), + [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [3082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(1947), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 45), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 12), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 22), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3152] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1138), + [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 2), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 12), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 12), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 2), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 26), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 11), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 11), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1327), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1325), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 4), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [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}}, REDUCE(sym_preproc_argument_list, 2), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 37), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), + [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 2), SHIFT_REPEAT(1330), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 5), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 5), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [3434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(1743), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__typedef_sized_type_specifier, 1), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), + [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), SHIFT(1138), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typedef_type_specifier, 1, .production_id = 1), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1691), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 31), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1947), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 31), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 28), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 86), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 86), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 86), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 28), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 71), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 87), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 51), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 51), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 31), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 51), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 72), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 72), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 72), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 51), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 29), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 87), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 87), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 44), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 28), + [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 51), + [3704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 51), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 38), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 62), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 17), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [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}}, SHIFT(616), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [3738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1515), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(700), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1868), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), + [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 72), + [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), + [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 51), + [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 28), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 50), + [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 41), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 51), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 31), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), + [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 87), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 61), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 51), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 75), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 87), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 72), + [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 51), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 31), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 18), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1373), + [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, .production_id = 54), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 97), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1476), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 110), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 83), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 68), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 68), + [3903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1429), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 96), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 42), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 105), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), SHIFT_REPEAT(1439), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 96), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [3945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1531), + [3948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1531), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 83), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(621), + [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1246), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1659), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [3988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(760), + [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 76), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(552), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, .production_id = 28), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 68), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 104), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 68), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 106), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1090), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 104), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 97), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 111), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), SHIFT_REPEAT(1895), + [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 113), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 114), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 114), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1699), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), SHIFT_REPEAT(1379), + [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat2, 2, .production_id = 54), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), SHIFT_REPEAT(1353), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 54), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1665), + [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 42), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 106), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4516] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 36), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 74), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [4618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 59), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 74), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 60), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 59), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), }; #ifdef __cplusplus