From 9f47d1843f3e459663cda3cf56e512ea65f79706 Mon Sep 17 00:00:00 2001 From: Lewis Russell Date: Tue, 13 Feb 2024 14:09:11 +0000 Subject: [PATCH] fix: allow function definitions to contain preproc attributes Specifically for Neovim which contains code like: ```c Dictionary nvim_eval_statusline(String str, Dict(eval_statusline) *opts, Arena *arena, Error *err) FUNC_API_SINCE(8) FUNC_API_FAST { ... } ``` --- grammar.js | 35 +- src/grammar.json | 228 +- src/node-types.json | 30 +- src/parser.c | 150961 ++++++++++++++++---------------- test/corpus/declarations.txt | 32 + 5 files changed, 77542 insertions(+), 73744 deletions(-) diff --git a/grammar.js b/grammar.js index a6c66f5..ba91dfd 100644 --- a/grammar.js +++ b/grammar.js @@ -67,6 +67,7 @@ module.exports = grammar({ [$.enum_specifier], [$._type_specifier, $._old_style_parameter_list], [$.parameter_list, $._old_style_parameter_list], + [$.function_declarator, $._function_declaration_declarator], ], word: $ => $.identifier, @@ -244,13 +245,15 @@ module.exports = grammar({ declaration: $ => seq( $._declaration_specifiers, - $._declaration_declarator, + commaSep1(field('declarator', choice( + seq( + $._declaration_declarator, + optional($.gnu_asm_expression), + ), + $.init_declarator, + ))), ';', ), - _declaration_declarator: $ => commaSep1(field('declarator', choice( - seq($._declarator, optional($.gnu_asm_expression)), - $.init_declarator, - ))), type_definition: $ => seq( optional('__extension__'), @@ -357,6 +360,15 @@ module.exports = grammar({ $.identifier, ), + _declaration_declarator: $ => choice( + $.attributed_declarator, + $.pointer_declarator, + alias($._function_declaration_declarator, $.function_declarator), + $.array_declarator, + $.parenthesized_declarator, + $.identifier, + ), + _field_declarator: $ => choice( alias($.attributed_field_declarator, $.attributed_declarator), alias($.pointer_field_declarator, $.pointer_declarator), @@ -446,12 +458,25 @@ module.exports = grammar({ ))), function_declarator: $ => prec.right(1, + seq( + field('declarator', $._declarator), + field('parameters', $.parameter_list), + optional($.gnu_asm_expression), + repeat(choice( + $.attribute_specifier, + $.identifier, + alias($.preproc_call_expression, $.call_expression), + )), + )), + + _function_declaration_declarator: $ => prec.right(1, seq( field('declarator', $._declarator), field('parameters', $.parameter_list), optional($.gnu_asm_expression), repeat($.attribute_specifier), )), + function_field_declarator: $ => prec(1, seq( field('declarator', $._field_declarator), field('parameters', $.parameter_list), diff --git a/src/grammar.json b/src/grammar.json index ec374c7..26af088 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2796,97 +2796,93 @@ "name": "_declaration_specifiers" }, { - "type": "SYMBOL", - "name": "_declaration_declarator" - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - "_declaration_declarator": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "gnu_asm_expression" + "name": "_declaration_declarator" }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" } ] - }, - { - "type": "SYMBOL", - "name": "init_declarator" } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_declarator" - }, - { - "type": "CHOICE", + "type": "SEQ", "members": [ { "type": "SYMBOL", - "name": "gnu_asm_expression" + "name": "_declaration_declarator" }, { - "type": "BLANK" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] } ] + }, + { + "type": "SYMBOL", + "name": "init_declarator" } ] - }, - { - "type": "SYMBOL", - "name": "init_declarator" } - ] - } + } + ] } - ] - } + } + ] + }, + { + "type": "STRING", + "value": ";" } ] }, @@ -3351,6 +3347,40 @@ } ] }, + "_declaration_declarator": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attributed_declarator" + }, + { + "type": "SYMBOL", + "name": "pointer_declarator" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_function_declaration_declarator" + }, + "named": true, + "value": "function_declarator" + }, + { + "type": "SYMBOL", + "name": "array_declarator" + }, + { + "type": "SYMBOL", + "name": "parenthesized_declarator" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, "_field_declarator": { "type": "CHOICE", "members": [ @@ -3848,6 +3878,68 @@ } }, "function_declarator": { + "type": "PREC_RIGHT", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "declarator", + "content": { + "type": "SYMBOL", + "name": "_declarator" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameter_list" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "gnu_asm_expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_specifier" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "preproc_call_expression" + }, + "named": true, + "value": "call_expression" + } + ] + } + } + ] + } + }, + "_function_declaration_declarator": { "type": "PREC_RIGHT", "value": 1, "content": { @@ -9303,6 +9395,10 @@ [ "parameter_list", "_old_style_parameter_list" + ], + [ + "function_declarator", + "_function_declaration_declarator" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index c3fba3c..85bcb85 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1204,16 +1204,36 @@ "required": true, "types": [ { - "type": "_declarator", + "type": "array_declarator", + "named": true + }, + { + "type": "attributed_declarator", + "named": true + }, + { + "type": "function_declarator", "named": true }, { "type": "gnu_asm_expression", "named": true }, + { + "type": "identifier", + "named": true + }, { "type": "init_declarator", "named": true + }, + { + "type": "parenthesized_declarator", + "named": true + }, + { + "type": "pointer_declarator", + "named": true } ] }, @@ -1722,9 +1742,17 @@ "type": "attribute_specifier", "named": true }, + { + "type": "call_expression", + "named": true + }, { "type": "gnu_asm_expression", "named": true + }, + { + "type": "identifier", + "named": true } ] } diff --git a/src/parser.c b/src/parser.c index 465b5d2..19f43f5 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2226 -#define LARGE_STATE_COUNT 557 -#define SYMBOL_COUNT 346 +#define STATE_COUNT 2300 +#define LARGE_STATE_COUNT 582 +#define SYMBOL_COUNT 348 #define ALIAS_COUNT 3 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 39 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 125 +#define PRODUCTION_ID_COUNT 127 enum ts_symbol_identifiers { sym_identifier = 1, @@ -215,23 +215,23 @@ enum ts_symbol_identifiers { sym_function_definition = 188, sym__old_style_function_definition = 189, sym_declaration = 190, - sym__declaration_declarator = 191, - sym_type_definition = 192, - sym__type_definition_type = 193, - sym__type_definition_declarators = 194, - sym__declaration_modifiers = 195, - sym__declaration_specifiers = 196, - sym_linkage_specification = 197, - sym_attribute_specifier = 198, - sym_attribute = 199, - sym_attribute_declaration = 200, - sym_ms_declspec_modifier = 201, - sym_ms_based_modifier = 202, - sym_ms_call_modifier = 203, - sym_ms_unaligned_ptr_modifier = 204, - sym_ms_pointer_modifier = 205, - sym_declaration_list = 206, - sym__declarator = 207, + sym_type_definition = 191, + sym__type_definition_type = 192, + sym__type_definition_declarators = 193, + sym__declaration_modifiers = 194, + sym__declaration_specifiers = 195, + sym_linkage_specification = 196, + sym_attribute_specifier = 197, + sym_attribute = 198, + sym_attribute_declaration = 199, + sym_ms_declspec_modifier = 200, + sym_ms_based_modifier = 201, + sym_ms_call_modifier = 202, + sym_ms_unaligned_ptr_modifier = 203, + sym_ms_pointer_modifier = 204, + sym_declaration_list = 205, + sym__declarator = 206, + sym__declaration_declarator = 207, sym__field_declarator = 208, sym__type_declarator = 209, sym__abstract_declarator = 210, @@ -247,132 +247,134 @@ enum ts_symbol_identifiers { sym_pointer_type_declarator = 220, sym_abstract_pointer_declarator = 221, sym_function_declarator = 222, - sym_function_field_declarator = 223, - sym_function_type_declarator = 224, - sym_abstract_function_declarator = 225, - sym__old_style_function_declarator = 226, - sym_array_declarator = 227, - sym_array_field_declarator = 228, - sym_array_type_declarator = 229, - sym_abstract_array_declarator = 230, - sym_init_declarator = 231, - sym_compound_statement = 232, - sym_storage_class_specifier = 233, - sym_type_qualifier = 234, - sym__type_specifier = 235, - sym_sized_type_specifier = 236, - sym_enum_specifier = 237, - sym_enumerator_list = 238, - sym_struct_specifier = 239, - sym_union_specifier = 240, - sym_field_declaration_list = 241, - sym__field_declaration_list_item = 242, - sym_field_declaration = 243, - sym__field_declaration_declarator = 244, - sym_bitfield_clause = 245, - sym_enumerator = 246, - sym_variadic_parameter = 247, - sym_parameter_list = 248, - sym__old_style_parameter_list = 249, - sym_parameter_declaration = 250, - sym_attributed_statement = 251, - sym_labeled_statement = 252, - sym__top_level_expression_statement = 253, - sym_expression_statement = 254, - sym_if_statement = 255, - sym_else_clause = 256, - sym_switch_statement = 257, - sym_case_statement = 258, - sym_while_statement = 259, - sym_do_statement = 260, - sym_for_statement = 261, - sym__for_statement_body = 262, - sym_return_statement = 263, - sym_break_statement = 264, - sym_continue_statement = 265, - sym_goto_statement = 266, - sym_seh_try_statement = 267, - sym_seh_except_clause = 268, - sym_seh_finally_clause = 269, - sym_seh_leave_statement = 270, - sym__expression = 271, - sym__expression_not_binary = 272, - sym__string = 273, - sym_comma_expression = 274, - sym_conditional_expression = 275, - sym_assignment_expression = 276, - sym_pointer_expression = 277, - sym_unary_expression = 278, - sym_binary_expression = 279, - sym_update_expression = 280, - sym_cast_expression = 281, - sym_type_descriptor = 282, - sym_sizeof_expression = 283, - sym_alignof_expression = 284, - sym_offsetof_expression = 285, - sym_generic_expression = 286, - sym_subscript_expression = 287, - sym_call_expression = 288, - sym_gnu_asm_expression = 289, - sym_gnu_asm_qualifier = 290, - sym_gnu_asm_output_operand_list = 291, - sym_gnu_asm_output_operand = 292, - sym_gnu_asm_input_operand_list = 293, - sym_gnu_asm_input_operand = 294, - sym_gnu_asm_clobber_list = 295, - sym_gnu_asm_goto_list = 296, - sym_argument_list = 297, - sym_field_expression = 298, - sym_compound_literal_expression = 299, - sym_parenthesized_expression = 300, - sym_initializer_list = 301, - sym_initializer_pair = 302, - sym_subscript_designator = 303, - sym_subscript_range_designator = 304, - sym_field_designator = 305, - sym_char_literal = 306, - sym_concatenated_string = 307, - sym_string_literal = 308, - sym_null = 309, - sym__empty_declaration = 310, - sym_macro_type_specifier = 311, - aux_sym_translation_unit_repeat1 = 312, - aux_sym_preproc_params_repeat1 = 313, - aux_sym_preproc_if_repeat1 = 314, - aux_sym_preproc_if_in_field_declaration_list_repeat1 = 315, - aux_sym_preproc_if_in_enumerator_list_repeat1 = 316, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 317, - aux_sym_preproc_argument_list_repeat1 = 318, - aux_sym__old_style_function_definition_repeat1 = 319, - aux_sym__declaration_declarator_repeat1 = 320, - aux_sym_type_definition_repeat1 = 321, - aux_sym__type_definition_type_repeat1 = 322, - aux_sym__type_definition_declarators_repeat1 = 323, - aux_sym__declaration_specifiers_repeat1 = 324, - aux_sym_attribute_declaration_repeat1 = 325, - aux_sym_attributed_declarator_repeat1 = 326, - aux_sym_pointer_declarator_repeat1 = 327, - aux_sym_sized_type_specifier_repeat1 = 328, - aux_sym_enumerator_list_repeat1 = 329, - aux_sym__field_declaration_declarator_repeat1 = 330, - aux_sym_parameter_list_repeat1 = 331, - aux_sym__old_style_parameter_list_repeat1 = 332, - aux_sym_case_statement_repeat1 = 333, - aux_sym_generic_expression_repeat1 = 334, - aux_sym_gnu_asm_expression_repeat1 = 335, - aux_sym_gnu_asm_output_operand_list_repeat1 = 336, - aux_sym_gnu_asm_input_operand_list_repeat1 = 337, - aux_sym_gnu_asm_clobber_list_repeat1 = 338, - aux_sym_gnu_asm_goto_list_repeat1 = 339, - aux_sym_argument_list_repeat1 = 340, - aux_sym_initializer_list_repeat1 = 341, - aux_sym_initializer_pair_repeat1 = 342, - aux_sym_char_literal_repeat1 = 343, - aux_sym_concatenated_string_repeat1 = 344, - aux_sym_string_literal_repeat1 = 345, - alias_sym_field_identifier = 346, - alias_sym_statement_identifier = 347, - alias_sym_type_identifier = 348, + sym__function_declaration_declarator = 223, + sym_function_field_declarator = 224, + sym_function_type_declarator = 225, + sym_abstract_function_declarator = 226, + sym__old_style_function_declarator = 227, + sym_array_declarator = 228, + sym_array_field_declarator = 229, + sym_array_type_declarator = 230, + sym_abstract_array_declarator = 231, + sym_init_declarator = 232, + sym_compound_statement = 233, + sym_storage_class_specifier = 234, + sym_type_qualifier = 235, + sym__type_specifier = 236, + sym_sized_type_specifier = 237, + sym_enum_specifier = 238, + sym_enumerator_list = 239, + sym_struct_specifier = 240, + sym_union_specifier = 241, + sym_field_declaration_list = 242, + sym__field_declaration_list_item = 243, + sym_field_declaration = 244, + sym__field_declaration_declarator = 245, + sym_bitfield_clause = 246, + sym_enumerator = 247, + sym_variadic_parameter = 248, + sym_parameter_list = 249, + sym__old_style_parameter_list = 250, + sym_parameter_declaration = 251, + sym_attributed_statement = 252, + sym_labeled_statement = 253, + sym__top_level_expression_statement = 254, + sym_expression_statement = 255, + sym_if_statement = 256, + sym_else_clause = 257, + sym_switch_statement = 258, + sym_case_statement = 259, + sym_while_statement = 260, + sym_do_statement = 261, + sym_for_statement = 262, + sym__for_statement_body = 263, + sym_return_statement = 264, + sym_break_statement = 265, + sym_continue_statement = 266, + sym_goto_statement = 267, + sym_seh_try_statement = 268, + sym_seh_except_clause = 269, + sym_seh_finally_clause = 270, + sym_seh_leave_statement = 271, + sym__expression = 272, + sym__expression_not_binary = 273, + sym__string = 274, + sym_comma_expression = 275, + sym_conditional_expression = 276, + sym_assignment_expression = 277, + sym_pointer_expression = 278, + sym_unary_expression = 279, + sym_binary_expression = 280, + sym_update_expression = 281, + sym_cast_expression = 282, + sym_type_descriptor = 283, + sym_sizeof_expression = 284, + sym_alignof_expression = 285, + sym_offsetof_expression = 286, + sym_generic_expression = 287, + sym_subscript_expression = 288, + sym_call_expression = 289, + sym_gnu_asm_expression = 290, + sym_gnu_asm_qualifier = 291, + sym_gnu_asm_output_operand_list = 292, + sym_gnu_asm_output_operand = 293, + sym_gnu_asm_input_operand_list = 294, + sym_gnu_asm_input_operand = 295, + sym_gnu_asm_clobber_list = 296, + sym_gnu_asm_goto_list = 297, + sym_argument_list = 298, + sym_field_expression = 299, + sym_compound_literal_expression = 300, + sym_parenthesized_expression = 301, + sym_initializer_list = 302, + sym_initializer_pair = 303, + sym_subscript_designator = 304, + sym_subscript_range_designator = 305, + sym_field_designator = 306, + sym_char_literal = 307, + sym_concatenated_string = 308, + sym_string_literal = 309, + sym_null = 310, + sym__empty_declaration = 311, + sym_macro_type_specifier = 312, + aux_sym_translation_unit_repeat1 = 313, + aux_sym_preproc_params_repeat1 = 314, + aux_sym_preproc_if_repeat1 = 315, + aux_sym_preproc_if_in_field_declaration_list_repeat1 = 316, + aux_sym_preproc_if_in_enumerator_list_repeat1 = 317, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1 = 318, + aux_sym_preproc_argument_list_repeat1 = 319, + aux_sym__old_style_function_definition_repeat1 = 320, + aux_sym_declaration_repeat1 = 321, + aux_sym_type_definition_repeat1 = 322, + aux_sym__type_definition_type_repeat1 = 323, + aux_sym__type_definition_declarators_repeat1 = 324, + aux_sym__declaration_specifiers_repeat1 = 325, + aux_sym_attribute_declaration_repeat1 = 326, + aux_sym_attributed_declarator_repeat1 = 327, + aux_sym_pointer_declarator_repeat1 = 328, + aux_sym_function_declarator_repeat1 = 329, + aux_sym_sized_type_specifier_repeat1 = 330, + aux_sym_enumerator_list_repeat1 = 331, + aux_sym__field_declaration_declarator_repeat1 = 332, + aux_sym_parameter_list_repeat1 = 333, + aux_sym__old_style_parameter_list_repeat1 = 334, + aux_sym_case_statement_repeat1 = 335, + aux_sym_generic_expression_repeat1 = 336, + aux_sym_gnu_asm_expression_repeat1 = 337, + aux_sym_gnu_asm_output_operand_list_repeat1 = 338, + aux_sym_gnu_asm_input_operand_list_repeat1 = 339, + aux_sym_gnu_asm_clobber_list_repeat1 = 340, + aux_sym_gnu_asm_goto_list_repeat1 = 341, + aux_sym_argument_list_repeat1 = 342, + aux_sym_initializer_list_repeat1 = 343, + aux_sym_initializer_pair_repeat1 = 344, + aux_sym_char_literal_repeat1 = 345, + aux_sym_concatenated_string_repeat1 = 346, + aux_sym_string_literal_repeat1 = 347, + alias_sym_field_identifier = 348, + alias_sym_statement_identifier = 349, + alias_sym_type_identifier = 350, }; static const char * const ts_symbol_names[] = { @@ -567,7 +569,6 @@ static const char * const ts_symbol_names[] = { [sym_function_definition] = "function_definition", [sym__old_style_function_definition] = "function_definition", [sym_declaration] = "declaration", - [sym__declaration_declarator] = "_declaration_declarator", [sym_type_definition] = "type_definition", [sym__type_definition_type] = "_type_definition_type", [sym__type_definition_declarators] = "_type_definition_declarators", @@ -584,6 +585,7 @@ static const char * const ts_symbol_names[] = { [sym_ms_pointer_modifier] = "ms_pointer_modifier", [sym_declaration_list] = "declaration_list", [sym__declarator] = "_declarator", + [sym__declaration_declarator] = "_declaration_declarator", [sym__field_declarator] = "_field_declarator", [sym__type_declarator] = "_type_declarator", [sym__abstract_declarator] = "_abstract_declarator", @@ -599,6 +601,7 @@ static const char * const ts_symbol_names[] = { [sym_pointer_type_declarator] = "pointer_declarator", [sym_abstract_pointer_declarator] = "abstract_pointer_declarator", [sym_function_declarator] = "function_declarator", + [sym__function_declaration_declarator] = "function_declarator", [sym_function_field_declarator] = "function_declarator", [sym_function_type_declarator] = "function_declarator", [sym_abstract_function_declarator] = "abstract_function_declarator", @@ -696,7 +699,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = "preproc_if_in_enumerator_list_no_comma_repeat1", [aux_sym_preproc_argument_list_repeat1] = "preproc_argument_list_repeat1", [aux_sym__old_style_function_definition_repeat1] = "_old_style_function_definition_repeat1", - [aux_sym__declaration_declarator_repeat1] = "_declaration_declarator_repeat1", + [aux_sym_declaration_repeat1] = "declaration_repeat1", [aux_sym_type_definition_repeat1] = "type_definition_repeat1", [aux_sym__type_definition_type_repeat1] = "_type_definition_type_repeat1", [aux_sym__type_definition_declarators_repeat1] = "_type_definition_declarators_repeat1", @@ -704,6 +707,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_attribute_declaration_repeat1] = "attribute_declaration_repeat1", [aux_sym_attributed_declarator_repeat1] = "attributed_declarator_repeat1", [aux_sym_pointer_declarator_repeat1] = "pointer_declarator_repeat1", + [aux_sym_function_declarator_repeat1] = "function_declarator_repeat1", [aux_sym_sized_type_specifier_repeat1] = "sized_type_specifier_repeat1", [aux_sym_enumerator_list_repeat1] = "enumerator_list_repeat1", [aux_sym__field_declaration_declarator_repeat1] = "_field_declaration_declarator_repeat1", @@ -919,7 +923,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_function_definition] = sym_function_definition, [sym__old_style_function_definition] = sym_function_definition, [sym_declaration] = sym_declaration, - [sym__declaration_declarator] = sym__declaration_declarator, [sym_type_definition] = sym_type_definition, [sym__type_definition_type] = sym__type_definition_type, [sym__type_definition_declarators] = sym__type_definition_declarators, @@ -936,6 +939,7 @@ 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__declaration_declarator] = sym__declaration_declarator, [sym__field_declarator] = sym__field_declarator, [sym__type_declarator] = sym__type_declarator, [sym__abstract_declarator] = sym__abstract_declarator, @@ -951,6 +955,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_pointer_type_declarator] = sym_pointer_declarator, [sym_abstract_pointer_declarator] = sym_abstract_pointer_declarator, [sym_function_declarator] = sym_function_declarator, + [sym__function_declaration_declarator] = sym_function_declarator, [sym_function_field_declarator] = sym_function_declarator, [sym_function_type_declarator] = sym_function_declarator, [sym_abstract_function_declarator] = sym_abstract_function_declarator, @@ -1048,7 +1053,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1] = aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, [aux_sym_preproc_argument_list_repeat1] = aux_sym_preproc_argument_list_repeat1, [aux_sym__old_style_function_definition_repeat1] = aux_sym__old_style_function_definition_repeat1, - [aux_sym__declaration_declarator_repeat1] = aux_sym__declaration_declarator_repeat1, + [aux_sym_declaration_repeat1] = aux_sym_declaration_repeat1, [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, [aux_sym__type_definition_type_repeat1] = aux_sym__type_definition_type_repeat1, [aux_sym__type_definition_declarators_repeat1] = aux_sym__type_definition_declarators_repeat1, @@ -1056,6 +1061,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_attribute_declaration_repeat1] = aux_sym_attribute_declaration_repeat1, [aux_sym_attributed_declarator_repeat1] = aux_sym_attributed_declarator_repeat1, [aux_sym_pointer_declarator_repeat1] = aux_sym_pointer_declarator_repeat1, + [aux_sym_function_declarator_repeat1] = aux_sym_function_declarator_repeat1, [aux_sym_sized_type_specifier_repeat1] = aux_sym_sized_type_specifier_repeat1, [aux_sym_enumerator_list_repeat1] = aux_sym_enumerator_list_repeat1, [aux_sym__field_declaration_declarator_repeat1] = aux_sym__field_declaration_declarator_repeat1, @@ -1844,10 +1850,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__declaration_declarator] = { - .visible = false, - .named = true, - }, [sym_type_definition] = { .visible = true, .named = true, @@ -1913,6 +1915,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = true, .supertype = true, }, + [sym__declaration_declarator] = { + .visible = false, + .named = true, + }, [sym__field_declarator] = { .visible = false, .named = true, @@ -1976,6 +1982,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__function_declaration_declarator] = { + .visible = true, + .named = true, + }, [sym_function_field_declarator] = { .visible = true, .named = true, @@ -2366,7 +2376,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__declaration_declarator_repeat1] = { + [aux_sym_declaration_repeat1] = { .visible = false, .named = false, }, @@ -2398,6 +2408,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_function_declarator_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_sized_type_specifier_repeat1] = { .visible = false, .named = false, @@ -2579,38 +2593,38 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [8] = {.index = 9, .length = 1}, [9] = {.index = 10, .length = 1}, [10] = {.index = 3, .length = 1}, - [11] = {.index = 11, .length = 1}, - [12] = {.index = 12, .length = 2}, - [13] = {.index = 14, .length = 2}, - [14] = {.index = 16, .length = 1}, - [15] = {.index = 16, .length = 1}, - [16] = {.index = 17, .length = 1}, + [11] = {.index = 11, .length = 2}, + [12] = {.index = 13, .length = 2}, + [13] = {.index = 15, .length = 2}, + [14] = {.index = 17, .length = 1}, + [15] = {.index = 17, .length = 1}, + [16] = {.index = 18, .length = 1}, [17] = {.index = 8, .length = 1}, - [18] = {.index = 18, .length = 2}, - [19] = {.index = 20, .length = 2}, - [20] = {.index = 22, .length = 1}, - [22] = {.index = 23, .length = 2}, + [18] = {.index = 19, .length = 2}, + [19] = {.index = 21, .length = 2}, + [20] = {.index = 23, .length = 1}, + [22] = {.index = 24, .length = 1}, [23] = {.index = 25, .length = 2}, - [24] = {.index = 27, .length = 1}, - [25] = {.index = 28, .length = 1}, - [26] = {.index = 29, .length = 2}, + [24] = {.index = 27, .length = 2}, + [25] = {.index = 29, .length = 1}, + [26] = {.index = 30, .length = 1}, [27] = {.index = 31, .length = 2}, - [28] = {.index = 33, .length = 1}, - [29] = {.index = 34, .length = 3}, - [30] = {.index = 37, .length = 1}, - [31] = {.index = 38, .length = 1}, - [32] = {.index = 39, .length = 2}, + [28] = {.index = 33, .length = 2}, + [29] = {.index = 35, .length = 1}, + [30] = {.index = 36, .length = 3}, + [31] = {.index = 39, .length = 1}, + [32] = {.index = 40, .length = 1}, [33] = {.index = 41, .length = 3}, [34] = {.index = 44, .length = 2}, [35] = {.index = 46, .length = 2}, - [36] = {.index = 48, .length = 2}, - [37] = {.index = 50, .length = 5}, - [38] = {.index = 55, .length = 3}, + [36] = {.index = 48, .length = 5}, + [37] = {.index = 53, .length = 3}, + [38] = {.index = 56, .length = 2}, [39] = {.index = 58, .length = 2}, - [40] = {.index = 60, .length = 2}, - [41] = {.index = 62, .length = 1}, - [42] = {.index = 63, .length = 2}, - [43] = {.index = 65, .length = 1}, + [40] = {.index = 60, .length = 1}, + [41] = {.index = 61, .length = 2}, + [42] = {.index = 63, .length = 1}, + [43] = {.index = 64, .length = 2}, [44] = {.index = 66, .length = 2}, [45] = {.index = 68, .length = 2}, [46] = {.index = 70, .length = 2}, @@ -2629,67 +2643,69 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [60] = {.index = 92, .length = 1}, [61] = {.index = 93, .length = 2}, [62] = {.index = 95, .length = 3}, - [63] = {.index = 98, .length = 2}, - [64] = {.index = 100, .length = 5}, - [65] = {.index = 105, .length = 3}, - [66] = {.index = 108, .length = 5}, - [67] = {.index = 113, .length = 2}, - [68] = {.index = 115, .length = 2}, - [69] = {.index = 117, .length = 3}, - [70] = {.index = 120, .length = 2}, - [71] = {.index = 122, .length = 2}, - [72] = {.index = 124, .length = 2}, - [73] = {.index = 126, .length = 1}, - [74] = {.index = 127, .length = 2}, - [75] = {.index = 129, .length = 2}, - [76] = {.index = 131, .length = 2}, - [77] = {.index = 133, .length = 3}, - [78] = {.index = 136, .length = 2}, - [79] = {.index = 138, .length = 2}, - [80] = {.index = 140, .length = 1}, - [81] = {.index = 141, .length = 2}, - [82] = {.index = 143, .length = 2}, - [83] = {.index = 145, .length = 4}, - [84] = {.index = 149, .length = 1}, - [85] = {.index = 150, .length = 2}, - [86] = {.index = 152, .length = 1}, - [87] = {.index = 153, .length = 1}, - [88] = {.index = 154, .length = 2}, - [89] = {.index = 156, .length = 2}, - [90] = {.index = 158, .length = 5}, - [91] = {.index = 163, .length = 3}, - [92] = {.index = 166, .length = 2}, - [93] = {.index = 168, .length = 1}, - [95] = {.index = 169, .length = 2}, - [96] = {.index = 171, .length = 2}, - [97] = {.index = 173, .length = 2}, - [98] = {.index = 175, .length = 3}, - [99] = {.index = 178, .length = 2}, - [100] = {.index = 180, .length = 2}, - [101] = {.index = 182, .length = 2}, - [102] = {.index = 184, .length = 2}, - [103] = {.index = 186, .length = 3}, - [104] = {.index = 189, .length = 2}, - [105] = {.index = 191, .length = 1}, - [106] = {.index = 192, .length = 2}, - [107] = {.index = 194, .length = 2}, - [108] = {.index = 194, .length = 2}, - [109] = {.index = 196, .length = 3}, - [110] = {.index = 199, .length = 2}, - [111] = {.index = 201, .length = 1}, - [112] = {.index = 202, .length = 4}, - [113] = {.index = 206, .length = 3}, - [114] = {.index = 209, .length = 2}, - [115] = {.index = 211, .length = 2}, - [116] = {.index = 33, .length = 1}, - [117] = {.index = 213, .length = 5}, - [118] = {.index = 218, .length = 4}, - [119] = {.index = 222, .length = 2}, - [120] = {.index = 224, .length = 2}, - [121] = {.index = 226, .length = 2}, - [122] = {.index = 228, .length = 5}, + [63] = {.index = 98, .length = 3}, + [64] = {.index = 101, .length = 2}, + [65] = {.index = 103, .length = 5}, + [66] = {.index = 108, .length = 3}, + [67] = {.index = 111, .length = 5}, + [68] = {.index = 116, .length = 2}, + [69] = {.index = 118, .length = 2}, + [70] = {.index = 120, .length = 3}, + [71] = {.index = 123, .length = 2}, + [72] = {.index = 125, .length = 2}, + [73] = {.index = 127, .length = 1}, + [74] = {.index = 128, .length = 2}, + [75] = {.index = 130, .length = 2}, + [76] = {.index = 132, .length = 2}, + [77] = {.index = 134, .length = 3}, + [78] = {.index = 137, .length = 2}, + [79] = {.index = 139, .length = 2}, + [80] = {.index = 141, .length = 2}, + [81] = {.index = 143, .length = 1}, + [82] = {.index = 144, .length = 2}, + [83] = {.index = 146, .length = 2}, + [84] = {.index = 148, .length = 4}, + [85] = {.index = 152, .length = 1}, + [86] = {.index = 153, .length = 2}, + [87] = {.index = 155, .length = 1}, + [88] = {.index = 156, .length = 1}, + [89] = {.index = 157, .length = 2}, + [90] = {.index = 159, .length = 2}, + [91] = {.index = 161, .length = 4}, + [92] = {.index = 165, .length = 5}, + [93] = {.index = 170, .length = 3}, + [94] = {.index = 173, .length = 2}, + [95] = {.index = 175, .length = 1}, + [97] = {.index = 176, .length = 2}, + [98] = {.index = 178, .length = 2}, + [99] = {.index = 180, .length = 2}, + [100] = {.index = 182, .length = 3}, + [101] = {.index = 185, .length = 2}, + [102] = {.index = 187, .length = 2}, + [103] = {.index = 189, .length = 2}, + [104] = {.index = 191, .length = 2}, + [105] = {.index = 193, .length = 3}, + [106] = {.index = 196, .length = 2}, + [107] = {.index = 198, .length = 1}, + [108] = {.index = 199, .length = 2}, + [109] = {.index = 201, .length = 2}, + [110] = {.index = 201, .length = 2}, + [111] = {.index = 203, .length = 3}, + [112] = {.index = 206, .length = 2}, + [113] = {.index = 208, .length = 1}, + [114] = {.index = 209, .length = 4}, + [115] = {.index = 213, .length = 3}, + [116] = {.index = 216, .length = 2}, + [117] = {.index = 218, .length = 2}, + [118] = {.index = 35, .length = 1}, + [119] = {.index = 220, .length = 5}, + [120] = {.index = 225, .length = 4}, + [121] = {.index = 229, .length = 2}, + [122] = {.index = 231, .length = 2}, [123] = {.index = 233, .length = 2}, - [124] = {.index = 235, .length = 3}, + [124] = {.index = 235, .length = 5}, + [125] = {.index = 240, .length = 2}, + [126] = {.index = 242, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2713,54 +2729,54 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [10] = {field_value, 1}, [11] = - {field_declarator, 0}, - [12] = + {field_declarator, 0, .inherited = true}, + {field_parameters, 0, .inherited = true}, + [13] = {field_argument, 0}, {field_operator, 1}, - [14] = + [15] = {field_arguments, 1}, {field_function, 0}, - [16] = - {field_type, 1}, [17] = - {field_path, 1}, + {field_type, 1}, [18] = + {field_path, 1}, + [19] = {field_argument, 1}, {field_directive, 0}, - [20] = + [21] = {field_declarator, 1}, {field_type, 0}, - [22] = - {field_parameters, 0}, [23] = + {field_parameters, 0}, + [24] = + {field_declarator, 0}, + [25] = {field_body, 2}, {field_value, 1}, - [25] = + [27] = {field_body, 2}, {field_name, 1}, - [27] = + [29] = {field_name, 2}, - [28] = + [30] = {field_body, 2}, - [29] = + [31] = {field_condition, 1}, {field_consequence, 2}, - [31] = + [33] = {field_body, 2}, {field_condition, 1}, - [33] = + [35] = {field_label, 1}, - [34] = + [36] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [37] = + [39] = {field_label, 0}, - [38] = + [40] = {field_declarator, 1}, - [39] = - {field_declarator, 1, .inherited = true}, - {field_type, 0, .inherited = true}, [41] = {field_body, 2}, {field_declarator, 1}, @@ -2769,49 +2785,49 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 0}, {field_parameters, 1}, [46] = - {field_declarator, 0}, {field_declarator, 1}, + {field_type, 0, .inherited = true}, [48] = - {field_declarator, 0}, - {field_declarator, 1, .inherited = true}, - [50] = {field_body, 2}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [55] = + [53] = {field_argument, 0}, {field_field, 2}, {field_operator, 1}, - [58] = + [56] = {field_name, 1}, {field_value, 2}, - [60] = + [58] = {field_name, 1}, {field_parameters, 2}, - [62] = + [60] = {field_condition, 1}, - [63] = + [61] = {field_alternative, 2}, {field_name, 1}, - [65] = + [63] = {field_type, 0, .inherited = true}, - [66] = + [64] = {field_declarator, 2}, {field_type, 0}, - [68] = + [66] = {field_left, 0}, {field_right, 2}, - [70] = + [68] = {field_type, 1}, {field_value, 3}, - [72] = + [70] = {field_declarator, 2}, {field_type, 1}, - [74] = + [72] = {field_declarator, 2, .inherited = true}, {field_type, 1, .inherited = true}, + [74] = + {field_declarator, 0}, + {field_declarator, 1, .inherited = true}, [76] = {field_name, 2}, {field_prefix, 0}, @@ -2844,205 +2860,214 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 0}, {field_value, 2}, [95] = - {field_declarator, 0}, {field_declarator, 1}, - {field_declarator, 2, .inherited = true}, + {field_declarator, 2}, + {field_type, 0, .inherited = true}, [98] = + {field_declarator, 1}, + {field_declarator, 2, .inherited = true}, + {field_type, 0, .inherited = true}, + [101] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [100] = + [103] = {field_body, 3}, {field_declarator, 1}, {field_declarator, 1, .inherited = true}, {field_parameters, 1, .inherited = true}, {field_type, 0, .inherited = true}, - [105] = + [108] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [108] = + [111] = {field_body, 3}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [113] = + [116] = {field_argument, 0}, {field_index, 2}, - [115] = + [118] = {field_alternative, 3}, {field_condition, 0}, - [117] = + [120] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [120] = + [123] = {field_alternative, 3}, {field_condition, 1}, - [122] = + [125] = {field_alternative, 3}, {field_name, 1}, - [124] = - {field_declarator, 1}, - {field_type, 0, .inherited = true}, - [126] = - {field_size, 1}, [127] = + {field_size, 1}, + [128] = {field_declarator, 3}, {field_type, 1}, - [129] = + [130] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [131] = + [132] = {field_name, 0}, {field_value, 2}, - [133] = + [134] = {field_body, 4}, {field_name, 1}, {field_underlying_type, 3}, - [136] = + [137] = + {field_declarator, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + [139] = {field_body, 4}, {field_name, 3}, - [138] = + [141] = {field_body, 1}, {field_condition, 3}, - [140] = + [143] = {field_update, 2}, - [141] = + [144] = {field_initializer, 0}, {field_update, 2}, - [143] = + [146] = {field_condition, 1}, {field_initializer, 0}, - [145] = + [148] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [149] = + [152] = {field_operand, 1}, - [150] = + [153] = {field_assembly_code, 2}, {field_output_operands, 3}, - [152] = + [155] = {field_assembly_code, 3}, - [153] = - {field_declarator, 3}, - [154] = - {field_declarator, 1}, - {field_declarator, 2}, [156] = + {field_declarator, 3}, + [157] = {field_declarator, 0}, {field_size, 2}, - [158] = + [159] = + {field_declarator, 1}, + {field_declarator, 2}, + [161] = + {field_declarator, 1}, + {field_declarator, 2}, + {field_declarator, 3, .inherited = true}, + {field_type, 0, .inherited = true}, + [165] = {field_body, 4}, {field_declarator, 2}, {field_declarator, 2, .inherited = true}, {field_parameters, 2, .inherited = true}, {field_type, 1, .inherited = true}, - [163] = + [170] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [166] = + [173] = {field_alternative, 4}, {field_condition, 1}, - [168] = + [175] = {field_size, 2}, - [169] = + [176] = {field_body, 2}, {field_filter, 1}, - [171] = + [178] = {field_declarator, 0}, {field_declarator, 2, .inherited = true}, - [173] = + [180] = {field_condition, 1}, {field_update, 3}, - [175] = + [182] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [178] = + [185] = {field_initializer, 0}, {field_update, 3}, - [180] = + [187] = {field_condition, 2}, {field_initializer, 0}, - [182] = + [189] = {field_member, 4}, {field_type, 2}, - [184] = + [191] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [186] = + [193] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [189] = + [196] = {field_assembly_code, 3}, {field_output_operands, 4}, - [191] = + [198] = {field_declarator, 4}, - [192] = + [199] = {field_declarator, 0}, {field_size, 3}, - [194] = + [201] = {field_designator, 0}, {field_value, 2}, - [196] = + [203] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [199] = + [206] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [201] = + [208] = {field_register, 1}, - [202] = + [209] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [206] = + [213] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [209] = + [216] = {field_constraint, 0}, {field_value, 2}, - [211] = + [218] = {field_register, 1}, {field_register, 2, .inherited = true}, - [213] = + [220] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [218] = + [225] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [222] = + [229] = {field_end, 3}, {field_start, 1}, - [224] = + [231] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [226] = + [233] = {field_label, 1}, {field_label, 2, .inherited = true}, - [228] = + [235] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [233] = + [240] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [235] = + [242] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -3065,19 +3090,19 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [21] = { [0] = sym_primitive_type, }, - [23] = { + [24] = { [1] = alias_sym_type_identifier, }, - [24] = { + [25] = { [2] = alias_sym_type_identifier, }, - [28] = { + [29] = { [1] = alias_sym_statement_identifier, }, - [30] = { + [31] = { [0] = alias_sym_statement_identifier, }, - [38] = { + [37] = { [2] = alias_sym_field_identifier, }, [50] = { @@ -3095,16 +3120,16 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [77] = { [1] = alias_sym_type_identifier, }, - [78] = { + [79] = { [3] = alias_sym_type_identifier, }, - [94] = { + [96] = { [1] = alias_sym_field_identifier, }, - [101] = { + [103] = { [4] = alias_sym_field_identifier, }, - [107] = { + [109] = { [0] = alias_sym_field_identifier, }, }; @@ -3117,55 +3142,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 2, - [5] = 3, - [6] = 2, - [7] = 2, + [3] = 2, + [4] = 4, + [5] = 2, + [6] = 4, + [7] = 4, [8] = 2, - [9] = 3, - [10] = 3, - [11] = 3, + [9] = 4, + [10] = 2, + [11] = 4, [12] = 12, [13] = 13, [14] = 14, - [15] = 13, - [16] = 16, - [17] = 13, - [18] = 18, - [19] = 13, - [20] = 20, - [21] = 13, - [22] = 22, - [23] = 20, - [24] = 20, - [25] = 20, - [26] = 20, - [27] = 14, + [15] = 15, + [16] = 15, + [17] = 17, + [18] = 14, + [19] = 15, + [20] = 14, + [21] = 15, + [22] = 14, + [23] = 14, + [24] = 15, + [25] = 25, + [26] = 26, + [27] = 26, [28] = 28, - [29] = 28, + [29] = 29, [30] = 30, [31] = 31, - [32] = 31, - [33] = 31, - [34] = 34, - [35] = 14, + [32] = 32, + [33] = 28, + [34] = 26, + [35] = 26, [36] = 36, - [37] = 34, - [38] = 36, - [39] = 36, + [37] = 36, + [38] = 32, + [39] = 30, [40] = 28, - [41] = 31, - [42] = 28, - [43] = 31, - [44] = 34, - [45] = 36, - [46] = 14, - [47] = 34, - [48] = 48, - [49] = 36, - [50] = 34, - [51] = 28, + [41] = 30, + [42] = 30, + [43] = 28, + [44] = 32, + [45] = 28, + [46] = 32, + [47] = 36, + [48] = 36, + [49] = 30, + [50] = 36, + [51] = 32, [52] = 52, [53] = 53, [54] = 54, @@ -3173,30 +3198,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 56, [57] = 57, [58] = 58, - [59] = 58, - [60] = 55, + [59] = 56, + [60] = 58, [61] = 57, - [62] = 56, + [62] = 55, [63] = 54, - [64] = 56, - [65] = 57, + [64] = 58, + [65] = 58, [66] = 58, - [67] = 54, - [68] = 54, - [69] = 58, + [67] = 57, + [68] = 56, + [69] = 57, [70] = 57, - [71] = 57, - [72] = 56, - [73] = 56, + [71] = 55, + [72] = 55, + [73] = 54, [74] = 55, - [75] = 55, + [75] = 56, [76] = 54, - [77] = 58, - [78] = 55, - [79] = 54, - [80] = 57, - [81] = 56, - [82] = 58, + [77] = 56, + [78] = 54, + [79] = 57, + [80] = 56, + [81] = 58, + [82] = 54, [83] = 55, [84] = 84, [85] = 84, @@ -3227,7 +3252,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [110] = 110, [111] = 111, [112] = 112, - [113] = 95, + [113] = 113, [114] = 114, [115] = 115, [116] = 116, @@ -3237,13 +3262,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [120] = 120, [121] = 121, [122] = 122, - [123] = 93, + [123] = 123, [124] = 124, [125] = 125, [126] = 126, [127] = 127, [128] = 128, - [129] = 129, + [129] = 117, [130] = 130, [131] = 131, [132] = 132, @@ -3252,8 +3277,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [135] = 135, [136] = 136, [137] = 137, - [138] = 138, - [139] = 90, + [138] = 97, + [139] = 139, [140] = 140, [141] = 141, [142] = 142, @@ -3272,950 +3297,950 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [155] = 155, [156] = 156, [157] = 157, - [158] = 158, + [158] = 90, [159] = 159, [160] = 160, - [161] = 96, - [162] = 102, - [163] = 106, - [164] = 107, - [165] = 108, - [166] = 109, - [167] = 110, - [168] = 111, - [169] = 92, - [170] = 91, - [171] = 115, - [172] = 94, - [173] = 120, - [174] = 95, - [175] = 128, - [176] = 118, - [177] = 105, - [178] = 99, - [179] = 101, - [180] = 129, - [181] = 112, - [182] = 126, - [183] = 133, - [184] = 116, - [185] = 130, - [186] = 117, - [187] = 132, - [188] = 124, - [189] = 93, - [190] = 127, - [191] = 121, - [192] = 122, - [193] = 125, - [194] = 103, - [195] = 104, - [196] = 119, - [197] = 97, - [198] = 131, - [199] = 114, - [200] = 98, - [201] = 100, - [202] = 134, - [203] = 154, - [204] = 90, - [205] = 137, - [206] = 157, - [207] = 156, - [208] = 144, - [209] = 158, - [210] = 148, - [211] = 135, - [212] = 212, - [213] = 90, - [214] = 146, - [215] = 138, - [216] = 90, - [217] = 212, - [218] = 150, - [219] = 159, - [220] = 151, - [221] = 152, - [222] = 149, - [223] = 145, - [224] = 141, - [225] = 153, - [226] = 147, - [227] = 160, - [228] = 143, - [229] = 136, - [230] = 155, - [231] = 142, - [232] = 140, - [233] = 101, - [234] = 129, - [235] = 96, - [236] = 94, - [237] = 108, - [238] = 121, - [239] = 107, - [240] = 107, - [241] = 131, - [242] = 108, - [243] = 117, - [244] = 116, - [245] = 109, - [246] = 110, - [247] = 94, - [248] = 92, - [249] = 91, - [250] = 130, - [251] = 124, - [252] = 115, - [253] = 118, - [254] = 120, - [255] = 125, - [256] = 132, - [257] = 133, - [258] = 126, - [259] = 109, + [161] = 161, + [162] = 162, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 91, + [167] = 98, + [168] = 132, + [169] = 130, + [170] = 117, + [171] = 126, + [172] = 125, + [173] = 124, + [174] = 131, + [175] = 123, + [176] = 122, + [177] = 127, + [178] = 119, + [179] = 114, + [180] = 112, + [181] = 113, + [182] = 92, + [183] = 120, + [184] = 121, + [185] = 93, + [186] = 94, + [187] = 95, + [188] = 96, + [189] = 110, + [190] = 99, + [191] = 100, + [192] = 118, + [193] = 108, + [194] = 116, + [195] = 134, + [196] = 115, + [197] = 101, + [198] = 137, + [199] = 102, + [200] = 136, + [201] = 103, + [202] = 104, + [203] = 105, + [204] = 135, + [205] = 106, + [206] = 133, + [207] = 107, + [208] = 128, + [209] = 109, + [210] = 111, + [211] = 97, + [212] = 143, + [213] = 161, + [214] = 162, + [215] = 164, + [216] = 163, + [217] = 149, + [218] = 160, + [219] = 152, + [220] = 159, + [221] = 153, + [222] = 142, + [223] = 141, + [224] = 148, + [225] = 156, + [226] = 150, + [227] = 227, + [228] = 227, + [229] = 90, + [230] = 90, + [231] = 144, + [232] = 154, + [233] = 139, + [234] = 145, + [235] = 165, + [236] = 151, + [237] = 146, + [238] = 147, + [239] = 155, + [240] = 140, + [241] = 157, + [242] = 90, + [243] = 137, + [244] = 115, + [245] = 110, + [246] = 111, + [247] = 118, + [248] = 116, + [249] = 115, + [250] = 92, + [251] = 113, + [252] = 112, + [253] = 107, + [254] = 132, + [255] = 130, + [256] = 107, + [257] = 97, + [258] = 111, + [259] = 136, [260] = 110, - [261] = 118, - [262] = 115, - [263] = 122, - [264] = 97, - [265] = 129, + [261] = 131, + [262] = 135, + [263] = 101, + [264] = 112, + [265] = 109, [266] = 91, - [267] = 128, - [268] = 92, - [269] = 94, - [270] = 95, - [271] = 100, - [272] = 131, - [273] = 96, - [274] = 99, - [275] = 125, - [276] = 120, - [277] = 101, - [278] = 119, - [279] = 97, - [280] = 112, - [281] = 122, - [282] = 114, - [283] = 111, - [284] = 100, - [285] = 130, - [286] = 124, - [287] = 121, - [288] = 117, - [289] = 98, - [290] = 102, - [291] = 93, - [292] = 128, - [293] = 116, - [294] = 99, - [295] = 119, - [296] = 104, - [297] = 103, - [298] = 114, - [299] = 98, - [300] = 102, - [301] = 127, - [302] = 105, - [303] = 106, - [304] = 104, - [305] = 105, - [306] = 126, - [307] = 133, - [308] = 127, - [309] = 103, - [310] = 104, - [311] = 105, - [312] = 102, - [313] = 98, - [314] = 106, - [315] = 132, - [316] = 116, - [317] = 117, - [318] = 121, - [319] = 122, - [320] = 97, - [321] = 131, - [322] = 100, - [323] = 128, - [324] = 129, - [325] = 103, - [326] = 126, - [327] = 133, - [328] = 132, - [329] = 125, + [267] = 133, + [268] = 106, + [269] = 113, + [270] = 105, + [271] = 104, + [272] = 92, + [273] = 102, + [274] = 135, + [275] = 103, + [276] = 132, + [277] = 120, + [278] = 130, + [279] = 109, + [280] = 126, + [281] = 102, + [282] = 101, + [283] = 100, + [284] = 125, + [285] = 117, + [286] = 128, + [287] = 126, + [288] = 125, + [289] = 99, + [290] = 124, + [291] = 124, + [292] = 123, + [293] = 123, + [294] = 122, + [295] = 98, + [296] = 121, + [297] = 96, + [298] = 122, + [299] = 118, + [300] = 95, + [301] = 94, + [302] = 93, + [303] = 114, + [304] = 119, + [305] = 127, + [306] = 128, + [307] = 122, + [308] = 131, + [309] = 116, + [310] = 136, + [311] = 134, + [312] = 108, + [313] = 137, + [314] = 115, + [315] = 111, + [316] = 110, + [317] = 127, + [318] = 109, + [319] = 91, + [320] = 106, + [321] = 105, + [322] = 104, + [323] = 103, + [324] = 102, + [325] = 121, + [326] = 101, + [327] = 100, + [328] = 99, + [329] = 98, [330] = 120, - [331] = 118, - [332] = 115, - [333] = 91, - [334] = 92, - [335] = 114, - [336] = 111, - [337] = 110, - [338] = 109, + [331] = 96, + [332] = 119, + [333] = 95, + [334] = 114, + [335] = 94, + [336] = 93, + [337] = 93, + [338] = 114, [339] = 119, - [340] = 108, - [341] = 112, + [340] = 127, + [341] = 128, [342] = 107, - [343] = 127, - [344] = 111, - [345] = 106, - [346] = 93, - [347] = 124, - [348] = 130, - [349] = 112, - [350] = 101, - [351] = 99, - [352] = 96, - [353] = 95, - [354] = 147, - [355] = 151, - [356] = 159, - [357] = 357, - [358] = 358, - [359] = 358, - [360] = 358, - [361] = 361, - [362] = 357, - [363] = 363, - [364] = 358, - [365] = 365, - [366] = 366, - [367] = 365, - [368] = 366, - [369] = 156, - [370] = 363, - [371] = 357, - [372] = 144, - [373] = 138, - [374] = 366, - [375] = 158, - [376] = 376, - [377] = 146, - [378] = 365, - [379] = 212, - [380] = 156, - [381] = 363, - [382] = 148, - [383] = 144, - [384] = 376, - [385] = 153, - [386] = 160, - [387] = 135, - [388] = 157, - [389] = 134, - [390] = 136, - [391] = 155, - [392] = 154, - [393] = 358, - [394] = 361, - [395] = 395, - [396] = 158, - [397] = 152, - [398] = 149, - [399] = 145, - [400] = 137, - [401] = 157, - [402] = 135, - [403] = 148, - [404] = 146, - [405] = 138, - [406] = 159, - [407] = 137, - [408] = 147, - [409] = 143, - [410] = 151, - [411] = 142, - [412] = 150, - [413] = 140, - [414] = 395, - [415] = 361, - [416] = 357, - [417] = 376, - [418] = 361, - [419] = 395, - [420] = 395, - [421] = 363, - [422] = 365, - [423] = 366, - [424] = 357, - [425] = 361, - [426] = 395, - [427] = 357, - [428] = 141, - [429] = 150, - [430] = 395, - [431] = 376, - [432] = 361, - [433] = 153, - [434] = 141, - [435] = 160, - [436] = 376, - [437] = 140, - [438] = 366, - [439] = 134, - [440] = 363, - [441] = 142, - [442] = 143, - [443] = 136, - [444] = 155, - [445] = 145, - [446] = 149, - [447] = 152, - [448] = 363, - [449] = 365, - [450] = 366, - [451] = 365, - [452] = 376, - [453] = 154, - [454] = 159, + [343] = 94, + [344] = 134, + [345] = 95, + [346] = 108, + [347] = 96, + [348] = 116, + [349] = 133, + [350] = 97, + [351] = 98, + [352] = 99, + [353] = 123, + [354] = 100, + [355] = 124, + [356] = 137, + [357] = 121, + [358] = 120, + [359] = 118, + [360] = 136, + [361] = 92, + [362] = 113, + [363] = 135, + [364] = 112, + [365] = 126, + [366] = 133, + [367] = 125, + [368] = 91, + [369] = 106, + [370] = 105, + [371] = 132, + [372] = 131, + [373] = 130, + [374] = 134, + [375] = 104, + [376] = 117, + [377] = 103, + [378] = 108, + [379] = 379, + [380] = 145, + [381] = 381, + [382] = 163, + [383] = 164, + [384] = 379, + [385] = 385, + [386] = 155, + [387] = 160, + [388] = 385, + [389] = 389, + [390] = 390, + [391] = 390, + [392] = 165, + [393] = 156, + [394] = 394, + [395] = 159, + [396] = 389, + [397] = 161, + [398] = 153, + [399] = 385, + [400] = 381, + [401] = 153, + [402] = 394, + [403] = 394, + [404] = 379, + [405] = 381, + [406] = 165, + [407] = 381, + [408] = 385, + [409] = 381, + [410] = 390, + [411] = 159, + [412] = 227, + [413] = 155, + [414] = 389, + [415] = 379, + [416] = 416, + [417] = 389, + [418] = 143, + [419] = 416, + [420] = 420, + [421] = 152, + [422] = 394, + [423] = 154, + [424] = 140, + [425] = 151, + [426] = 390, + [427] = 139, + [428] = 162, + [429] = 143, + [430] = 156, + [431] = 389, + [432] = 160, + [433] = 154, + [434] = 157, + [435] = 420, + [436] = 394, + [437] = 148, + [438] = 149, + [439] = 379, + [440] = 385, + [441] = 420, + [442] = 139, + [443] = 420, + [444] = 416, + [445] = 416, + [446] = 151, + [447] = 162, + [448] = 390, + [449] = 157, + [450] = 389, + [451] = 147, + [452] = 390, + [453] = 147, + [454] = 146, [455] = 146, - [456] = 212, - [457] = 147, - [458] = 136, - [459] = 137, - [460] = 151, - [461] = 153, - [462] = 135, - [463] = 156, - [464] = 160, - [465] = 157, - [466] = 144, - [467] = 467, - [468] = 134, - [469] = 138, - [470] = 145, - [471] = 149, - [472] = 472, - [473] = 143, - [474] = 155, - [475] = 158, - [476] = 150, - [477] = 142, - [478] = 154, - [479] = 148, - [480] = 140, - [481] = 152, - [482] = 482, - [483] = 483, - [484] = 483, - [485] = 482, - [486] = 482, - [487] = 482, - [488] = 483, - [489] = 483, - [490] = 483, - [491] = 482, - [492] = 482, - [493] = 483, - [494] = 483, - [495] = 483, - [496] = 482, - [497] = 482, - [498] = 212, - [499] = 499, - [500] = 500, - [501] = 212, - [502] = 212, - [503] = 90, - [504] = 212, - [505] = 505, - [506] = 506, - [507] = 506, - [508] = 506, - [509] = 506, - [510] = 506, - [511] = 506, - [512] = 506, - [513] = 506, - [514] = 506, - [515] = 506, - [516] = 516, - [517] = 506, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, + [456] = 145, + [457] = 385, + [458] = 149, + [459] = 144, + [460] = 161, + [461] = 420, + [462] = 144, + [463] = 164, + [464] = 163, + [465] = 420, + [466] = 379, + [467] = 416, + [468] = 152, + [469] = 148, + [470] = 394, + [471] = 140, + [472] = 142, + [473] = 141, + [474] = 150, + [475] = 150, + [476] = 142, + [477] = 416, + [478] = 141, + [479] = 156, + [480] = 154, + [481] = 227, + [482] = 144, + [483] = 141, + [484] = 146, + [485] = 485, + [486] = 145, + [487] = 162, + [488] = 153, + [489] = 148, + [490] = 143, + [491] = 157, + [492] = 155, + [493] = 142, + [494] = 159, + [495] = 163, + [496] = 161, + [497] = 152, + [498] = 164, + [499] = 150, + [500] = 147, + [501] = 160, + [502] = 151, + [503] = 139, + [504] = 504, + [505] = 165, + [506] = 149, + [507] = 507, + [508] = 508, + [509] = 508, + [510] = 507, + [511] = 508, + [512] = 507, + [513] = 508, + [514] = 508, + [515] = 508, + [516] = 508, + [517] = 507, + [518] = 507, + [519] = 508, + [520] = 507, + [521] = 507, + [522] = 507, + [523] = 227, [524] = 524, [525] = 525, - [526] = 526, - [527] = 527, - [528] = 528, - [529] = 528, + [526] = 227, + [527] = 227, + [528] = 227, + [529] = 90, [530] = 530, [531] = 531, - [532] = 530, + [532] = 531, [533] = 531, - [534] = 534, - [535] = 535, - [536] = 536, - [537] = 536, - [538] = 535, - [539] = 539, - [540] = 535, - [541] = 535, - [542] = 536, - [543] = 536, + [534] = 531, + [535] = 531, + [536] = 531, + [537] = 531, + [538] = 531, + [539] = 531, + [540] = 531, + [541] = 531, + [542] = 542, + [543] = 543, [544] = 544, [545] = 545, - [546] = 545, + [546] = 546, [547] = 547, - [548] = 545, + [548] = 548, [549] = 549, [550] = 550, [551] = 551, - [552] = 544, - [553] = 545, - [554] = 544, + [552] = 552, + [553] = 553, + [554] = 553, [555] = 555, - [556] = 544, - [557] = 557, - [558] = 557, - [559] = 555, + [556] = 556, + [557] = 556, + [558] = 555, + [559] = 559, [560] = 560, [561] = 561, - [562] = 562, - [563] = 563, - [564] = 562, - [565] = 562, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 562, - [570] = 562, - [571] = 567, - [572] = 567, - [573] = 573, - [574] = 574, + [562] = 561, + [563] = 560, + [564] = 564, + [565] = 560, + [566] = 561, + [567] = 561, + [568] = 560, + [569] = 569, + [570] = 569, + [571] = 571, + [572] = 572, + [573] = 572, + [574] = 569, [575] = 575, - [576] = 562, + [576] = 576, [577] = 577, - [578] = 562, - [579] = 567, + [578] = 572, + [579] = 569, [580] = 580, - [581] = 581, + [581] = 572, [582] = 582, - [583] = 567, - [584] = 562, - [585] = 585, - [586] = 555, + [583] = 582, + [584] = 584, + [585] = 571, + [586] = 586, [587] = 587, - [588] = 587, + [588] = 588, [589] = 589, - [590] = 590, + [590] = 588, [591] = 591, - [592] = 592, - [593] = 555, + [592] = 588, + [593] = 593, [594] = 594, - [595] = 595, - [596] = 596, - [597] = 587, - [598] = 598, + [595] = 588, + [596] = 588, + [597] = 594, + [598] = 594, [599] = 599, - [600] = 587, - [601] = 601, - [602] = 587, + [600] = 588, + [601] = 588, + [602] = 594, [603] = 603, - [604] = 587, - [605] = 587, + [604] = 604, + [605] = 594, [606] = 606, - [607] = 587, + [607] = 607, [608] = 608, - [609] = 589, - [610] = 610, + [609] = 609, + [610] = 588, [611] = 611, [612] = 612, [613] = 613, [614] = 614, [615] = 615, - [616] = 616, - [617] = 617, + [616] = 614, + [617] = 614, [618] = 618, - [619] = 619, + [619] = 571, [620] = 620, - [621] = 613, - [622] = 622, + [621] = 614, + [622] = 614, [623] = 623, [624] = 624, - [625] = 613, - [626] = 620, + [625] = 625, + [626] = 626, [627] = 627, [628] = 628, - [629] = 629, + [629] = 614, [630] = 630, - [631] = 620, - [632] = 613, - [633] = 623, - [634] = 622, - [635] = 617, - [636] = 616, - [637] = 615, + [631] = 631, + [632] = 571, + [633] = 614, + [634] = 634, + [635] = 635, + [636] = 614, + [637] = 611, [638] = 638, [639] = 639, - [640] = 617, - [641] = 622, - [642] = 642, - [643] = 630, + [640] = 640, + [641] = 641, + [642] = 638, + [643] = 643, [644] = 644, - [645] = 629, - [646] = 628, - [647] = 623, - [648] = 615, + [645] = 645, + [646] = 646, + [647] = 647, + [648] = 648, [649] = 649, - [650] = 620, - [651] = 639, - [652] = 622, - [653] = 649, - [654] = 654, + [650] = 639, + [651] = 643, + [652] = 652, + [653] = 644, + [654] = 648, [655] = 655, - [656] = 656, - [657] = 644, - [658] = 644, - [659] = 630, - [660] = 614, - [661] = 661, - [662] = 617, - [663] = 642, - [664] = 639, - [665] = 642, - [666] = 642, - [667] = 644, - [668] = 616, - [669] = 629, - [670] = 642, - [671] = 615, - [672] = 628, - [673] = 630, - [674] = 628, - [675] = 656, - [676] = 676, - [677] = 654, - [678] = 654, - [679] = 655, - [680] = 680, - [681] = 616, - [682] = 616, - [683] = 629, - [684] = 639, - [685] = 649, - [686] = 655, - [687] = 629, - [688] = 615, - [689] = 630, - [690] = 616, - [691] = 617, - [692] = 622, - [693] = 623, - [694] = 613, - [695] = 620, - [696] = 628, - [697] = 614, - [698] = 639, - [699] = 630, - [700] = 629, - [701] = 701, - [702] = 628, - [703] = 627, - [704] = 614, - [705] = 620, - [706] = 644, - [707] = 654, - [708] = 614, - [709] = 614, - [710] = 710, - [711] = 614, - [712] = 654, - [713] = 713, - [714] = 714, - [715] = 615, - [716] = 613, - [717] = 623, - [718] = 622, - [719] = 617, - [720] = 622, - [721] = 623, - [722] = 615, - [723] = 613, - [724] = 620, - [725] = 656, - [726] = 630, - [727] = 642, - [728] = 628, - [729] = 629, - [730] = 630, - [731] = 620, - [732] = 613, - [733] = 623, - [734] = 622, - [735] = 617, - [736] = 616, - [737] = 615, - [738] = 629, - [739] = 649, - [740] = 628, - [741] = 614, - [742] = 654, - [743] = 639, - [744] = 642, - [745] = 644, - [746] = 639, - [747] = 639, - [748] = 642, - [749] = 655, - [750] = 617, - [751] = 624, - [752] = 644, - [753] = 680, - [754] = 644, - [755] = 616, - [756] = 680, - [757] = 654, - [758] = 656, - [759] = 623, - [760] = 710, - [761] = 656, - [762] = 714, - [763] = 654, - [764] = 764, - [765] = 656, - [766] = 516, - [767] = 767, - [768] = 768, - [769] = 767, - [770] = 770, - [771] = 767, - [772] = 767, - [773] = 773, - [774] = 767, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, - [788] = 499, - [789] = 789, - [790] = 789, - [791] = 500, + [656] = 647, + [657] = 657, + [658] = 658, + [659] = 638, + [660] = 660, + [661] = 657, + [662] = 662, + [663] = 663, + [664] = 664, + [665] = 645, + [666] = 666, + [667] = 655, + [668] = 668, + [669] = 669, + [670] = 662, + [671] = 671, + [672] = 639, + [673] = 668, + [674] = 674, + [675] = 675, + [676] = 643, + [677] = 677, + [678] = 668, + [679] = 663, + [680] = 639, + [681] = 669, + [682] = 658, + [683] = 647, + [684] = 664, + [685] = 655, + [686] = 668, + [687] = 647, + [688] = 666, + [689] = 668, + [690] = 690, + [691] = 643, + [692] = 639, + [693] = 648, + [694] = 664, + [695] = 663, + [696] = 658, + [697] = 638, + [698] = 660, + [699] = 657, + [700] = 662, + [701] = 660, + [702] = 663, + [703] = 645, + [704] = 664, + [705] = 648, + [706] = 666, + [707] = 666, + [708] = 655, + [709] = 669, + [710] = 645, + [711] = 711, + [712] = 668, + [713] = 652, + [714] = 669, + [715] = 677, + [716] = 643, + [717] = 647, + [718] = 669, + [719] = 658, + [720] = 638, + [721] = 660, + [722] = 657, + [723] = 662, + [724] = 724, + [725] = 668, + [726] = 662, + [727] = 643, + [728] = 674, + [729] = 658, + [730] = 638, + [731] = 639, + [732] = 648, + [733] = 645, + [734] = 734, + [735] = 660, + [736] = 657, + [737] = 648, + [738] = 724, + [739] = 639, + [740] = 677, + [741] = 643, + [742] = 648, + [743] = 669, + [744] = 655, + [745] = 666, + [746] = 664, + [747] = 647, + [748] = 663, + [749] = 662, + [750] = 643, + [751] = 662, + [752] = 657, + [753] = 674, + [754] = 660, + [755] = 639, + [756] = 648, + [757] = 645, + [758] = 758, + [759] = 663, + [760] = 638, + [761] = 658, + [762] = 658, + [763] = 663, + [764] = 647, + [765] = 664, + [766] = 666, + [767] = 655, + [768] = 669, + [769] = 664, + [770] = 647, + [771] = 660, + [772] = 657, + [773] = 652, + [774] = 655, + [775] = 666, + [776] = 674, + [777] = 658, + [778] = 638, + [779] = 660, + [780] = 657, + [781] = 662, + [782] = 663, + [783] = 664, + [784] = 666, + [785] = 655, + [786] = 669, + [787] = 734, + [788] = 668, + [789] = 677, + [790] = 711, + [791] = 542, [792] = 792, [793] = 793, [794] = 793, [795] = 795, [796] = 793, - [797] = 797, - [798] = 798, + [797] = 793, + [798] = 793, [799] = 799, [800] = 800, - [801] = 800, - [802] = 800, + [801] = 801, + [802] = 802, [803] = 803, - [804] = 797, + [804] = 804, [805] = 805, - [806] = 800, + [806] = 806, [807] = 807, - [808] = 803, + [808] = 808, [809] = 809, - [810] = 797, + [810] = 810, [811] = 811, [812] = 812, - [813] = 813, + [813] = 524, [814] = 814, - [815] = 793, - [816] = 803, - [817] = 803, + [815] = 814, + [816] = 816, + [817] = 525, [818] = 818, [819] = 819, [820] = 820, [821] = 821, - [822] = 803, + [822] = 822, [823] = 823, [824] = 824, - [825] = 793, + [825] = 822, [826] = 826, - [827] = 800, - [828] = 797, - [829] = 797, - [830] = 830, - [831] = 775, - [832] = 832, + [827] = 827, + [828] = 828, + [829] = 829, + [830] = 819, + [831] = 831, + [832] = 819, [833] = 833, - [834] = 834, + [834] = 826, [835] = 835, [836] = 836, - [837] = 837, - [838] = 838, + [837] = 818, + [838] = 826, [839] = 839, - [840] = 792, - [841] = 841, + [840] = 818, + [841] = 826, [842] = 842, [843] = 843, - [844] = 844, - [845] = 845, - [846] = 773, - [847] = 768, - [848] = 775, - [849] = 770, + [844] = 826, + [845] = 818, + [846] = 822, + [847] = 847, + [848] = 822, + [849] = 819, [850] = 850, - [851] = 775, - [852] = 792, - [853] = 775, + [851] = 822, + [852] = 819, + [853] = 818, [854] = 854, - [855] = 854, + [855] = 855, [856] = 856, - [857] = 856, - [858] = 776, - [859] = 854, - [860] = 777, - [861] = 854, - [862] = 856, - [863] = 854, - [864] = 856, - [865] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 800, + [864] = 864, + [865] = 865, [866] = 866, - [867] = 867, + [867] = 816, [868] = 868, [869] = 869, - [870] = 867, - [871] = 867, - [872] = 872, - [873] = 867, - [874] = 867, - [875] = 867, - [876] = 876, - [877] = 877, + [870] = 870, + [871] = 795, + [872] = 799, + [873] = 800, + [874] = 792, + [875] = 800, + [876] = 800, + [877] = 816, [878] = 878, - [879] = 775, - [880] = 880, - [881] = 881, + [879] = 879, + [880] = 879, + [881] = 802, [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 885, - [890] = 878, - [891] = 884, - [892] = 887, - [893] = 839, - [894] = 894, + [883] = 882, + [884] = 879, + [885] = 882, + [886] = 879, + [887] = 801, + [888] = 882, + [889] = 879, + [890] = 882, + [891] = 891, + [892] = 891, + [893] = 893, + [894] = 891, [895] = 895, - [896] = 838, - [897] = 836, - [898] = 886, - [899] = 881, - [900] = 835, - [901] = 880, - [902] = 883, - [903] = 877, - [904] = 888, - [905] = 876, - [906] = 882, - [907] = 894, - [908] = 884, - [909] = 877, - [910] = 845, - [911] = 837, - [912] = 842, - [913] = 844, - [914] = 885, - [915] = 834, - [916] = 882, - [917] = 876, - [918] = 878, - [919] = 886, - [920] = 881, - [921] = 887, - [922] = 880, - [923] = 888, - [924] = 832, - [925] = 883, - [926] = 926, - [927] = 927, - [928] = 814, - [929] = 821, - [930] = 146, - [931] = 931, - [932] = 932, - [933] = 798, - [934] = 830, - [935] = 789, - [936] = 785, - [937] = 159, - [938] = 778, - [939] = 138, - [940] = 894, - [941] = 783, - [942] = 826, - [943] = 782, - [944] = 786, - [945] = 819, - [946] = 946, - [947] = 805, - [948] = 811, - [949] = 818, - [950] = 784, - [951] = 779, - [952] = 952, + [896] = 896, + [897] = 897, + [898] = 891, + [899] = 891, + [900] = 891, + [901] = 901, + [902] = 902, + [903] = 903, + [904] = 904, + [905] = 905, + [906] = 906, + [907] = 907, + [908] = 800, + [909] = 909, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 901, + [915] = 904, + [916] = 916, + [917] = 865, + [918] = 918, + [919] = 907, + [920] = 909, + [921] = 910, + [922] = 911, + [923] = 902, + [924] = 913, + [925] = 912, + [926] = 903, + [927] = 862, + [928] = 906, + [929] = 859, + [930] = 858, + [931] = 905, + [932] = 864, + [933] = 866, + [934] = 904, + [935] = 869, + [936] = 905, + [937] = 906, + [938] = 912, + [939] = 913, + [940] = 902, + [941] = 911, + [942] = 910, + [943] = 909, + [944] = 907, + [945] = 903, + [946] = 901, + [947] = 916, + [948] = 870, + [949] = 868, + [950] = 860, + [951] = 821, + [952] = 811, [953] = 953, [954] = 954, - [955] = 812, - [956] = 813, - [957] = 781, - [958] = 780, - [959] = 820, + [955] = 842, + [956] = 809, + [957] = 803, + [958] = 836, + [959] = 823, [960] = 960, [961] = 961, [962] = 962, - [963] = 963, - [964] = 823, - [965] = 824, - [966] = 809, - [967] = 137, - [968] = 807, - [969] = 157, - [970] = 135, - [971] = 787, - [972] = 972, - [973] = 157, - [974] = 137, - [975] = 135, - [976] = 146, - [977] = 138, - [978] = 159, - [979] = 882, - [980] = 844, - [981] = 842, - [982] = 982, - [983] = 983, - [984] = 834, - [985] = 832, - [986] = 845, - [987] = 987, - [988] = 988, - [989] = 927, - [990] = 990, - [991] = 837, + [963] = 807, + [964] = 806, + [965] = 855, + [966] = 966, + [967] = 854, + [968] = 810, + [969] = 812, + [970] = 831, + [971] = 808, + [972] = 847, + [973] = 814, + [974] = 974, + [975] = 143, + [976] = 151, + [977] = 139, + [978] = 156, + [979] = 828, + [980] = 829, + [981] = 160, + [982] = 154, + [983] = 839, + [984] = 827, + [985] = 820, + [986] = 986, + [987] = 833, + [988] = 805, + [989] = 804, + [990] = 843, + [991] = 835, [992] = 992, - [993] = 926, - [994] = 931, - [995] = 872, - [996] = 932, - [997] = 885, - [998] = 884, - [999] = 963, - [1000] = 962, - [1001] = 961, - [1002] = 960, - [1003] = 954, - [1004] = 1004, - [1005] = 953, - [1006] = 952, - [1007] = 1007, - [1008] = 946, - [1009] = 886, - [1010] = 878, - [1011] = 876, - [1012] = 888, - [1013] = 877, - [1014] = 883, - [1015] = 880, - [1016] = 887, - [1017] = 881, + [993] = 993, + [994] = 994, + [995] = 916, + [996] = 996, + [997] = 913, + [998] = 860, + [999] = 996, + [1000] = 994, + [1001] = 151, + [1002] = 993, + [1003] = 992, + [1004] = 986, + [1005] = 974, + [1006] = 1006, + [1007] = 895, + [1008] = 953, + [1009] = 143, + [1010] = 954, + [1011] = 960, + [1012] = 961, + [1013] = 868, + [1014] = 962, + [1015] = 966, + [1016] = 1016, + [1017] = 869, [1018] = 1018, - [1019] = 777, - [1020] = 499, - [1021] = 894, - [1022] = 776, - [1023] = 500, + [1019] = 904, + [1020] = 866, + [1021] = 1021, + [1022] = 139, + [1023] = 1023, [1024] = 1024, - [1025] = 954, - [1026] = 146, - [1027] = 962, - [1028] = 138, - [1029] = 1029, - [1030] = 138, - [1031] = 926, - [1032] = 931, - [1033] = 159, - [1034] = 946, - [1035] = 1035, - [1036] = 927, - [1037] = 932, - [1038] = 952, - [1039] = 963, - [1040] = 953, + [1025] = 870, + [1026] = 864, + [1027] = 1027, + [1028] = 1028, + [1029] = 154, + [1030] = 160, + [1031] = 156, + [1032] = 901, + [1033] = 903, + [1034] = 907, + [1035] = 909, + [1036] = 910, + [1037] = 911, + [1038] = 902, + [1039] = 912, + [1040] = 906, [1041] = 1041, - [1042] = 954, - [1043] = 1043, - [1044] = 960, - [1045] = 961, - [1046] = 961, - [1047] = 962, - [1048] = 1048, + [1042] = 905, + [1043] = 801, + [1044] = 525, + [1045] = 802, + [1046] = 916, + [1047] = 1047, + [1048] = 524, [1049] = 1049, - [1050] = 146, - [1051] = 963, - [1052] = 137, - [1053] = 1053, + [1050] = 151, + [1051] = 1051, + [1052] = 1052, + [1053] = 996, [1054] = 1054, - [1055] = 1055, - [1056] = 1056, - [1057] = 932, - [1058] = 931, - [1059] = 926, - [1060] = 960, - [1061] = 135, - [1062] = 157, - [1063] = 1035, - [1064] = 135, - [1065] = 137, - [1066] = 1066, - [1067] = 1035, - [1068] = 1068, - [1069] = 159, - [1070] = 953, - [1071] = 952, - [1072] = 1072, - [1073] = 157, - [1074] = 946, - [1075] = 1035, + [1055] = 143, + [1056] = 994, + [1057] = 993, + [1058] = 992, + [1059] = 986, + [1060] = 1060, + [1061] = 974, + [1062] = 953, + [1063] = 954, + [1064] = 960, + [1065] = 961, + [1066] = 962, + [1067] = 966, + [1068] = 151, + [1069] = 1069, + [1070] = 139, + [1071] = 994, + [1072] = 1069, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, [1076] = 1076, - [1077] = 1077, - [1078] = 927, - [1079] = 1035, - [1080] = 1080, + [1077] = 996, + [1078] = 1078, + [1079] = 954, + [1080] = 993, [1081] = 1081, [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1088, - [1089] = 1089, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, - [1093] = 106, - [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 1097, - [1098] = 1098, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, + [1083] = 960, + [1084] = 966, + [1085] = 961, + [1086] = 1069, + [1087] = 1069, + [1088] = 992, + [1089] = 962, + [1090] = 154, + [1091] = 1069, + [1092] = 160, + [1093] = 156, + [1094] = 154, + [1095] = 139, + [1096] = 143, + [1097] = 986, + [1098] = 160, + [1099] = 156, + [1100] = 974, + [1101] = 953, [1102] = 1102, [1103] = 1103, [1104] = 1104, @@ -4231,415 +4256,415 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1114] = 1114, [1115] = 1115, [1116] = 1116, - [1117] = 1117, + [1117] = 92, [1118] = 1118, - [1119] = 1119, + [1119] = 113, [1120] = 1120, [1121] = 1121, - [1122] = 1122, + [1122] = 112, [1123] = 1123, - [1124] = 1123, + [1124] = 1124, [1125] = 1125, - [1126] = 1123, + [1126] = 1126, [1127] = 1127, - [1128] = 1128, - [1129] = 1123, - [1130] = 1123, - [1131] = 882, - [1132] = 887, - [1133] = 886, - [1134] = 884, + [1128] = 121, + [1129] = 131, + [1130] = 1130, + [1131] = 1131, + [1132] = 1132, + [1133] = 1133, + [1134] = 1134, [1135] = 1135, - [1136] = 878, - [1137] = 885, + [1136] = 1136, + [1137] = 1137, [1138] = 1138, - [1139] = 881, - [1140] = 883, - [1141] = 877, - [1142] = 888, - [1143] = 876, - [1144] = 880, - [1145] = 888, - [1146] = 884, - [1147] = 880, - [1148] = 882, + [1139] = 1139, + [1140] = 1140, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1144, + [1145] = 1145, + [1146] = 120, + [1147] = 1147, + [1148] = 1148, [1149] = 1149, - [1150] = 876, - [1151] = 106, - [1152] = 881, - [1153] = 885, - [1154] = 1149, - [1155] = 883, - [1156] = 1149, - [1157] = 878, - [1158] = 1149, - [1159] = 877, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, + [1156] = 1154, + [1157] = 1154, + [1158] = 1154, + [1159] = 1154, [1160] = 1160, - [1161] = 887, - [1162] = 1162, - [1163] = 1163, - [1164] = 1149, - [1165] = 886, - [1166] = 1166, - [1167] = 881, - [1168] = 886, + [1161] = 913, + [1162] = 903, + [1163] = 905, + [1164] = 907, + [1165] = 901, + [1166] = 909, + [1167] = 910, + [1168] = 911, [1169] = 1169, - [1170] = 885, - [1171] = 880, - [1172] = 878, + [1170] = 902, + [1171] = 904, + [1172] = 912, [1173] = 1173, - [1174] = 887, - [1175] = 1135, - [1176] = 884, - [1177] = 882, - [1178] = 883, + [1174] = 906, + [1175] = 112, + [1176] = 907, + [1177] = 1177, + [1178] = 903, [1179] = 1179, - [1180] = 1180, - [1181] = 877, - [1182] = 888, - [1183] = 876, - [1184] = 1184, - [1185] = 1185, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, + [1180] = 1179, + [1181] = 121, + [1182] = 1179, + [1183] = 1179, + [1184] = 120, + [1185] = 92, + [1186] = 113, + [1187] = 904, + [1188] = 901, [1189] = 1189, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1192, - [1195] = 1195, - [1196] = 1196, - [1197] = 1197, - [1198] = 1193, - [1199] = 1196, - [1200] = 1197, - [1201] = 1201, - [1202] = 1202, + [1190] = 131, + [1191] = 905, + [1192] = 912, + [1193] = 909, + [1194] = 1179, + [1195] = 910, + [1196] = 911, + [1197] = 902, + [1198] = 906, + [1199] = 913, + [1200] = 1200, + [1201] = 911, + [1202] = 905, [1203] = 1203, - [1204] = 885, - [1205] = 1202, - [1206] = 1202, - [1207] = 1207, - [1208] = 1202, + [1204] = 903, + [1205] = 1205, + [1206] = 1173, + [1207] = 901, + [1208] = 1208, [1209] = 1209, - [1210] = 886, - [1211] = 1211, - [1212] = 1212, - [1213] = 1213, - [1214] = 1135, - [1215] = 878, - [1216] = 881, - [1217] = 1217, - [1218] = 1218, - [1219] = 1212, - [1220] = 1217, - [1221] = 1217, - [1222] = 882, + [1210] = 1210, + [1211] = 907, + [1212] = 909, + [1213] = 904, + [1214] = 910, + [1215] = 902, + [1216] = 913, + [1217] = 912, + [1218] = 906, + [1219] = 1219, + [1220] = 1220, + [1221] = 1221, + [1222] = 1222, [1223] = 1223, - [1224] = 887, - [1225] = 1217, - [1226] = 1217, - [1227] = 1212, - [1228] = 1207, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1227, + [1228] = 1228, [1229] = 1229, - [1230] = 1202, + [1230] = 1230, [1231] = 1231, - [1232] = 1212, - [1233] = 1207, - [1234] = 1207, - [1235] = 876, - [1236] = 888, + [1232] = 1232, + [1233] = 1233, + [1234] = 1234, + [1235] = 1235, + [1236] = 1234, [1237] = 1237, - [1238] = 877, + [1238] = 1231, [1239] = 1237, - [1240] = 880, - [1241] = 1229, - [1242] = 884, - [1243] = 1207, + [1240] = 1233, + [1241] = 1241, + [1242] = 1242, + [1243] = 1242, [1244] = 1244, - [1245] = 1203, + [1245] = 1245, [1246] = 1246, [1247] = 1247, - [1248] = 883, - [1249] = 1229, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, + [1248] = 910, + [1249] = 911, + [1250] = 1244, + [1251] = 902, + [1252] = 903, [1253] = 1244, [1254] = 1254, - [1255] = 1255, - [1256] = 1256, + [1255] = 913, + [1256] = 912, [1257] = 1257, [1258] = 1258, [1259] = 1259, [1260] = 1260, - [1261] = 1212, - [1262] = 1262, - [1263] = 1263, - [1264] = 1264, - [1265] = 1265, - [1266] = 1266, + [1261] = 1244, + [1262] = 904, + [1263] = 1242, + [1264] = 901, + [1265] = 906, + [1266] = 1173, [1267] = 1267, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, - [1271] = 1265, + [1268] = 1242, + [1269] = 1247, + [1270] = 905, + [1271] = 1271, [1272] = 1272, [1273] = 1273, - [1274] = 1274, - [1275] = 850, - [1276] = 1276, - [1277] = 1276, + [1274] = 1267, + [1275] = 1275, + [1276] = 1272, + [1277] = 1273, [1278] = 1278, - [1279] = 1279, - [1280] = 1280, + [1279] = 1260, + [1280] = 907, [1281] = 1281, - [1282] = 1268, - [1283] = 1265, - [1284] = 1274, - [1285] = 1268, - [1286] = 1268, + [1282] = 1282, + [1283] = 1272, + [1284] = 1242, + [1285] = 909, + [1286] = 1273, [1287] = 1287, - [1288] = 1265, + [1288] = 1288, [1289] = 1289, - [1290] = 1265, - [1291] = 1265, - [1292] = 1265, - [1293] = 1293, - [1294] = 1268, + [1290] = 1244, + [1291] = 1291, + [1292] = 1292, + [1293] = 1273, + [1294] = 1260, [1295] = 1295, - [1296] = 1265, + [1296] = 1272, [1297] = 1297, - [1298] = 1268, + [1298] = 1272, [1299] = 1299, - [1300] = 1300, - [1301] = 1299, - [1302] = 1302, + [1300] = 1287, + [1301] = 1301, + [1302] = 1273, [1303] = 1303, - [1304] = 1127, - [1305] = 1138, + [1304] = 1304, + [1305] = 1305, [1306] = 1306, - [1307] = 1166, - [1308] = 1169, - [1309] = 1179, - [1310] = 1310, + [1307] = 1307, + [1308] = 1307, + [1309] = 1304, + [1310] = 1304, [1311] = 1311, - [1312] = 1312, + [1312] = 1303, [1313] = 1313, - [1314] = 1314, + [1314] = 1304, [1315] = 1315, [1316] = 1316, [1317] = 1317, - [1318] = 1318, + [1318] = 1304, [1319] = 1319, - [1320] = 1320, - [1321] = 1103, + [1320] = 1303, + [1321] = 1321, [1322] = 1322, - [1323] = 1086, + [1323] = 1323, [1324] = 1324, [1325] = 1325, [1326] = 1326, [1327] = 1327, - [1328] = 1328, - [1329] = 1327, - [1330] = 1328, - [1331] = 1328, - [1332] = 1320, - [1333] = 1327, - [1334] = 1334, - [1335] = 1335, - [1336] = 1336, - [1337] = 1335, + [1328] = 1303, + [1329] = 1329, + [1330] = 1327, + [1331] = 1303, + [1332] = 1332, + [1333] = 1304, + [1334] = 1304, + [1335] = 1304, + [1336] = 1324, + [1337] = 1303, [1338] = 1338, [1339] = 1339, - [1340] = 1340, + [1340] = 878, [1341] = 1341, - [1342] = 1335, - [1343] = 1334, + [1342] = 1342, + [1343] = 1155, [1344] = 1344, - [1345] = 1345, - [1346] = 1346, - [1347] = 1347, - [1348] = 1348, + [1345] = 1169, + [1346] = 1203, + [1347] = 1209, + [1348] = 1208, [1349] = 1349, [1350] = 1350, [1351] = 1351, [1352] = 1352, - [1353] = 1344, - [1354] = 1346, - [1355] = 1348, - [1356] = 1349, + [1353] = 1353, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, [1357] = 1357, [1358] = 1358, - [1359] = 1334, + [1359] = 1125, [1360] = 1360, [1361] = 1361, - [1362] = 798, - [1363] = 1363, + [1362] = 1362, + [1363] = 1118, [1364] = 1364, [1365] = 1365, [1366] = 1366, - [1367] = 1364, - [1368] = 1361, - [1369] = 1363, - [1370] = 1365, + [1367] = 1367, + [1368] = 1367, + [1369] = 1367, + [1370] = 1361, [1371] = 1366, - [1372] = 1372, - [1373] = 1335, + [1372] = 1366, + [1373] = 1373, [1374] = 1374, [1375] = 1375, - [1376] = 1334, + [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1360, + [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1387, + [1387] = 1374, [1388] = 1388, [1389] = 1389, - [1390] = 1390, + [1390] = 1383, [1391] = 1391, [1392] = 1392, - [1393] = 1393, - [1394] = 1335, + [1393] = 1391, + [1394] = 1394, [1395] = 1395, [1396] = 1396, [1397] = 1397, - [1398] = 1382, - [1399] = 1341, - [1400] = 1400, + [1398] = 1398, + [1399] = 1377, + [1400] = 1377, [1401] = 1401, - [1402] = 1388, - [1403] = 1390, - [1404] = 1391, - [1405] = 1405, - [1406] = 1392, + [1402] = 1402, + [1403] = 1403, + [1404] = 1404, + [1405] = 1386, + [1406] = 1406, [1407] = 1407, - [1408] = 1336, - [1409] = 1385, - [1410] = 1405, - [1411] = 1345, - [1412] = 1401, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1377, [1413] = 1413, - [1414] = 1383, - [1415] = 1086, - [1416] = 1375, - [1417] = 1405, - [1418] = 1400, - [1419] = 1386, - [1420] = 1420, - [1421] = 1405, - [1422] = 798, + [1414] = 1414, + [1415] = 1374, + [1416] = 1374, + [1417] = 1380, + [1418] = 1378, + [1419] = 1376, + [1420] = 1377, + [1421] = 1381, + [1422] = 1422, [1423] = 1423, - [1424] = 1350, - [1425] = 1378, + [1424] = 1424, + [1425] = 1425, [1426] = 1426, - [1427] = 1091, - [1428] = 1387, - [1429] = 1110, - [1430] = 1381, - [1431] = 1374, + [1427] = 847, + [1428] = 1382, + [1429] = 1395, + [1430] = 1430, + [1431] = 1423, [1432] = 1432, - [1433] = 1401, - [1434] = 1351, - [1435] = 1082, - [1436] = 1352, - [1437] = 1437, - [1438] = 1087, - [1439] = 1103, - [1440] = 1401, - [1441] = 1109, - [1442] = 1358, - [1443] = 1090, - [1444] = 1108, - [1445] = 1104, - [1446] = 1405, - [1447] = 1447, - [1448] = 1447, - [1449] = 1447, - [1450] = 1447, - [1451] = 1451, - [1452] = 1127, - [1453] = 1447, - [1454] = 1451, - [1455] = 1451, - [1456] = 1451, - [1457] = 1451, + [1433] = 1385, + [1434] = 1373, + [1435] = 1396, + [1436] = 1436, + [1437] = 1224, + [1438] = 1438, + [1439] = 1439, + [1440] = 1413, + [1441] = 1414, + [1442] = 1230, + [1443] = 1443, + [1444] = 1432, + [1445] = 1410, + [1446] = 1439, + [1447] = 1439, + [1448] = 1403, + [1449] = 1406, + [1450] = 1426, + [1451] = 1118, + [1452] = 1409, + [1453] = 1453, + [1454] = 847, + [1455] = 1430, + [1456] = 1219, + [1457] = 1398, [1458] = 1458, - [1459] = 1458, - [1460] = 1460, - [1461] = 1458, - [1462] = 1458, - [1463] = 1458, - [1464] = 1464, - [1465] = 1465, - [1466] = 1466, - [1467] = 1466, - [1468] = 1465, - [1469] = 1469, - [1470] = 1466, - [1471] = 1465, - [1472] = 1466, - [1473] = 1466, - [1474] = 1465, - [1475] = 1475, - [1476] = 1475, - [1477] = 1475, - [1478] = 1478, - [1479] = 1475, - [1480] = 1480, - [1481] = 1475, + [1459] = 1459, + [1460] = 1220, + [1461] = 1107, + [1462] = 1132, + [1463] = 1115, + [1464] = 1397, + [1465] = 1424, + [1466] = 1109, + [1467] = 1116, + [1468] = 1468, + [1469] = 1106, + [1470] = 1470, + [1471] = 1458, + [1472] = 1438, + [1473] = 1125, + [1474] = 1458, + [1475] = 1111, + [1476] = 1120, + [1477] = 1439, + [1478] = 1439, + [1479] = 1479, + [1480] = 1458, + [1481] = 1408, [1482] = 1482, [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1488, - [1491] = 1486, - [1492] = 1488, - [1493] = 1486, - [1494] = 1486, - [1495] = 1488, + [1484] = 1482, + [1485] = 1483, + [1486] = 1482, + [1487] = 1483, + [1488] = 1482, + [1489] = 1155, + [1490] = 1483, + [1491] = 1482, + [1492] = 1483, + [1493] = 1493, + [1494] = 1494, + [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1486, - [1499] = 1488, - [1500] = 1488, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, [1501] = 1501, - [1502] = 1502, - [1503] = 1488, - [1504] = 1504, - [1505] = 1505, - [1506] = 1505, - [1507] = 1507, - [1508] = 1505, - [1509] = 1505, + [1502] = 1500, + [1503] = 1499, + [1504] = 1500, + [1505] = 1499, + [1506] = 1500, + [1507] = 1499, + [1508] = 1508, + [1509] = 1500, [1510] = 1510, [1511] = 1511, [1512] = 1512, [1513] = 1513, - [1514] = 1505, + [1514] = 1513, [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1518, - [1522] = 1522, - [1523] = 1518, - [1524] = 1524, - [1525] = 1518, + [1516] = 1513, + [1517] = 1512, + [1518] = 1513, + [1519] = 1513, + [1520] = 1513, + [1521] = 1512, + [1522] = 1512, + [1523] = 1513, + [1524] = 1512, + [1525] = 1525, [1526] = 1526, [1527] = 1527, [1528] = 1528, @@ -4647,16 +4672,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1530] = 1530, [1531] = 1531, [1532] = 1532, - [1533] = 1518, + [1533] = 1533, [1534] = 1534, [1535] = 1535, [1536] = 1536, - [1537] = 1537, + [1537] = 1536, [1538] = 1538, - [1539] = 1539, + [1539] = 1536, [1540] = 1540, - [1541] = 1541, - [1542] = 1542, + [1541] = 1536, + [1542] = 1536, [1543] = 1543, [1544] = 1544, [1545] = 1545, @@ -4667,58 +4692,58 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1550] = 1550, [1551] = 1551, [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1551, + [1553] = 1545, + [1554] = 1545, + [1555] = 1545, [1556] = 1556, - [1557] = 1556, - [1558] = 1553, - [1559] = 1551, - [1560] = 1551, - [1561] = 1553, - [1562] = 1553, + [1557] = 1557, + [1558] = 1558, + [1559] = 1545, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, [1563] = 1563, - [1564] = 1551, - [1565] = 1552, - [1566] = 1553, + [1564] = 1564, + [1565] = 1565, + [1566] = 1566, [1567] = 1567, [1568] = 1568, [1569] = 1569, [1570] = 1570, [1571] = 1571, - [1572] = 1572, - [1573] = 1573, + [1572] = 1571, + [1573] = 1571, [1574] = 1574, [1575] = 1575, - [1576] = 1576, + [1576] = 1571, [1577] = 1577, - [1578] = 1569, + [1578] = 1578, [1579] = 1579, - [1580] = 1580, - [1581] = 1569, - [1582] = 1569, + [1580] = 1571, + [1581] = 1581, + [1582] = 1582, [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, [1587] = 1587, [1588] = 1588, - [1589] = 1589, - [1590] = 1590, - [1591] = 1591, - [1592] = 1592, - [1593] = 1593, - [1594] = 1594, - [1595] = 1569, - [1596] = 1596, - [1597] = 1597, - [1598] = 1598, + [1589] = 1585, + [1590] = 1585, + [1591] = 1586, + [1592] = 1587, + [1593] = 1586, + [1594] = 1585, + [1595] = 1595, + [1596] = 1587, + [1597] = 1587, + [1598] = 1586, [1599] = 1599, - [1600] = 1600, - [1601] = 1601, - [1602] = 1602, - [1603] = 1603, - [1604] = 1604, + [1600] = 1587, + [1601] = 1586, + [1602] = 1599, + [1603] = 1585, + [1604] = 1583, [1605] = 1605, [1606] = 1606, [1607] = 1607, @@ -4729,16 +4754,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1612] = 1612, [1613] = 1613, [1614] = 1614, - [1615] = 1615, + [1615] = 1609, [1616] = 1616, - [1617] = 1616, - [1618] = 1573, + [1617] = 1609, + [1618] = 1618, [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1614, - [1624] = 1624, + [1623] = 1623, + [1624] = 1609, [1625] = 1625, [1626] = 1626, [1627] = 1627, @@ -4746,17 +4771,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1629] = 1629, [1630] = 1630, [1631] = 1631, - [1632] = 1632, + [1632] = 1609, [1633] = 1633, [1634] = 1634, [1635] = 1635, [1636] = 1636, [1637] = 1637, - [1638] = 1590, + [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1596, + [1642] = 1642, [1643] = 1643, [1644] = 1644, [1645] = 1645, @@ -4773,573 +4798,647 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1656] = 1656, [1657] = 1657, [1658] = 1658, - [1659] = 1659, + [1659] = 1625, [1660] = 1660, - [1661] = 1599, + [1661] = 1661, [1662] = 1662, [1663] = 1663, - [1664] = 1664, + [1664] = 1656, [1665] = 1665, [1666] = 1666, - [1667] = 1667, - [1668] = 1668, - [1669] = 1667, - [1670] = 1670, - [1671] = 1663, + [1667] = 1660, + [1668] = 1656, + [1669] = 1662, + [1670] = 1656, + [1671] = 1671, [1672] = 1672, [1673] = 1673, [1674] = 1674, - [1675] = 1673, - [1676] = 1670, + [1675] = 1656, + [1676] = 1676, [1677] = 1677, [1678] = 1678, - [1679] = 1670, - [1680] = 1670, - [1681] = 1681, - [1682] = 1663, + [1679] = 1679, + [1680] = 1610, + [1681] = 1656, + [1682] = 1611, [1683] = 1683, [1684] = 1684, [1685] = 1685, - [1686] = 1674, - [1687] = 1684, - [1688] = 1670, - [1689] = 1673, - [1690] = 1690, - [1691] = 1667, - [1692] = 1670, - [1693] = 1681, - [1694] = 1674, + [1686] = 1686, + [1687] = 1687, + [1688] = 1688, + [1689] = 1689, + [1690] = 1656, + [1691] = 1691, + [1692] = 1692, + [1693] = 1637, + [1694] = 1694, [1695] = 1695, - [1696] = 1670, + [1696] = 1696, [1697] = 1697, - [1698] = 1681, - [1699] = 1674, - [1700] = 1667, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, [1701] = 1701, [1702] = 1702, - [1703] = 1697, + [1703] = 1703, [1704] = 1704, [1705] = 1705, - [1706] = 1684, + [1706] = 1706, [1707] = 1707, [1708] = 1708, - [1709] = 1667, - [1710] = 1670, - [1711] = 1684, - [1712] = 1670, - [1713] = 1697, + [1709] = 1709, + [1710] = 1710, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, [1714] = 1714, - [1715] = 1702, + [1715] = 1715, [1716] = 1716, [1717] = 1717, - [1718] = 1681, + [1718] = 1718, [1719] = 1719, - [1720] = 1702, - [1721] = 1697, - [1722] = 1629, - [1723] = 1663, - [1724] = 1724, + [1720] = 1674, + [1721] = 1721, + [1722] = 1715, + [1723] = 1716, + [1724] = 1717, [1725] = 1725, - [1726] = 1663, - [1727] = 1684, - [1728] = 1697, - [1729] = 1702, - [1730] = 1702, - [1731] = 1731, - [1732] = 1684, - [1733] = 1733, - [1734] = 1673, + [1726] = 1726, + [1727] = 1716, + [1728] = 1728, + [1729] = 1729, + [1730] = 1730, + [1731] = 1721, + [1732] = 1716, + [1733] = 1721, + [1734] = 1734, [1735] = 1735, [1736] = 1736, [1737] = 1737, - [1738] = 1738, + [1738] = 1725, [1739] = 1739, - [1740] = 1740, - [1741] = 1741, + [1740] = 1728, + [1741] = 1717, [1742] = 1742, - [1743] = 1743, - [1744] = 1744, - [1745] = 1745, - [1746] = 1738, + [1743] = 1716, + [1744] = 1730, + [1745] = 1736, + [1746] = 1746, [1747] = 1747, - [1748] = 1744, - [1749] = 1749, - [1750] = 1750, - [1751] = 1750, + [1748] = 1748, + [1749] = 1725, + [1750] = 1736, + [1751] = 1730, [1752] = 1752, - [1753] = 1753, + [1753] = 1736, [1754] = 1754, - [1755] = 1755, - [1756] = 1573, - [1757] = 1757, + [1755] = 1715, + [1756] = 1725, + [1757] = 1730, [1758] = 1758, - [1759] = 1759, + [1759] = 1717, [1760] = 1760, - [1761] = 1761, - [1762] = 1744, - [1763] = 1750, - [1764] = 1764, - [1765] = 1749, - [1766] = 1766, + [1761] = 1737, + [1762] = 1737, + [1763] = 1728, + [1764] = 1736, + [1765] = 1765, + [1766] = 1717, [1767] = 1767, - [1768] = 1768, - [1769] = 1769, - [1770] = 1770, - [1771] = 1771, + [1768] = 1730, + [1769] = 1737, + [1770] = 1737, + [1771] = 1716, [1772] = 1772, [1773] = 1773, - [1774] = 1774, + [1774] = 1721, [1775] = 1775, - [1776] = 1776, - [1777] = 1735, + [1776] = 1721, + [1777] = 1737, [1778] = 1778, - [1779] = 1779, - [1780] = 1780, - [1781] = 1780, - [1782] = 1772, + [1779] = 1737, + [1780] = 1737, + [1781] = 1728, + [1782] = 1715, [1783] = 1783, [1784] = 1784, - [1785] = 1749, - [1786] = 1750, + [1785] = 1737, + [1786] = 1786, [1787] = 1787, [1788] = 1788, - [1789] = 1773, - [1790] = 1780, + [1789] = 1789, + [1790] = 1790, [1791] = 1791, [1792] = 1792, - [1793] = 1780, + [1793] = 1793, [1794] = 1794, [1795] = 1795, [1796] = 1796, - [1797] = 1791, + [1797] = 1797, [1798] = 1798, - [1799] = 1792, - [1800] = 1738, - [1801] = 1776, - [1802] = 1772, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1802, [1803] = 1803, [1804] = 1804, [1805] = 1805, [1806] = 1806, - [1807] = 1804, - [1808] = 1764, - [1809] = 1788, - [1810] = 1738, - [1811] = 1811, - [1812] = 1787, + [1807] = 1807, + [1808] = 1625, + [1809] = 1809, + [1810] = 1787, + [1811] = 1804, + [1812] = 1812, [1813] = 1813, - [1814] = 1787, - [1815] = 1796, - [1816] = 1805, - [1817] = 1795, - [1818] = 1818, + [1814] = 1814, + [1815] = 1786, + [1816] = 1816, + [1817] = 1817, + [1818] = 1804, [1819] = 1819, [1820] = 1820, - [1821] = 1750, + [1821] = 1821, [1822] = 1822, - [1823] = 1775, + [1823] = 1823, [1824] = 1824, - [1825] = 1752, - [1826] = 1779, + [1825] = 1788, + [1826] = 1826, [1827] = 1827, [1828] = 1828, - [1829] = 1827, + [1829] = 1829, [1830] = 1830, - [1831] = 1831, + [1831] = 1805, [1832] = 1832, [1833] = 1833, - [1834] = 1834, - [1835] = 1835, + [1834] = 1830, + [1835] = 1803, [1836] = 1836, - [1837] = 1832, - [1838] = 1838, - [1839] = 1835, + [1837] = 1837, + [1838] = 1824, + [1839] = 1799, [1840] = 1840, - [1841] = 1841, + [1841] = 1821, [1842] = 1842, - [1843] = 1843, + [1843] = 1803, [1844] = 1844, - [1845] = 1845, - [1846] = 1835, - [1847] = 1831, - [1848] = 1831, - [1849] = 1840, - [1850] = 1832, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 1854, - [1855] = 1855, - [1856] = 1832, - [1857] = 1857, - [1858] = 1835, + [1845] = 1788, + [1846] = 1804, + [1847] = 1847, + [1848] = 1848, + [1849] = 1824, + [1850] = 1809, + [1851] = 1807, + [1852] = 1806, + [1853] = 1786, + [1854] = 1805, + [1855] = 1824, + [1856] = 1809, + [1857] = 1807, + [1858] = 1806, [1859] = 1859, - [1860] = 1828, - [1861] = 1832, - [1862] = 1827, - [1863] = 1834, - [1864] = 1864, - [1865] = 1834, - [1866] = 1834, - [1867] = 1867, - [1868] = 1828, - [1869] = 1831, - [1870] = 1832, - [1871] = 1830, - [1872] = 1836, - [1873] = 1845, - [1874] = 1874, - [1875] = 1828, - [1876] = 1832, - [1877] = 1845, - [1878] = 1841, - [1879] = 1827, + [1860] = 1786, + [1861] = 1824, + [1862] = 1862, + [1863] = 1863, + [1864] = 1809, + [1865] = 1807, + [1866] = 1806, + [1867] = 1799, + [1868] = 1868, + [1869] = 1869, + [1870] = 1786, + [1871] = 1868, + [1872] = 1806, + [1873] = 1807, + [1874] = 1809, + [1875] = 1875, + [1876] = 1788, + [1877] = 1877, + [1878] = 1833, + [1879] = 1879, [1880] = 1880, - [1881] = 1881, - [1882] = 1836, - [1883] = 1835, - [1884] = 1834, - [1885] = 1828, - [1886] = 1835, - [1887] = 1887, - [1888] = 1841, - [1889] = 1834, - [1890] = 1845, + [1881] = 1786, + [1882] = 1882, + [1883] = 1788, + [1884] = 1879, + [1885] = 1824, + [1886] = 1886, + [1887] = 1830, + [1888] = 1830, + [1889] = 1829, + [1890] = 1793, [1891] = 1827, - [1892] = 1836, - [1893] = 1828, - [1894] = 1835, - [1895] = 1840, - [1896] = 1831, - [1897] = 1897, - [1898] = 1898, - [1899] = 1835, - [1900] = 1900, - [1901] = 1831, - [1902] = 1902, - [1903] = 1903, - [1904] = 1845, - [1905] = 1867, - [1906] = 1832, - [1907] = 1841, - [1908] = 1845, + [1892] = 1812, + [1893] = 1824, + [1894] = 1809, + [1895] = 1806, + [1896] = 1807, + [1897] = 1789, + [1898] = 1807, + [1899] = 1806, + [1900] = 1823, + [1901] = 1797, + [1902] = 1801, + [1903] = 1802, + [1904] = 1875, + [1905] = 1821, + [1906] = 1809, + [1907] = 1786, + [1908] = 1908, [1909] = 1909, - [1910] = 1897, - [1911] = 1836, - [1912] = 1836, - [1913] = 1830, - [1914] = 1897, + [1910] = 1910, + [1911] = 1911, + [1912] = 1911, + [1913] = 1913, + [1914] = 1914, [1915] = 1915, - [1916] = 1827, + [1916] = 1916, [1917] = 1917, - [1918] = 1841, - [1919] = 1835, - [1920] = 1897, - [1921] = 1840, - [1922] = 1897, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, + [1921] = 1921, + [1922] = 1922, [1923] = 1923, - [1924] = 1832, - [1925] = 1840, + [1924] = 1924, + [1925] = 1925, [1926] = 1926, - [1927] = 1927, - [1928] = 1358, + [1927] = 1920, + [1928] = 1925, [1929] = 1929, - [1930] = 1930, - [1931] = 1931, - [1932] = 1932, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, + [1930] = 1922, + [1931] = 1923, + [1932] = 1925, + [1933] = 1929, + [1934] = 1911, + [1935] = 1910, [1936] = 1936, - [1937] = 1930, - [1938] = 1938, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 1942, - [1943] = 1943, - [1944] = 1944, + [1937] = 1937, + [1938] = 1922, + [1939] = 1924, + [1940] = 1923, + [1941] = 1921, + [1942] = 1925, + [1943] = 1929, + [1944] = 1922, [1945] = 1945, [1946] = 1946, - [1947] = 1933, - [1948] = 1948, - [1949] = 1949, - [1950] = 1950, + [1947] = 1936, + [1948] = 1910, + [1949] = 1924, + [1950] = 1923, [1951] = 1951, - [1952] = 1952, - [1953] = 1953, + [1952] = 1921, + [1953] = 1918, [1954] = 1954, [1955] = 1955, [1956] = 1956, [1957] = 1957, - [1958] = 1955, - [1959] = 1374, - [1960] = 1953, - [1961] = 1948, - [1962] = 1929, - [1963] = 1932, + [1958] = 1913, + [1959] = 1959, + [1960] = 1960, + [1961] = 1924, + [1962] = 1962, + [1963] = 1925, [1964] = 1964, - [1965] = 1931, - [1966] = 1940, - [1967] = 1938, - [1968] = 1957, - [1969] = 1930, - [1970] = 1931, - [1971] = 1945, - [1972] = 1939, - [1973] = 1944, - [1974] = 1944, - [1975] = 1975, - [1976] = 1939, - [1977] = 1934, - [1978] = 1940, - [1979] = 1930, - [1980] = 1931, - [1981] = 1931, - [1982] = 1939, - [1983] = 1944, - [1984] = 1930, - [1985] = 1929, - [1986] = 1940, - [1987] = 1931, - [1988] = 1932, - [1989] = 1944, - [1990] = 1935, - [1991] = 1936, - [1992] = 1940, - [1993] = 1931, - [1994] = 1938, - [1995] = 1944, - [1996] = 1940, - [1997] = 1997, - [1998] = 1998, - [1999] = 1999, - [2000] = 1942, - [2001] = 1934, - [2002] = 1943, - [2003] = 1946, - [2004] = 1948, - [2005] = 2005, - [2006] = 2006, - [2007] = 2007, - [2008] = 1950, - [2009] = 1951, + [1965] = 1936, + [1966] = 1929, + [1967] = 1921, + [1968] = 1922, + [1969] = 1969, + [1970] = 1936, + [1971] = 1925, + [1972] = 1972, + [1973] = 1913, + [1974] = 1974, + [1975] = 1913, + [1976] = 1922, + [1977] = 1910, + [1978] = 1921, + [1979] = 1920, + [1980] = 1920, + [1981] = 1924, + [1982] = 1982, + [1983] = 1924, + [1984] = 1957, + [1985] = 1923, + [1986] = 1921, + [1987] = 1918, + [1988] = 1988, + [1989] = 1911, + [1990] = 1990, + [1991] = 1913, + [1992] = 1911, + [1993] = 1911, + [1994] = 1913, + [1995] = 1911, + [1996] = 1996, + [1997] = 1913, + [1998] = 1913, + [1999] = 1910, + [2000] = 1929, + [2001] = 1936, + [2002] = 1910, + [2003] = 1913, + [2004] = 2004, + [2005] = 1911, + [2006] = 1920, + [2007] = 1911, + [2008] = 1936, + [2009] = 2009, [2010] = 2010, - [2011] = 1952, - [2012] = 1956, - [2013] = 1938, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, [2014] = 2014, - [2015] = 1955, + [2015] = 2015, [2016] = 2016, - [2017] = 1953, - [2018] = 1964, - [2019] = 1933, + [2017] = 2017, + [2018] = 2018, + [2019] = 2014, [2020] = 2020, - [2021] = 1945, - [2022] = 1944, - [2023] = 1939, + [2021] = 2021, + [2022] = 2022, + [2023] = 2015, [2024] = 2024, [2025] = 2025, - [2026] = 1934, - [2027] = 1931, + [2026] = 2026, + [2027] = 2027, [2028] = 2028, - [2029] = 1930, - [2030] = 1929, - [2031] = 1932, + [2029] = 2027, + [2030] = 2017, + [2031] = 2026, [2032] = 2032, - [2033] = 1935, - [2034] = 1936, - [2035] = 1935, - [2036] = 1938, - [2037] = 1936, - [2038] = 2038, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2013, + [2037] = 2037, + [2038] = 2037, [2039] = 2039, - [2040] = 1940, - [2041] = 1975, - [2042] = 1942, - [2043] = 1943, - [2044] = 1946, - [2045] = 1948, - [2046] = 2032, - [2047] = 2024, - [2048] = 2024, - [2049] = 1939, - [2050] = 2050, - [2051] = 1939, - [2052] = 2052, - [2053] = 1945, + [2040] = 2040, + [2041] = 2014, + [2042] = 2024, + [2043] = 2043, + [2044] = 2044, + [2045] = 2037, + [2046] = 2046, + [2047] = 2032, + [2048] = 2048, + [2049] = 2049, + [2050] = 2013, + [2051] = 2051, + [2052] = 2037, + [2053] = 2053, [2054] = 2054, [2055] = 2055, - [2056] = 2056, + [2056] = 2014, [2057] = 2057, [2058] = 2058, - [2059] = 1950, - [2060] = 1951, - [2061] = 1952, - [2062] = 2062, - [2063] = 1938, - [2064] = 2038, - [2065] = 1956, - [2066] = 1957, - [2067] = 1940, - [2068] = 2068, - [2069] = 1955, - [2070] = 1953, - [2071] = 1964, - [2072] = 1933, - [2073] = 1945, + [2059] = 2059, + [2060] = 2032, + [2061] = 2013, + [2062] = 2012, + [2063] = 2014, + [2064] = 2037, + [2065] = 2033, + [2066] = 2032, + [2067] = 2013, + [2068] = 2013, + [2069] = 2014, + [2070] = 2070, + [2071] = 2010, + [2072] = 2072, + [2073] = 2032, [2074] = 2074, - [2075] = 1942, - [2076] = 1944, - [2077] = 2052, - [2078] = 1939, - [2079] = 2024, - [2080] = 1997, - [2081] = 1998, - [2082] = 2028, - [2083] = 1934, - [2084] = 1931, - [2085] = 1949, - [2086] = 1944, - [2087] = 2074, - [2088] = 1938, - [2089] = 2006, - [2090] = 1930, - [2091] = 1929, - [2092] = 1932, - [2093] = 1933, - [2094] = 1935, - [2095] = 1936, - [2096] = 2057, - [2097] = 2038, - [2098] = 1940, - [2099] = 1942, - [2100] = 2032, - [2101] = 1943, - [2102] = 2024, - [2103] = 1946, - [2104] = 1948, - [2105] = 2105, - [2106] = 1964, - [2107] = 2107, - [2108] = 1997, - [2109] = 1998, - [2110] = 1953, + [2075] = 2025, + [2076] = 2076, + [2077] = 2028, + [2078] = 2026, + [2079] = 2027, + [2080] = 2080, + [2081] = 2081, + [2082] = 2082, + [2083] = 2083, + [2084] = 2084, + [2085] = 2085, + [2086] = 2086, + [2087] = 2033, + [2088] = 2088, + [2089] = 2086, + [2090] = 2028, + [2091] = 2085, + [2092] = 2035, + [2093] = 2093, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, + [2097] = 802, + [2098] = 2033, + [2099] = 2024, + [2100] = 2100, + [2101] = 2049, + [2102] = 2081, + [2103] = 2103, + [2104] = 2032, + [2105] = 2021, + [2106] = 2106, + [2107] = 2095, + [2108] = 2020, + [2109] = 2109, + [2110] = 2035, [2111] = 2111, - [2112] = 2112, - [2113] = 1957, - [2114] = 1345, - [2115] = 1955, - [2116] = 2006, + [2112] = 2095, + [2113] = 2084, + [2114] = 2114, + [2115] = 2115, + [2116] = 2015, [2117] = 2117, - [2118] = 2118, - [2119] = 2068, + [2118] = 2106, + [2119] = 2119, [2120] = 2120, - [2121] = 2121, - [2122] = 2122, - [2123] = 2123, - [2124] = 2124, + [2121] = 2012, + [2122] = 2058, + [2123] = 2037, + [2124] = 2084, [2125] = 2125, - [2126] = 2032, + [2126] = 2017, [2127] = 2127, - [2128] = 2024, - [2129] = 2129, - [2130] = 1956, + [2128] = 2128, + [2129] = 2085, + [2130] = 2130, [2131] = 2131, [2132] = 2132, [2133] = 2133, - [2134] = 1997, - [2135] = 1998, - [2136] = 2062, - [2137] = 2137, - [2138] = 2138, - [2139] = 2139, - [2140] = 2006, - [2141] = 1336, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, + [2134] = 2021, + [2135] = 2135, + [2136] = 2136, + [2137] = 2131, + [2138] = 2033, + [2139] = 2070, + [2140] = 2028, + [2141] = 2086, + [2142] = 2032, + [2143] = 2028, + [2144] = 2086, [2145] = 2145, - [2146] = 2146, + [2146] = 2018, [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 2150, + [2148] = 2049, + [2149] = 2017, + [2150] = 2053, [2151] = 2151, - [2152] = 1997, - [2153] = 2153, - [2154] = 2154, - [2155] = 2155, - [2156] = 1997, - [2157] = 1997, - [2158] = 1997, - [2159] = 2159, - [2160] = 2006, - [2161] = 1943, - [2162] = 1946, - [2163] = 1952, - [2164] = 2164, - [2165] = 2164, - [2166] = 1951, - [2167] = 2154, - [2168] = 2150, - [2169] = 1948, + [2152] = 2015, + [2153] = 2014, + [2154] = 1219, + [2155] = 2072, + [2156] = 2084, + [2157] = 1224, + [2158] = 2158, + [2159] = 2055, + [2160] = 2059, + [2161] = 2085, + [2162] = 2081, + [2163] = 2080, + [2164] = 2109, + [2165] = 2147, + [2166] = 2166, + [2167] = 2167, + [2168] = 2168, + [2169] = 2013, [2170] = 2170, - [2171] = 1938, + [2171] = 2051, [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 1954, - [2176] = 2176, + [2173] = 2024, + [2174] = 2120, + [2175] = 2106, + [2176] = 2058, [2177] = 2177, - [2178] = 2178, + [2178] = 2032, [2179] = 2179, - [2180] = 2180, + [2180] = 2084, [2181] = 2181, - [2182] = 2014, - [2183] = 2183, - [2184] = 2137, - [2185] = 2056, - [2186] = 2186, - [2187] = 2164, + [2182] = 2010, + [2183] = 2072, + [2184] = 801, + [2185] = 2185, + [2186] = 1220, + [2187] = 2021, [2188] = 2188, - [2189] = 776, - [2190] = 1954, - [2191] = 2191, - [2192] = 1950, - [2193] = 2193, + [2189] = 2033, + [2190] = 2080, + [2191] = 2032, + [2192] = 2192, + [2193] = 2070, [2194] = 2194, [2195] = 2195, - [2196] = 2196, - [2197] = 2058, - [2198] = 1954, + [2196] = 2049, + [2197] = 2106, + [2198] = 2013, [2199] = 2199, - [2200] = 2200, - [2201] = 777, - [2202] = 2202, + [2200] = 2120, + [2201] = 2095, + [2202] = 2058, [2203] = 2203, - [2204] = 2204, + [2204] = 2021, [2205] = 2205, - [2206] = 1954, + [2206] = 2206, [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2210, - [2211] = 2164, - [2212] = 2212, + [2208] = 2010, + [2209] = 2072, + [2210] = 2033, + [2211] = 2211, + [2212] = 2035, [2213] = 2213, - [2214] = 2214, + [2214] = 2080, [2215] = 2215, - [2216] = 2164, + [2216] = 2216, [2217] = 2217, - [2218] = 1998, - [2219] = 2164, + [2218] = 2017, + [2219] = 2219, [2220] = 2220, - [2221] = 2221, - [2222] = 2153, - [2223] = 2223, - [2224] = 1997, - [2225] = 2145, + [2221] = 2081, + [2222] = 2053, + [2223] = 2059, + [2224] = 2015, + [2225] = 2014, + [2226] = 2010, + [2227] = 2227, + [2228] = 2228, + [2229] = 2115, + [2230] = 2010, + [2231] = 2010, + [2232] = 2010, + [2233] = 2053, + [2234] = 2080, + [2235] = 2085, + [2236] = 2086, + [2237] = 2237, + [2238] = 2238, + [2239] = 2238, + [2240] = 2240, + [2241] = 2228, + [2242] = 2055, + [2243] = 2028, + [2244] = 2244, + [2245] = 2033, + [2246] = 2055, + [2247] = 2247, + [2248] = 2248, + [2249] = 2082, + [2250] = 2027, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2037, + [2255] = 2255, + [2256] = 2022, + [2257] = 2058, + [2258] = 2252, + [2259] = 2095, + [2260] = 2035, + [2261] = 2238, + [2262] = 2026, + [2263] = 2263, + [2264] = 2082, + [2265] = 2265, + [2266] = 2266, + [2267] = 2128, + [2268] = 2268, + [2269] = 2037, + [2270] = 2270, + [2271] = 2120, + [2272] = 2082, + [2273] = 2273, + [2274] = 2251, + [2275] = 2059, + [2276] = 2058, + [2277] = 1230, + [2278] = 2278, + [2279] = 2027, + [2280] = 2082, + [2281] = 2024, + [2282] = 2282, + [2283] = 2283, + [2284] = 2284, + [2285] = 2238, + [2286] = 2012, + [2287] = 2181, + [2288] = 2026, + [2289] = 2014, + [2290] = 2238, + [2291] = 2291, + [2292] = 2072, + [2293] = 2238, + [2294] = 2012, + [2295] = 2013, + [2296] = 2227, + [2297] = 2297, + [2298] = 2010, + [2299] = 2219, }; static inline bool sym_number_literal_character_set_1(int32_t c) { @@ -9758,12 +9857,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(147); if (lookahead == '-') ADVANCE(215); if (lookahead == '/') ADVANCE(227); + if (lookahead == ';') ADVANCE(252); if (lookahead == '<') ADVANCE(247); - if (lookahead == '=') ADVANCE(83); + if (lookahead == '=') ADVANCE(262); if (lookahead == '>') ADVANCE(243); - if (lookahead == '[') ADVANCE(87); + if (lookahead == '[') ADVANCE(259); if (lookahead == '\\') ADVANCE(16); if (lookahead == '^') ADVANCE(235); + if (lookahead == '{') ADVANCE(256); if (lookahead == '|') ADVANCE(234); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(65) @@ -13209,7 +13310,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11] = {.lex_state = 55}, [12] = {.lex_state = 58}, [13] = {.lex_state = 58}, - [14] = {.lex_state = 55}, + [14] = {.lex_state = 58}, [15] = {.lex_state = 58}, [16] = {.lex_state = 58}, [17] = {.lex_state = 58}, @@ -13221,12 +13322,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [23] = {.lex_state = 58}, [24] = {.lex_state = 58}, [25] = {.lex_state = 58}, - [26] = {.lex_state = 58}, + [26] = {.lex_state = 55}, [27] = {.lex_state = 58}, [28] = {.lex_state = 140}, - [29] = {.lex_state = 140}, - [30] = {.lex_state = 57}, - [31] = {.lex_state = 140}, + [29] = {.lex_state = 57}, + [30] = {.lex_state = 140}, + [31] = {.lex_state = 57}, [32] = {.lex_state = 140}, [33] = {.lex_state = 140}, [34] = {.lex_state = 140}, @@ -13243,7 +13344,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [45] = {.lex_state = 140}, [46] = {.lex_state = 140}, [47] = {.lex_state = 140}, - [48] = {.lex_state = 57}, + [48] = {.lex_state = 140}, [49] = {.lex_state = 140}, [50] = {.lex_state = 140}, [51] = {.lex_state = 140}, @@ -13260,20 +13361,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [62] = {.lex_state = 58}, [63] = {.lex_state = 58}, [64] = {.lex_state = 140}, - [65] = {.lex_state = 57}, - [66] = {.lex_state = 140}, + [65] = {.lex_state = 140}, + [66] = {.lex_state = 57}, [67] = {.lex_state = 57}, [68] = {.lex_state = 140}, - [69] = {.lex_state = 57}, + [69] = {.lex_state = 140}, [70] = {.lex_state = 140}, - [71] = {.lex_state = 140}, - [72] = {.lex_state = 57}, + [71] = {.lex_state = 57}, + [72] = {.lex_state = 140}, [73] = {.lex_state = 140}, - [74] = {.lex_state = 57}, + [74] = {.lex_state = 140}, [75] = {.lex_state = 140}, [76] = {.lex_state = 140}, - [77] = {.lex_state = 140}, - [78] = {.lex_state = 140}, + [77] = {.lex_state = 57}, + [78] = {.lex_state = 57}, [79] = {.lex_state = 140}, [80] = {.lex_state = 140}, [81] = {.lex_state = 140}, @@ -13288,11 +13389,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [90] = {.lex_state = 55}, [91] = {.lex_state = 55}, [92] = {.lex_state = 55}, - [93] = {.lex_state = 140}, + [93] = {.lex_state = 55}, [94] = {.lex_state = 55}, [95] = {.lex_state = 55}, [96] = {.lex_state = 55}, - [97] = {.lex_state = 55}, + [97] = {.lex_state = 140}, [98] = {.lex_state = 55}, [99] = {.lex_state = 55}, [100] = {.lex_state = 55}, @@ -13308,11 +13409,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [110] = {.lex_state = 55}, [111] = {.lex_state = 55}, [112] = {.lex_state = 55}, - [113] = {.lex_state = 140}, + [113] = {.lex_state = 55}, [114] = {.lex_state = 55}, [115] = {.lex_state = 55}, [116] = {.lex_state = 55}, - [117] = {.lex_state = 55}, + [117] = {.lex_state = 140}, [118] = {.lex_state = 55}, [119] = {.lex_state = 55}, [120] = {.lex_state = 55}, @@ -13334,7 +13435,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [136] = {.lex_state = 55}, [137] = {.lex_state = 55}, [138] = {.lex_state = 55}, - [139] = {.lex_state = 58}, + [139] = {.lex_state = 55}, [140] = {.lex_state = 55}, [141] = {.lex_state = 55}, [142] = {.lex_state = 55}, @@ -13353,14 +13454,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [155] = {.lex_state = 55}, [156] = {.lex_state = 55}, [157] = {.lex_state = 55}, - [158] = {.lex_state = 55}, + [158] = {.lex_state = 58}, [159] = {.lex_state = 55}, [160] = {.lex_state = 55}, - [161] = {.lex_state = 58}, - [162] = {.lex_state = 58}, - [163] = {.lex_state = 58}, - [164] = {.lex_state = 58}, - [165] = {.lex_state = 58}, + [161] = {.lex_state = 55}, + [162] = {.lex_state = 55}, + [163] = {.lex_state = 55}, + [164] = {.lex_state = 55}, + [165] = {.lex_state = 55}, [166] = {.lex_state = 58}, [167] = {.lex_state = 58}, [168] = {.lex_state = 58}, @@ -13399,7 +13500,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [201] = {.lex_state = 58}, [202] = {.lex_state = 58}, [203] = {.lex_state = 58}, - [204] = {.lex_state = 140}, + [204] = {.lex_state = 58}, [205] = {.lex_state = 58}, [206] = {.lex_state = 58}, [207] = {.lex_state = 58}, @@ -13407,12 +13508,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [209] = {.lex_state = 58}, [210] = {.lex_state = 58}, [211] = {.lex_state = 58}, - [212] = {.lex_state = 53}, - [213] = {.lex_state = 57}, + [212] = {.lex_state = 58}, + [213] = {.lex_state = 58}, [214] = {.lex_state = 58}, [215] = {.lex_state = 58}, - [216] = {.lex_state = 140}, - [217] = {.lex_state = 53}, + [216] = {.lex_state = 58}, + [217] = {.lex_state = 58}, [218] = {.lex_state = 58}, [219] = {.lex_state = 58}, [220] = {.lex_state = 58}, @@ -13422,24 +13523,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [224] = {.lex_state = 58}, [225] = {.lex_state = 58}, [226] = {.lex_state = 58}, - [227] = {.lex_state = 58}, - [228] = {.lex_state = 58}, - [229] = {.lex_state = 58}, - [230] = {.lex_state = 58}, + [227] = {.lex_state = 53}, + [228] = {.lex_state = 53}, + [229] = {.lex_state = 140}, + [230] = {.lex_state = 57}, [231] = {.lex_state = 58}, [232] = {.lex_state = 58}, - [233] = {.lex_state = 57}, - [234] = {.lex_state = 140}, - [235] = {.lex_state = 140}, - [236] = {.lex_state = 140}, - [237] = {.lex_state = 140}, - [238] = {.lex_state = 140}, - [239] = {.lex_state = 140}, - [240] = {.lex_state = 140}, - [241] = {.lex_state = 140}, + [233] = {.lex_state = 58}, + [234] = {.lex_state = 58}, + [235] = {.lex_state = 58}, + [236] = {.lex_state = 58}, + [237] = {.lex_state = 58}, + [238] = {.lex_state = 58}, + [239] = {.lex_state = 58}, + [240] = {.lex_state = 58}, + [241] = {.lex_state = 58}, [242] = {.lex_state = 140}, - [243] = {.lex_state = 140}, - [244] = {.lex_state = 140}, + [243] = {.lex_state = 57}, + [244] = {.lex_state = 57}, [245] = {.lex_state = 140}, [246] = {.lex_state = 140}, [247] = {.lex_state = 140}, @@ -13451,68 +13552,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 140}, [254] = {.lex_state = 140}, [255] = {.lex_state = 140}, - [256] = {.lex_state = 140}, - [257] = {.lex_state = 140}, + [256] = {.lex_state = 57}, + [257] = {.lex_state = 57}, [258] = {.lex_state = 140}, - [259] = {.lex_state = 140}, + [259] = {.lex_state = 57}, [260] = {.lex_state = 140}, [261] = {.lex_state = 140}, - [262] = {.lex_state = 140}, + [262] = {.lex_state = 57}, [263] = {.lex_state = 140}, [264] = {.lex_state = 140}, [265] = {.lex_state = 140}, [266] = {.lex_state = 140}, - [267] = {.lex_state = 140}, + [267] = {.lex_state = 57}, [268] = {.lex_state = 140}, - [269] = {.lex_state = 57}, - [270] = {.lex_state = 57}, + [269] = {.lex_state = 140}, + [270] = {.lex_state = 140}, [271] = {.lex_state = 140}, [272] = {.lex_state = 140}, - [273] = {.lex_state = 57}, - [274] = {.lex_state = 57}, + [273] = {.lex_state = 140}, + [274] = {.lex_state = 140}, [275] = {.lex_state = 140}, - [276] = {.lex_state = 140}, + [276] = {.lex_state = 57}, [277] = {.lex_state = 140}, - [278] = {.lex_state = 140}, + [278] = {.lex_state = 57}, [279] = {.lex_state = 140}, - [280] = {.lex_state = 57}, + [280] = {.lex_state = 140}, [281] = {.lex_state = 140}, [282] = {.lex_state = 140}, [283] = {.lex_state = 140}, [284] = {.lex_state = 140}, [285] = {.lex_state = 57}, - [286] = {.lex_state = 57}, - [287] = {.lex_state = 140}, - [288] = {.lex_state = 140}, + [286] = {.lex_state = 140}, + [287] = {.lex_state = 57}, + [288] = {.lex_state = 57}, [289] = {.lex_state = 140}, - [290] = {.lex_state = 140}, - [291] = {.lex_state = 57}, + [290] = {.lex_state = 57}, + [291] = {.lex_state = 140}, [292] = {.lex_state = 140}, - [293] = {.lex_state = 140}, - [294] = {.lex_state = 140}, - [295] = {.lex_state = 57}, + [293] = {.lex_state = 57}, + [294] = {.lex_state = 57}, + [295] = {.lex_state = 140}, [296] = {.lex_state = 140}, [297] = {.lex_state = 140}, - [298] = {.lex_state = 57}, + [298] = {.lex_state = 140}, [299] = {.lex_state = 57}, - [300] = {.lex_state = 57}, + [300] = {.lex_state = 140}, [301] = {.lex_state = 140}, - [302] = {.lex_state = 57}, + [302] = {.lex_state = 140}, [303] = {.lex_state = 140}, [304] = {.lex_state = 140}, [305] = {.lex_state = 140}, [306] = {.lex_state = 140}, [307] = {.lex_state = 140}, - [308] = {.lex_state = 57}, + [308] = {.lex_state = 140}, [309] = {.lex_state = 57}, - [310] = {.lex_state = 57}, + [310] = {.lex_state = 140}, [311] = {.lex_state = 140}, [312] = {.lex_state = 140}, [313] = {.lex_state = 140}, [314] = {.lex_state = 140}, - [315] = {.lex_state = 140}, + [315] = {.lex_state = 57}, [316] = {.lex_state = 57}, - [317] = {.lex_state = 57}, + [317] = {.lex_state = 140}, [318] = {.lex_state = 57}, [319] = {.lex_state = 57}, [320] = {.lex_state = 57}, @@ -13525,23 +13626,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 57}, [328] = {.lex_state = 57}, [329] = {.lex_state = 57}, - [330] = {.lex_state = 57}, + [330] = {.lex_state = 140}, [331] = {.lex_state = 57}, - [332] = {.lex_state = 57}, + [332] = {.lex_state = 140}, [333] = {.lex_state = 57}, - [334] = {.lex_state = 57}, - [335] = {.lex_state = 140}, - [336] = {.lex_state = 57}, + [334] = {.lex_state = 140}, + [335] = {.lex_state = 57}, + [336] = {.lex_state = 140}, [337] = {.lex_state = 57}, [338] = {.lex_state = 57}, - [339] = {.lex_state = 140}, + [339] = {.lex_state = 57}, [340] = {.lex_state = 57}, - [341] = {.lex_state = 140}, - [342] = {.lex_state = 57}, + [341] = {.lex_state = 57}, + [342] = {.lex_state = 140}, [343] = {.lex_state = 140}, - [344] = {.lex_state = 140}, - [345] = {.lex_state = 57}, - [346] = {.lex_state = 140}, + [344] = {.lex_state = 57}, + [345] = {.lex_state = 140}, + [346] = {.lex_state = 57}, [347] = {.lex_state = 140}, [348] = {.lex_state = 140}, [349] = {.lex_state = 140}, @@ -13549,17 +13650,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [351] = {.lex_state = 140}, [352] = {.lex_state = 140}, [353] = {.lex_state = 140}, - [354] = {.lex_state = 57}, + [354] = {.lex_state = 140}, [355] = {.lex_state = 140}, [356] = {.lex_state = 140}, - [357] = {.lex_state = 140}, - [358] = {.lex_state = 140}, + [357] = {.lex_state = 57}, + [358] = {.lex_state = 57}, [359] = {.lex_state = 140}, [360] = {.lex_state = 140}, - [361] = {.lex_state = 140}, - [362] = {.lex_state = 140}, + [361] = {.lex_state = 57}, + [362] = {.lex_state = 57}, [363] = {.lex_state = 140}, - [364] = {.lex_state = 140}, + [364] = {.lex_state = 57}, [365] = {.lex_state = 140}, [366] = {.lex_state = 140}, [367] = {.lex_state = 140}, @@ -13567,18 +13668,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [369] = {.lex_state = 140}, [370] = {.lex_state = 140}, [371] = {.lex_state = 140}, - [372] = {.lex_state = 140}, + [372] = {.lex_state = 57}, [373] = {.lex_state = 140}, [374] = {.lex_state = 140}, [375] = {.lex_state = 140}, [376] = {.lex_state = 140}, [377] = {.lex_state = 140}, [378] = {.lex_state = 140}, - [379] = {.lex_state = 54}, - [380] = {.lex_state = 57}, + [379] = {.lex_state = 140}, + [380] = {.lex_state = 140}, [381] = {.lex_state = 140}, [382] = {.lex_state = 140}, - [383] = {.lex_state = 57}, + [383] = {.lex_state = 140}, [384] = {.lex_state = 140}, [385] = {.lex_state = 140}, [386] = {.lex_state = 140}, @@ -13591,92 +13692,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [393] = {.lex_state = 140}, [394] = {.lex_state = 140}, [395] = {.lex_state = 140}, - [396] = {.lex_state = 57}, + [396] = {.lex_state = 140}, [397] = {.lex_state = 140}, [398] = {.lex_state = 140}, [399] = {.lex_state = 140}, - [400] = {.lex_state = 57}, + [400] = {.lex_state = 140}, [401] = {.lex_state = 57}, - [402] = {.lex_state = 57}, - [403] = {.lex_state = 57}, - [404] = {.lex_state = 57}, - [405] = {.lex_state = 57}, + [402] = {.lex_state = 140}, + [403] = {.lex_state = 140}, + [404] = {.lex_state = 140}, + [405] = {.lex_state = 140}, [406] = {.lex_state = 57}, [407] = {.lex_state = 140}, [408] = {.lex_state = 140}, [409] = {.lex_state = 140}, - [410] = {.lex_state = 57}, - [411] = {.lex_state = 140}, - [412] = {.lex_state = 57}, - [413] = {.lex_state = 140}, + [410] = {.lex_state = 140}, + [411] = {.lex_state = 57}, + [412] = {.lex_state = 54}, + [413] = {.lex_state = 57}, [414] = {.lex_state = 140}, [415] = {.lex_state = 140}, [416] = {.lex_state = 140}, [417] = {.lex_state = 140}, - [418] = {.lex_state = 140}, + [418] = {.lex_state = 57}, [419] = {.lex_state = 140}, [420] = {.lex_state = 140}, [421] = {.lex_state = 140}, [422] = {.lex_state = 140}, [423] = {.lex_state = 140}, [424] = {.lex_state = 140}, - [425] = {.lex_state = 140}, + [425] = {.lex_state = 57}, [426] = {.lex_state = 140}, - [427] = {.lex_state = 140}, - [428] = {.lex_state = 57}, + [427] = {.lex_state = 57}, + [428] = {.lex_state = 140}, [429] = {.lex_state = 140}, - [430] = {.lex_state = 140}, + [430] = {.lex_state = 57}, [431] = {.lex_state = 140}, - [432] = {.lex_state = 140}, + [432] = {.lex_state = 57}, [433] = {.lex_state = 57}, [434] = {.lex_state = 140}, - [435] = {.lex_state = 57}, + [435] = {.lex_state = 140}, [436] = {.lex_state = 140}, [437] = {.lex_state = 57}, - [438] = {.lex_state = 140}, - [439] = {.lex_state = 57}, + [438] = {.lex_state = 57}, + [439] = {.lex_state = 140}, [440] = {.lex_state = 140}, - [441] = {.lex_state = 57}, - [442] = {.lex_state = 57}, - [443] = {.lex_state = 57}, - [444] = {.lex_state = 57}, - [445] = {.lex_state = 57}, - [446] = {.lex_state = 57}, + [441] = {.lex_state = 140}, + [442] = {.lex_state = 140}, + [443] = {.lex_state = 140}, + [444] = {.lex_state = 140}, + [445] = {.lex_state = 140}, + [446] = {.lex_state = 140}, [447] = {.lex_state = 57}, [448] = {.lex_state = 140}, - [449] = {.lex_state = 140}, + [449] = {.lex_state = 57}, [450] = {.lex_state = 140}, [451] = {.lex_state = 140}, [452] = {.lex_state = 140}, [453] = {.lex_state = 57}, [454] = {.lex_state = 140}, - [455] = {.lex_state = 140}, - [456] = {.lex_state = 53}, + [455] = {.lex_state = 57}, + [456] = {.lex_state = 57}, [457] = {.lex_state = 140}, [458] = {.lex_state = 140}, [459] = {.lex_state = 140}, - [460] = {.lex_state = 140}, + [460] = {.lex_state = 57}, [461] = {.lex_state = 140}, - [462] = {.lex_state = 140}, - [463] = {.lex_state = 140}, - [464] = {.lex_state = 140}, + [462] = {.lex_state = 57}, + [463] = {.lex_state = 57}, + [464] = {.lex_state = 57}, [465] = {.lex_state = 140}, [466] = {.lex_state = 140}, [467] = {.lex_state = 140}, - [468] = {.lex_state = 140}, + [468] = {.lex_state = 57}, [469] = {.lex_state = 140}, [470] = {.lex_state = 140}, - [471] = {.lex_state = 140}, - [472] = {.lex_state = 140}, - [473] = {.lex_state = 140}, + [471] = {.lex_state = 57}, + [472] = {.lex_state = 57}, + [473] = {.lex_state = 57}, [474] = {.lex_state = 140}, - [475] = {.lex_state = 140}, + [475] = {.lex_state = 57}, [476] = {.lex_state = 140}, [477] = {.lex_state = 140}, [478] = {.lex_state = 140}, [479] = {.lex_state = 140}, [480] = {.lex_state = 140}, - [481] = {.lex_state = 140}, + [481] = {.lex_state = 53}, [482] = {.lex_state = 140}, [483] = {.lex_state = 140}, [484] = {.lex_state = 140}, @@ -13693,110 +13794,110 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [495] = {.lex_state = 140}, [496] = {.lex_state = 140}, [497] = {.lex_state = 140}, - [498] = {.lex_state = 53}, + [498] = {.lex_state = 140}, [499] = {.lex_state = 140}, [500] = {.lex_state = 140}, - [501] = {.lex_state = 53}, - [502] = {.lex_state = 54}, + [501] = {.lex_state = 140}, + [502] = {.lex_state = 140}, [503] = {.lex_state = 140}, - [504] = {.lex_state = 53}, + [504] = {.lex_state = 140}, [505] = {.lex_state = 140}, - [506] = {.lex_state = 60}, - [507] = {.lex_state = 60}, - [508] = {.lex_state = 60}, - [509] = {.lex_state = 60}, - [510] = {.lex_state = 60}, - [511] = {.lex_state = 60}, - [512] = {.lex_state = 60}, - [513] = {.lex_state = 60}, - [514] = {.lex_state = 60}, - [515] = {.lex_state = 60}, - [516] = {.lex_state = 60}, - [517] = {.lex_state = 60}, + [506] = {.lex_state = 140}, + [507] = {.lex_state = 140}, + [508] = {.lex_state = 140}, + [509] = {.lex_state = 140}, + [510] = {.lex_state = 140}, + [511] = {.lex_state = 140}, + [512] = {.lex_state = 140}, + [513] = {.lex_state = 140}, + [514] = {.lex_state = 140}, + [515] = {.lex_state = 140}, + [516] = {.lex_state = 140}, + [517] = {.lex_state = 140}, [518] = {.lex_state = 140}, [519] = {.lex_state = 140}, [520] = {.lex_state = 140}, [521] = {.lex_state = 140}, [522] = {.lex_state = 140}, - [523] = {.lex_state = 140}, + [523] = {.lex_state = 53}, [524] = {.lex_state = 140}, [525] = {.lex_state = 140}, - [526] = {.lex_state = 140}, - [527] = {.lex_state = 140}, - [528] = {.lex_state = 140}, + [526] = {.lex_state = 53}, + [527] = {.lex_state = 54}, + [528] = {.lex_state = 53}, [529] = {.lex_state = 140}, [530] = {.lex_state = 140}, - [531] = {.lex_state = 140}, - [532] = {.lex_state = 140}, - [533] = {.lex_state = 140}, - [534] = {.lex_state = 140}, - [535] = {.lex_state = 64}, - [536] = {.lex_state = 64}, - [537] = {.lex_state = 64}, - [538] = {.lex_state = 64}, - [539] = {.lex_state = 64}, - [540] = {.lex_state = 64}, - [541] = {.lex_state = 64}, - [542] = {.lex_state = 64}, - [543] = {.lex_state = 64}, - [544] = {.lex_state = 65}, - [545] = {.lex_state = 65}, - [546] = {.lex_state = 65}, - [547] = {.lex_state = 65}, - [548] = {.lex_state = 65}, - [549] = {.lex_state = 65}, - [550] = {.lex_state = 65}, - [551] = {.lex_state = 65}, - [552] = {.lex_state = 65}, - [553] = {.lex_state = 65}, - [554] = {.lex_state = 65}, - [555] = {.lex_state = 64}, - [556] = {.lex_state = 65}, + [531] = {.lex_state = 60}, + [532] = {.lex_state = 60}, + [533] = {.lex_state = 60}, + [534] = {.lex_state = 60}, + [535] = {.lex_state = 60}, + [536] = {.lex_state = 60}, + [537] = {.lex_state = 60}, + [538] = {.lex_state = 60}, + [539] = {.lex_state = 60}, + [540] = {.lex_state = 60}, + [541] = {.lex_state = 60}, + [542] = {.lex_state = 60}, + [543] = {.lex_state = 140}, + [544] = {.lex_state = 140}, + [545] = {.lex_state = 140}, + [546] = {.lex_state = 140}, + [547] = {.lex_state = 140}, + [548] = {.lex_state = 140}, + [549] = {.lex_state = 140}, + [550] = {.lex_state = 140}, + [551] = {.lex_state = 140}, + [552] = {.lex_state = 140}, + [553] = {.lex_state = 140}, + [554] = {.lex_state = 140}, + [555] = {.lex_state = 140}, + [556] = {.lex_state = 140}, [557] = {.lex_state = 140}, [558] = {.lex_state = 140}, - [559] = {.lex_state = 65}, - [560] = {.lex_state = 140}, - [561] = {.lex_state = 140}, - [562] = {.lex_state = 140}, - [563] = {.lex_state = 140}, - [564] = {.lex_state = 140}, - [565] = {.lex_state = 140}, - [566] = {.lex_state = 140}, - [567] = {.lex_state = 140}, - [568] = {.lex_state = 140}, - [569] = {.lex_state = 140}, - [570] = {.lex_state = 140}, - [571] = {.lex_state = 140}, - [572] = {.lex_state = 140}, - [573] = {.lex_state = 140}, - [574] = {.lex_state = 140}, - [575] = {.lex_state = 140}, - [576] = {.lex_state = 140}, - [577] = {.lex_state = 140}, - [578] = {.lex_state = 140}, - [579] = {.lex_state = 140}, - [580] = {.lex_state = 140}, - [581] = {.lex_state = 140}, + [559] = {.lex_state = 140}, + [560] = {.lex_state = 64}, + [561] = {.lex_state = 64}, + [562] = {.lex_state = 64}, + [563] = {.lex_state = 64}, + [564] = {.lex_state = 64}, + [565] = {.lex_state = 64}, + [566] = {.lex_state = 64}, + [567] = {.lex_state = 64}, + [568] = {.lex_state = 64}, + [569] = {.lex_state = 65}, + [570] = {.lex_state = 65}, + [571] = {.lex_state = 64}, + [572] = {.lex_state = 65}, + [573] = {.lex_state = 65}, + [574] = {.lex_state = 65}, + [575] = {.lex_state = 65}, + [576] = {.lex_state = 65}, + [577] = {.lex_state = 65}, + [578] = {.lex_state = 65}, + [579] = {.lex_state = 65}, + [580] = {.lex_state = 65}, + [581] = {.lex_state = 65}, [582] = {.lex_state = 140}, [583] = {.lex_state = 140}, [584] = {.lex_state = 140}, - [585] = {.lex_state = 140}, - [586] = {.lex_state = 71}, + [585] = {.lex_state = 65}, + [586] = {.lex_state = 140}, [587] = {.lex_state = 140}, [588] = {.lex_state = 140}, [589] = {.lex_state = 140}, - [590] = {.lex_state = 70}, + [590] = {.lex_state = 140}, [591] = {.lex_state = 140}, [592] = {.lex_state = 140}, - [593] = {.lex_state = 70}, + [593] = {.lex_state = 140}, [594] = {.lex_state = 140}, [595] = {.lex_state = 140}, [596] = {.lex_state = 140}, [597] = {.lex_state = 140}, - [598] = {.lex_state = 71}, - [599] = {.lex_state = 70}, + [598] = {.lex_state = 140}, + [599] = {.lex_state = 140}, [600] = {.lex_state = 140}, - [601] = {.lex_state = 71}, + [601] = {.lex_state = 140}, [602] = {.lex_state = 140}, [603] = {.lex_state = 140}, [604] = {.lex_state = 140}, @@ -13808,28 +13909,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [610] = {.lex_state = 140}, [611] = {.lex_state = 140}, [612] = {.lex_state = 140}, - [613] = {.lex_state = 140}, + [613] = {.lex_state = 71}, [614] = {.lex_state = 140}, [615] = {.lex_state = 140}, [616] = {.lex_state = 140}, [617] = {.lex_state = 140}, [618] = {.lex_state = 140}, - [619] = {.lex_state = 140}, + [619] = {.lex_state = 70}, [620] = {.lex_state = 140}, [621] = {.lex_state = 140}, [622] = {.lex_state = 140}, [623] = {.lex_state = 140}, [624] = {.lex_state = 140}, [625] = {.lex_state = 140}, - [626] = {.lex_state = 140}, + [626] = {.lex_state = 71}, [627] = {.lex_state = 140}, - [628] = {.lex_state = 140}, + [628] = {.lex_state = 70}, [629] = {.lex_state = 140}, [630] = {.lex_state = 140}, [631] = {.lex_state = 140}, - [632] = {.lex_state = 140}, + [632] = {.lex_state = 71}, [633] = {.lex_state = 140}, - [634] = {.lex_state = 140}, + [634] = {.lex_state = 70}, [635] = {.lex_state = 140}, [636] = {.lex_state = 140}, [637] = {.lex_state = 140}, @@ -13844,7 +13945,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [646] = {.lex_state = 140}, [647] = {.lex_state = 140}, [648] = {.lex_state = 140}, - [649] = {.lex_state = 140}, + [649] = {.lex_state = 64}, [650] = {.lex_state = 140}, [651] = {.lex_state = 140}, [652] = {.lex_state = 140}, @@ -13908,7 +14009,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 140}, [711] = {.lex_state = 140}, [712] = {.lex_state = 140}, - [713] = {.lex_state = 64}, + [713] = {.lex_state = 140}, [714] = {.lex_state = 140}, [715] = {.lex_state = 140}, [716] = {.lex_state = 140}, @@ -13961,193 +14062,193 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [763] = {.lex_state = 140}, [764] = {.lex_state = 140}, [765] = {.lex_state = 140}, - [766] = {.lex_state = 60}, - [767] = {.lex_state = 64}, - [768] = {.lex_state = 60}, - [769] = {.lex_state = 64}, - [770] = {.lex_state = 60}, - [771] = {.lex_state = 64}, - [772] = {.lex_state = 64}, - [773] = {.lex_state = 60}, - [774] = {.lex_state = 64}, - [775] = {.lex_state = 60}, - [776] = {.lex_state = 60}, - [777] = {.lex_state = 60}, - [778] = {.lex_state = 62}, - [779] = {.lex_state = 62}, - [780] = {.lex_state = 62}, - [781] = {.lex_state = 62}, - [782] = {.lex_state = 62}, - [783] = {.lex_state = 62}, - [784] = {.lex_state = 62}, - [785] = {.lex_state = 62}, - [786] = {.lex_state = 62}, - [787] = {.lex_state = 62}, + [766] = {.lex_state = 140}, + [767] = {.lex_state = 140}, + [768] = {.lex_state = 140}, + [769] = {.lex_state = 140}, + [770] = {.lex_state = 140}, + [771] = {.lex_state = 140}, + [772] = {.lex_state = 140}, + [773] = {.lex_state = 140}, + [774] = {.lex_state = 140}, + [775] = {.lex_state = 140}, + [776] = {.lex_state = 140}, + [777] = {.lex_state = 140}, + [778] = {.lex_state = 140}, + [779] = {.lex_state = 140}, + [780] = {.lex_state = 140}, + [781] = {.lex_state = 140}, + [782] = {.lex_state = 140}, + [783] = {.lex_state = 140}, + [784] = {.lex_state = 140}, + [785] = {.lex_state = 140}, + [786] = {.lex_state = 140}, + [787] = {.lex_state = 140}, [788] = {.lex_state = 140}, - [789] = {.lex_state = 62}, + [789] = {.lex_state = 140}, [790] = {.lex_state = 140}, - [791] = {.lex_state = 140}, + [791] = {.lex_state = 60}, [792] = {.lex_state = 60}, [793] = {.lex_state = 64}, [794] = {.lex_state = 64}, - [795] = {.lex_state = 64}, + [795] = {.lex_state = 60}, [796] = {.lex_state = 64}, [797] = {.lex_state = 64}, - [798] = {.lex_state = 62}, - [799] = {.lex_state = 64}, - [800] = {.lex_state = 64}, - [801] = {.lex_state = 64}, - [802] = {.lex_state = 64}, - [803] = {.lex_state = 64}, - [804] = {.lex_state = 64}, + [798] = {.lex_state = 64}, + [799] = {.lex_state = 60}, + [800] = {.lex_state = 60}, + [801] = {.lex_state = 60}, + [802] = {.lex_state = 60}, + [803] = {.lex_state = 62}, + [804] = {.lex_state = 62}, [805] = {.lex_state = 62}, - [806] = {.lex_state = 64}, + [806] = {.lex_state = 62}, [807] = {.lex_state = 62}, - [808] = {.lex_state = 64}, + [808] = {.lex_state = 62}, [809] = {.lex_state = 62}, - [810] = {.lex_state = 64}, + [810] = {.lex_state = 62}, [811] = {.lex_state = 62}, [812] = {.lex_state = 62}, - [813] = {.lex_state = 62}, + [813] = {.lex_state = 140}, [814] = {.lex_state = 62}, - [815] = {.lex_state = 64}, - [816] = {.lex_state = 64}, - [817] = {.lex_state = 64}, - [818] = {.lex_state = 62}, - [819] = {.lex_state = 62}, + [815] = {.lex_state = 140}, + [816] = {.lex_state = 60}, + [817] = {.lex_state = 140}, + [818] = {.lex_state = 64}, + [819] = {.lex_state = 64}, [820] = {.lex_state = 62}, [821] = {.lex_state = 62}, [822] = {.lex_state = 64}, [823] = {.lex_state = 62}, - [824] = {.lex_state = 62}, + [824] = {.lex_state = 64}, [825] = {.lex_state = 64}, - [826] = {.lex_state = 62}, - [827] = {.lex_state = 64}, - [828] = {.lex_state = 64}, - [829] = {.lex_state = 64}, - [830] = {.lex_state = 62}, - [831] = {.lex_state = 60}, - [832] = {.lex_state = 62}, - [833] = {.lex_state = 64}, - [834] = {.lex_state = 62}, - [835] = {.lex_state = 63}, - [836] = {.lex_state = 63}, - [837] = {.lex_state = 62}, - [838] = {.lex_state = 63}, - [839] = {.lex_state = 63}, - [840] = {.lex_state = 60}, + [826] = {.lex_state = 64}, + [827] = {.lex_state = 62}, + [828] = {.lex_state = 62}, + [829] = {.lex_state = 62}, + [830] = {.lex_state = 64}, + [831] = {.lex_state = 62}, + [832] = {.lex_state = 64}, + [833] = {.lex_state = 62}, + [834] = {.lex_state = 64}, + [835] = {.lex_state = 62}, + [836] = {.lex_state = 62}, + [837] = {.lex_state = 64}, + [838] = {.lex_state = 64}, + [839] = {.lex_state = 62}, + [840] = {.lex_state = 64}, [841] = {.lex_state = 64}, [842] = {.lex_state = 62}, - [843] = {.lex_state = 64}, - [844] = {.lex_state = 62}, - [845] = {.lex_state = 62}, - [846] = {.lex_state = 61}, - [847] = {.lex_state = 61}, - [848] = {.lex_state = 60}, - [849] = {.lex_state = 61}, - [850] = {.lex_state = 140}, - [851] = {.lex_state = 61}, - [852] = {.lex_state = 61}, - [853] = {.lex_state = 61}, - [854] = {.lex_state = 64}, - [855] = {.lex_state = 64}, + [843] = {.lex_state = 62}, + [844] = {.lex_state = 64}, + [845] = {.lex_state = 64}, + [846] = {.lex_state = 64}, + [847] = {.lex_state = 62}, + [848] = {.lex_state = 64}, + [849] = {.lex_state = 64}, + [850] = {.lex_state = 64}, + [851] = {.lex_state = 64}, + [852] = {.lex_state = 64}, + [853] = {.lex_state = 64}, + [854] = {.lex_state = 62}, + [855] = {.lex_state = 62}, [856] = {.lex_state = 64}, [857] = {.lex_state = 64}, - [858] = {.lex_state = 61}, - [859] = {.lex_state = 64}, - [860] = {.lex_state = 61}, + [858] = {.lex_state = 63}, + [859] = {.lex_state = 63}, + [860] = {.lex_state = 62}, [861] = {.lex_state = 64}, - [862] = {.lex_state = 64}, - [863] = {.lex_state = 64}, - [864] = {.lex_state = 64}, - [865] = {.lex_state = 64}, - [866] = {.lex_state = 60}, + [862] = {.lex_state = 63}, + [863] = {.lex_state = 60}, + [864] = {.lex_state = 62}, + [865] = {.lex_state = 63}, + [866] = {.lex_state = 62}, [867] = {.lex_state = 60}, - [868] = {.lex_state = 64}, - [869] = {.lex_state = 64}, - [870] = {.lex_state = 60}, - [871] = {.lex_state = 60}, - [872] = {.lex_state = 140}, + [868] = {.lex_state = 62}, + [869] = {.lex_state = 62}, + [870] = {.lex_state = 62}, + [871] = {.lex_state = 61}, + [872] = {.lex_state = 61}, [873] = {.lex_state = 60}, - [874] = {.lex_state = 60}, - [875] = {.lex_state = 60}, - [876] = {.lex_state = 62}, - [877] = {.lex_state = 62}, - [878] = {.lex_state = 62}, - [879] = {.lex_state = 60}, - [880] = {.lex_state = 62}, - [881] = {.lex_state = 62}, - [882] = {.lex_state = 62}, - [883] = {.lex_state = 62}, - [884] = {.lex_state = 62}, - [885] = {.lex_state = 62}, - [886] = {.lex_state = 62}, - [887] = {.lex_state = 62}, - [888] = {.lex_state = 62}, + [874] = {.lex_state = 61}, + [875] = {.lex_state = 61}, + [876] = {.lex_state = 61}, + [877] = {.lex_state = 61}, + [878] = {.lex_state = 140}, + [879] = {.lex_state = 64}, + [880] = {.lex_state = 64}, + [881] = {.lex_state = 61}, + [882] = {.lex_state = 64}, + [883] = {.lex_state = 64}, + [884] = {.lex_state = 64}, + [885] = {.lex_state = 64}, + [886] = {.lex_state = 64}, + [887] = {.lex_state = 61}, + [888] = {.lex_state = 64}, [889] = {.lex_state = 64}, [890] = {.lex_state = 64}, - [891] = {.lex_state = 64}, - [892] = {.lex_state = 64}, - [893] = {.lex_state = 66}, - [894] = {.lex_state = 62}, - [895] = {.lex_state = 64}, - [896] = {.lex_state = 66}, - [897] = {.lex_state = 66}, - [898] = {.lex_state = 64}, - [899] = {.lex_state = 64}, - [900] = {.lex_state = 66}, - [901] = {.lex_state = 64}, - [902] = {.lex_state = 64}, - [903] = {.lex_state = 64}, - [904] = {.lex_state = 64}, - [905] = {.lex_state = 64}, - [906] = {.lex_state = 64}, - [907] = {.lex_state = 64}, - [908] = {.lex_state = 66}, - [909] = {.lex_state = 66}, - [910] = {.lex_state = 66}, - [911] = {.lex_state = 66}, - [912] = {.lex_state = 66}, - [913] = {.lex_state = 66}, - [914] = {.lex_state = 66}, - [915] = {.lex_state = 66}, - [916] = {.lex_state = 66}, + [891] = {.lex_state = 60}, + [892] = {.lex_state = 60}, + [893] = {.lex_state = 64}, + [894] = {.lex_state = 60}, + [895] = {.lex_state = 140}, + [896] = {.lex_state = 60}, + [897] = {.lex_state = 64}, + [898] = {.lex_state = 60}, + [899] = {.lex_state = 60}, + [900] = {.lex_state = 60}, + [901] = {.lex_state = 62}, + [902] = {.lex_state = 62}, + [903] = {.lex_state = 62}, + [904] = {.lex_state = 62}, + [905] = {.lex_state = 62}, + [906] = {.lex_state = 62}, + [907] = {.lex_state = 62}, + [908] = {.lex_state = 60}, + [909] = {.lex_state = 62}, + [910] = {.lex_state = 62}, + [911] = {.lex_state = 62}, + [912] = {.lex_state = 62}, + [913] = {.lex_state = 62}, + [914] = {.lex_state = 64}, + [915] = {.lex_state = 64}, + [916] = {.lex_state = 62}, [917] = {.lex_state = 66}, - [918] = {.lex_state = 66}, - [919] = {.lex_state = 66}, - [920] = {.lex_state = 66}, - [921] = {.lex_state = 66}, - [922] = {.lex_state = 66}, - [923] = {.lex_state = 66}, - [924] = {.lex_state = 66}, - [925] = {.lex_state = 66}, + [918] = {.lex_state = 64}, + [919] = {.lex_state = 64}, + [920] = {.lex_state = 64}, + [921] = {.lex_state = 64}, + [922] = {.lex_state = 64}, + [923] = {.lex_state = 64}, + [924] = {.lex_state = 64}, + [925] = {.lex_state = 64}, [926] = {.lex_state = 64}, - [927] = {.lex_state = 64}, - [928] = {.lex_state = 66}, + [927] = {.lex_state = 66}, + [928] = {.lex_state = 64}, [929] = {.lex_state = 66}, - [930] = {.lex_state = 64}, + [930] = {.lex_state = 66}, [931] = {.lex_state = 64}, - [932] = {.lex_state = 64}, + [932] = {.lex_state = 66}, [933] = {.lex_state = 66}, [934] = {.lex_state = 66}, [935] = {.lex_state = 66}, [936] = {.lex_state = 66}, - [937] = {.lex_state = 64}, + [937] = {.lex_state = 66}, [938] = {.lex_state = 66}, - [939] = {.lex_state = 64}, + [939] = {.lex_state = 66}, [940] = {.lex_state = 66}, [941] = {.lex_state = 66}, [942] = {.lex_state = 66}, [943] = {.lex_state = 66}, [944] = {.lex_state = 66}, [945] = {.lex_state = 66}, - [946] = {.lex_state = 64}, - [947] = {.lex_state = 66}, + [946] = {.lex_state = 66}, + [947] = {.lex_state = 64}, [948] = {.lex_state = 66}, [949] = {.lex_state = 66}, [950] = {.lex_state = 66}, [951] = {.lex_state = 66}, - [952] = {.lex_state = 64}, + [952] = {.lex_state = 66}, [953] = {.lex_state = 64}, [954] = {.lex_state = 64}, [955] = {.lex_state = 66}, @@ -14158,40 +14259,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [960] = {.lex_state = 64}, [961] = {.lex_state = 64}, [962] = {.lex_state = 64}, - [963] = {.lex_state = 64}, + [963] = {.lex_state = 66}, [964] = {.lex_state = 66}, [965] = {.lex_state = 66}, - [966] = {.lex_state = 66}, - [967] = {.lex_state = 64}, + [966] = {.lex_state = 64}, + [967] = {.lex_state = 66}, [968] = {.lex_state = 66}, - [969] = {.lex_state = 64}, - [970] = {.lex_state = 64}, + [969] = {.lex_state = 66}, + [970] = {.lex_state = 66}, [971] = {.lex_state = 66}, - [972] = {.lex_state = 64}, - [973] = {.lex_state = 65}, - [974] = {.lex_state = 65}, - [975] = {.lex_state = 65}, - [976] = {.lex_state = 65}, - [977] = {.lex_state = 65}, - [978] = {.lex_state = 65}, - [979] = {.lex_state = 60}, - [980] = {.lex_state = 60}, - [981] = {.lex_state = 60}, + [972] = {.lex_state = 66}, + [973] = {.lex_state = 66}, + [974] = {.lex_state = 64}, + [975] = {.lex_state = 64}, + [976] = {.lex_state = 64}, + [977] = {.lex_state = 64}, + [978] = {.lex_state = 64}, + [979] = {.lex_state = 66}, + [980] = {.lex_state = 66}, + [981] = {.lex_state = 64}, [982] = {.lex_state = 64}, - [983] = {.lex_state = 64}, - [984] = {.lex_state = 60}, - [985] = {.lex_state = 60}, - [986] = {.lex_state = 60}, - [987] = {.lex_state = 64}, - [988] = {.lex_state = 64}, - [989] = {.lex_state = 65}, - [990] = {.lex_state = 64}, - [991] = {.lex_state = 60}, + [983] = {.lex_state = 66}, + [984] = {.lex_state = 66}, + [985] = {.lex_state = 66}, + [986] = {.lex_state = 64}, + [987] = {.lex_state = 66}, + [988] = {.lex_state = 66}, + [989] = {.lex_state = 66}, + [990] = {.lex_state = 66}, + [991] = {.lex_state = 66}, [992] = {.lex_state = 64}, - [993] = {.lex_state = 65}, - [994] = {.lex_state = 65}, - [995] = {.lex_state = 64}, - [996] = {.lex_state = 65}, + [993] = {.lex_state = 64}, + [994] = {.lex_state = 64}, + [995] = {.lex_state = 66}, + [996] = {.lex_state = 64}, [997] = {.lex_state = 60}, [998] = {.lex_state = 60}, [999] = {.lex_state = 65}, @@ -14199,104 +14300,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1001] = {.lex_state = 65}, [1002] = {.lex_state = 65}, [1003] = {.lex_state = 65}, - [1004] = {.lex_state = 64}, + [1004] = {.lex_state = 65}, [1005] = {.lex_state = 65}, - [1006] = {.lex_state = 65}, + [1006] = {.lex_state = 64}, [1007] = {.lex_state = 64}, [1008] = {.lex_state = 65}, - [1009] = {.lex_state = 60}, - [1010] = {.lex_state = 60}, - [1011] = {.lex_state = 60}, - [1012] = {.lex_state = 60}, + [1009] = {.lex_state = 65}, + [1010] = {.lex_state = 65}, + [1011] = {.lex_state = 65}, + [1012] = {.lex_state = 65}, [1013] = {.lex_state = 60}, - [1014] = {.lex_state = 60}, - [1015] = {.lex_state = 60}, - [1016] = {.lex_state = 60}, + [1014] = {.lex_state = 65}, + [1015] = {.lex_state = 65}, + [1016] = {.lex_state = 64}, [1017] = {.lex_state = 60}, [1018] = {.lex_state = 64}, - [1019] = {.lex_state = 64}, - [1020] = {.lex_state = 64}, - [1021] = {.lex_state = 60}, - [1022] = {.lex_state = 64}, + [1019] = {.lex_state = 60}, + [1020] = {.lex_state = 60}, + [1021] = {.lex_state = 64}, + [1022] = {.lex_state = 65}, [1023] = {.lex_state = 64}, [1024] = {.lex_state = 64}, - [1025] = {.lex_state = 70}, - [1026] = {.lex_state = 71}, - [1027] = {.lex_state = 70}, - [1028] = {.lex_state = 70}, - [1029] = {.lex_state = 64}, - [1030] = {.lex_state = 71}, - [1031] = {.lex_state = 70}, - [1032] = {.lex_state = 70}, - [1033] = {.lex_state = 71}, - [1034] = {.lex_state = 71}, + [1025] = {.lex_state = 60}, + [1026] = {.lex_state = 60}, + [1027] = {.lex_state = 64}, + [1028] = {.lex_state = 64}, + [1029] = {.lex_state = 65}, + [1030] = {.lex_state = 65}, + [1031] = {.lex_state = 65}, + [1032] = {.lex_state = 60}, + [1033] = {.lex_state = 60}, + [1034] = {.lex_state = 60}, [1035] = {.lex_state = 60}, - [1036] = {.lex_state = 70}, - [1037] = {.lex_state = 70}, - [1038] = {.lex_state = 71}, - [1039] = {.lex_state = 70}, - [1040] = {.lex_state = 71}, + [1036] = {.lex_state = 60}, + [1037] = {.lex_state = 60}, + [1038] = {.lex_state = 60}, + [1039] = {.lex_state = 60}, + [1040] = {.lex_state = 60}, [1041] = {.lex_state = 64}, - [1042] = {.lex_state = 71}, + [1042] = {.lex_state = 60}, [1043] = {.lex_state = 64}, - [1044] = {.lex_state = 71}, - [1045] = {.lex_state = 71}, - [1046] = {.lex_state = 70}, - [1047] = {.lex_state = 71}, + [1044] = {.lex_state = 64}, + [1045] = {.lex_state = 64}, + [1046] = {.lex_state = 60}, + [1047] = {.lex_state = 64}, [1048] = {.lex_state = 64}, [1049] = {.lex_state = 64}, - [1050] = {.lex_state = 70}, - [1051] = {.lex_state = 71}, - [1052] = {.lex_state = 71}, - [1053] = {.lex_state = 64}, + [1050] = {.lex_state = 71}, + [1051] = {.lex_state = 64}, + [1052] = {.lex_state = 64}, + [1053] = {.lex_state = 71}, [1054] = {.lex_state = 64}, - [1055] = {.lex_state = 64}, - [1056] = {.lex_state = 64}, + [1055] = {.lex_state = 70}, + [1056] = {.lex_state = 71}, [1057] = {.lex_state = 71}, [1058] = {.lex_state = 71}, [1059] = {.lex_state = 71}, - [1060] = {.lex_state = 70}, + [1060] = {.lex_state = 64}, [1061] = {.lex_state = 71}, [1062] = {.lex_state = 71}, - [1063] = {.lex_state = 60}, - [1064] = {.lex_state = 70}, - [1065] = {.lex_state = 70}, - [1066] = {.lex_state = 64}, - [1067] = {.lex_state = 60}, - [1068] = {.lex_state = 64}, - [1069] = {.lex_state = 70}, + [1063] = {.lex_state = 71}, + [1064] = {.lex_state = 71}, + [1065] = {.lex_state = 71}, + [1066] = {.lex_state = 71}, + [1067] = {.lex_state = 71}, + [1068] = {.lex_state = 70}, + [1069] = {.lex_state = 60}, [1070] = {.lex_state = 70}, [1071] = {.lex_state = 70}, - [1072] = {.lex_state = 64}, - [1073] = {.lex_state = 70}, - [1074] = {.lex_state = 70}, - [1075] = {.lex_state = 60}, + [1072] = {.lex_state = 60}, + [1073] = {.lex_state = 64}, + [1074] = {.lex_state = 64}, + [1075] = {.lex_state = 64}, [1076] = {.lex_state = 64}, - [1077] = {.lex_state = 64}, - [1078] = {.lex_state = 71}, - [1079] = {.lex_state = 60}, - [1080] = {.lex_state = 64}, + [1077] = {.lex_state = 70}, + [1078] = {.lex_state = 64}, + [1079] = {.lex_state = 70}, + [1080] = {.lex_state = 70}, [1081] = {.lex_state = 64}, [1082] = {.lex_state = 64}, - [1083] = {.lex_state = 64}, - [1084] = {.lex_state = 64}, - [1085] = {.lex_state = 64}, - [1086] = {.lex_state = 64}, - [1087] = {.lex_state = 64}, - [1088] = {.lex_state = 64}, - [1089] = {.lex_state = 64}, - [1090] = {.lex_state = 64}, - [1091] = {.lex_state = 64}, - [1092] = {.lex_state = 64}, - [1093] = {.lex_state = 140}, - [1094] = {.lex_state = 64}, - [1095] = {.lex_state = 64}, - [1096] = {.lex_state = 64}, - [1097] = {.lex_state = 64}, - [1098] = {.lex_state = 64}, - [1099] = {.lex_state = 64}, - [1100] = {.lex_state = 64}, - [1101] = {.lex_state = 64}, + [1083] = {.lex_state = 70}, + [1084] = {.lex_state = 70}, + [1085] = {.lex_state = 70}, + [1086] = {.lex_state = 60}, + [1087] = {.lex_state = 60}, + [1088] = {.lex_state = 70}, + [1089] = {.lex_state = 70}, + [1090] = {.lex_state = 71}, + [1091] = {.lex_state = 60}, + [1092] = {.lex_state = 71}, + [1093] = {.lex_state = 71}, + [1094] = {.lex_state = 70}, + [1095] = {.lex_state = 71}, + [1096] = {.lex_state = 71}, + [1097] = {.lex_state = 70}, + [1098] = {.lex_state = 70}, + [1099] = {.lex_state = 70}, + [1100] = {.lex_state = 70}, + [1101] = {.lex_state = 70}, [1102] = {.lex_state = 64}, [1103] = {.lex_state = 64}, [1104] = {.lex_state = 64}, @@ -14312,36 +14413,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1114] = {.lex_state = 64}, [1115] = {.lex_state = 64}, [1116] = {.lex_state = 64}, - [1117] = {.lex_state = 64}, + [1117] = {.lex_state = 140}, [1118] = {.lex_state = 64}, - [1119] = {.lex_state = 64}, + [1119] = {.lex_state = 140}, [1120] = {.lex_state = 64}, [1121] = {.lex_state = 64}, - [1122] = {.lex_state = 64}, + [1122] = {.lex_state = 140}, [1123] = {.lex_state = 64}, [1124] = {.lex_state = 64}, [1125] = {.lex_state = 64}, [1126] = {.lex_state = 64}, [1127] = {.lex_state = 64}, - [1128] = {.lex_state = 64}, - [1129] = {.lex_state = 64}, + [1128] = {.lex_state = 140}, + [1129] = {.lex_state = 140}, [1130] = {.lex_state = 64}, - [1131] = {.lex_state = 62}, - [1132] = {.lex_state = 62}, - [1133] = {.lex_state = 62}, - [1134] = {.lex_state = 62}, - [1135] = {.lex_state = 62}, - [1136] = {.lex_state = 62}, - [1137] = {.lex_state = 62}, + [1131] = {.lex_state = 64}, + [1132] = {.lex_state = 64}, + [1133] = {.lex_state = 64}, + [1134] = {.lex_state = 64}, + [1135] = {.lex_state = 64}, + [1136] = {.lex_state = 64}, + [1137] = {.lex_state = 64}, [1138] = {.lex_state = 64}, - [1139] = {.lex_state = 62}, - [1140] = {.lex_state = 62}, - [1141] = {.lex_state = 62}, - [1142] = {.lex_state = 62}, - [1143] = {.lex_state = 62}, - [1144] = {.lex_state = 62}, + [1139] = {.lex_state = 64}, + [1140] = {.lex_state = 64}, + [1141] = {.lex_state = 64}, + [1142] = {.lex_state = 64}, + [1143] = {.lex_state = 64}, + [1144] = {.lex_state = 64}, [1145] = {.lex_state = 64}, - [1146] = {.lex_state = 64}, + [1146] = {.lex_state = 140}, [1147] = {.lex_state = 64}, [1148] = {.lex_state = 64}, [1149] = {.lex_state = 64}, @@ -14356,29 +14457,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1158] = {.lex_state = 64}, [1159] = {.lex_state = 64}, [1160] = {.lex_state = 64}, - [1161] = {.lex_state = 64}, - [1162] = {.lex_state = 64}, - [1163] = {.lex_state = 64}, - [1164] = {.lex_state = 64}, - [1165] = {.lex_state = 64}, - [1166] = {.lex_state = 64}, - [1167] = {.lex_state = 66}, - [1168] = {.lex_state = 66}, + [1161] = {.lex_state = 62}, + [1162] = {.lex_state = 62}, + [1163] = {.lex_state = 62}, + [1164] = {.lex_state = 62}, + [1165] = {.lex_state = 62}, + [1166] = {.lex_state = 62}, + [1167] = {.lex_state = 62}, + [1168] = {.lex_state = 62}, [1169] = {.lex_state = 64}, - [1170] = {.lex_state = 66}, - [1171] = {.lex_state = 66}, - [1172] = {.lex_state = 66}, - [1173] = {.lex_state = 64}, - [1174] = {.lex_state = 66}, - [1175] = {.lex_state = 66}, - [1176] = {.lex_state = 66}, - [1177] = {.lex_state = 66}, - [1178] = {.lex_state = 66}, + [1170] = {.lex_state = 62}, + [1171] = {.lex_state = 62}, + [1172] = {.lex_state = 62}, + [1173] = {.lex_state = 62}, + [1174] = {.lex_state = 62}, + [1175] = {.lex_state = 64}, + [1176] = {.lex_state = 64}, + [1177] = {.lex_state = 64}, + [1178] = {.lex_state = 64}, [1179] = {.lex_state = 64}, [1180] = {.lex_state = 64}, - [1181] = {.lex_state = 66}, - [1182] = {.lex_state = 66}, - [1183] = {.lex_state = 66}, + [1181] = {.lex_state = 64}, + [1182] = {.lex_state = 64}, + [1183] = {.lex_state = 64}, [1184] = {.lex_state = 64}, [1185] = {.lex_state = 64}, [1186] = {.lex_state = 64}, @@ -14387,101 +14488,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1189] = {.lex_state = 64}, [1190] = {.lex_state = 64}, [1191] = {.lex_state = 64}, - [1192] = {.lex_state = 60}, - [1193] = {.lex_state = 60}, - [1194] = {.lex_state = 60}, + [1192] = {.lex_state = 64}, + [1193] = {.lex_state = 64}, + [1194] = {.lex_state = 64}, [1195] = {.lex_state = 64}, - [1196] = {.lex_state = 60}, - [1197] = {.lex_state = 60}, - [1198] = {.lex_state = 60}, - [1199] = {.lex_state = 60}, - [1200] = {.lex_state = 60}, - [1201] = {.lex_state = 60}, - [1202] = {.lex_state = 60}, + [1196] = {.lex_state = 64}, + [1197] = {.lex_state = 64}, + [1198] = {.lex_state = 64}, + [1199] = {.lex_state = 64}, + [1200] = {.lex_state = 64}, + [1201] = {.lex_state = 66}, + [1202] = {.lex_state = 66}, [1203] = {.lex_state = 64}, - [1204] = {.lex_state = 60}, - [1205] = {.lex_state = 60}, - [1206] = {.lex_state = 60}, - [1207] = {.lex_state = 64}, - [1208] = {.lex_state = 60}, - [1209] = {.lex_state = 60}, - [1210] = {.lex_state = 60}, - [1211] = {.lex_state = 60}, - [1212] = {.lex_state = 64}, - [1213] = {.lex_state = 60}, - [1214] = {.lex_state = 60}, - [1215] = {.lex_state = 60}, - [1216] = {.lex_state = 60}, - [1217] = {.lex_state = 60}, - [1218] = {.lex_state = 60}, - [1219] = {.lex_state = 64}, - [1220] = {.lex_state = 60}, - [1221] = {.lex_state = 60}, - [1222] = {.lex_state = 60}, + [1204] = {.lex_state = 66}, + [1205] = {.lex_state = 64}, + [1206] = {.lex_state = 66}, + [1207] = {.lex_state = 66}, + [1208] = {.lex_state = 64}, + [1209] = {.lex_state = 64}, + [1210] = {.lex_state = 64}, + [1211] = {.lex_state = 66}, + [1212] = {.lex_state = 66}, + [1213] = {.lex_state = 66}, + [1214] = {.lex_state = 66}, + [1215] = {.lex_state = 66}, + [1216] = {.lex_state = 66}, + [1217] = {.lex_state = 66}, + [1218] = {.lex_state = 66}, + [1219] = {.lex_state = 65}, + [1220] = {.lex_state = 65}, + [1221] = {.lex_state = 64}, + [1222] = {.lex_state = 64}, [1223] = {.lex_state = 64}, - [1224] = {.lex_state = 60}, - [1225] = {.lex_state = 60}, - [1226] = {.lex_state = 60}, + [1224] = {.lex_state = 65}, + [1225] = {.lex_state = 64}, + [1226] = {.lex_state = 64}, [1227] = {.lex_state = 64}, [1228] = {.lex_state = 64}, - [1229] = {.lex_state = 60}, - [1230] = {.lex_state = 60}, + [1229] = {.lex_state = 64}, + [1230] = {.lex_state = 65}, [1231] = {.lex_state = 60}, [1232] = {.lex_state = 64}, - [1233] = {.lex_state = 64}, - [1234] = {.lex_state = 64}, + [1233] = {.lex_state = 60}, + [1234] = {.lex_state = 60}, [1235] = {.lex_state = 60}, [1236] = {.lex_state = 60}, - [1237] = {.lex_state = 64}, + [1237] = {.lex_state = 60}, [1238] = {.lex_state = 60}, - [1239] = {.lex_state = 64}, + [1239] = {.lex_state = 60}, [1240] = {.lex_state = 60}, [1241] = {.lex_state = 60}, [1242] = {.lex_state = 60}, - [1243] = {.lex_state = 64}, - [1244] = {.lex_state = 64}, + [1243] = {.lex_state = 60}, + [1244] = {.lex_state = 60}, [1245] = {.lex_state = 64}, - [1246] = {.lex_state = 60}, - [1247] = {.lex_state = 60}, + [1246] = {.lex_state = 64}, + [1247] = {.lex_state = 64}, [1248] = {.lex_state = 60}, [1249] = {.lex_state = 60}, [1250] = {.lex_state = 60}, [1251] = {.lex_state = 60}, [1252] = {.lex_state = 60}, - [1253] = {.lex_state = 64}, - [1254] = {.lex_state = 64}, + [1253] = {.lex_state = 60}, + [1254] = {.lex_state = 60}, [1255] = {.lex_state = 60}, [1256] = {.lex_state = 60}, [1257] = {.lex_state = 60}, [1258] = {.lex_state = 60}, [1259] = {.lex_state = 60}, [1260] = {.lex_state = 60}, - [1261] = {.lex_state = 64}, + [1261] = {.lex_state = 60}, [1262] = {.lex_state = 60}, [1263] = {.lex_state = 60}, [1264] = {.lex_state = 60}, [1265] = {.lex_state = 60}, [1266] = {.lex_state = 60}, - [1267] = {.lex_state = 60}, + [1267] = {.lex_state = 64}, [1268] = {.lex_state = 60}, - [1269] = {.lex_state = 60}, + [1269] = {.lex_state = 64}, [1270] = {.lex_state = 60}, [1271] = {.lex_state = 60}, - [1272] = {.lex_state = 60}, + [1272] = {.lex_state = 64}, [1273] = {.lex_state = 64}, - [1274] = {.lex_state = 60}, - [1275] = {.lex_state = 64}, + [1274] = {.lex_state = 64}, + [1275] = {.lex_state = 60}, [1276] = {.lex_state = 64}, [1277] = {.lex_state = 64}, [1278] = {.lex_state = 60}, [1279] = {.lex_state = 60}, - [1280] = {.lex_state = 64}, + [1280] = {.lex_state = 60}, [1281] = {.lex_state = 60}, [1282] = {.lex_state = 60}, - [1283] = {.lex_state = 60}, + [1283] = {.lex_state = 64}, [1284] = {.lex_state = 60}, [1285] = {.lex_state = 60}, - [1286] = {.lex_state = 60}, + [1286] = {.lex_state = 64}, [1287] = {.lex_state = 64}, [1288] = {.lex_state = 60}, [1289] = {.lex_state = 60}, @@ -14491,192 +14592,192 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 64}, [1294] = {.lex_state = 60}, [1295] = {.lex_state = 60}, - [1296] = {.lex_state = 60}, + [1296] = {.lex_state = 64}, [1297] = {.lex_state = 60}, - [1298] = {.lex_state = 60}, + [1298] = {.lex_state = 64}, [1299] = {.lex_state = 60}, - [1300] = {.lex_state = 60}, + [1300] = {.lex_state = 64}, [1301] = {.lex_state = 60}, [1302] = {.lex_state = 64}, [1303] = {.lex_state = 60}, - [1304] = {.lex_state = 64}, - [1305] = {.lex_state = 64}, + [1304] = {.lex_state = 60}, + [1305] = {.lex_state = 60}, [1306] = {.lex_state = 60}, - [1307] = {.lex_state = 64}, - [1308] = {.lex_state = 64}, - [1309] = {.lex_state = 64}, - [1310] = {.lex_state = 64}, - [1311] = {.lex_state = 64}, - [1312] = {.lex_state = 64}, - [1313] = {.lex_state = 64}, - [1314] = {.lex_state = 64}, + [1307] = {.lex_state = 60}, + [1308] = {.lex_state = 60}, + [1309] = {.lex_state = 60}, + [1310] = {.lex_state = 60}, + [1311] = {.lex_state = 60}, + [1312] = {.lex_state = 60}, + [1313] = {.lex_state = 60}, + [1314] = {.lex_state = 60}, [1315] = {.lex_state = 64}, [1316] = {.lex_state = 64}, - [1317] = {.lex_state = 64}, - [1318] = {.lex_state = 64}, - [1319] = {.lex_state = 64}, - [1320] = {.lex_state = 65}, - [1321] = {.lex_state = 64}, - [1322] = {.lex_state = 64}, - [1323] = {.lex_state = 64}, + [1317] = {.lex_state = 60}, + [1318] = {.lex_state = 60}, + [1319] = {.lex_state = 60}, + [1320] = {.lex_state = 60}, + [1321] = {.lex_state = 60}, + [1322] = {.lex_state = 60}, + [1323] = {.lex_state = 60}, [1324] = {.lex_state = 64}, - [1325] = {.lex_state = 64}, - [1326] = {.lex_state = 64}, - [1327] = {.lex_state = 65}, - [1328] = {.lex_state = 59}, - [1329] = {.lex_state = 65}, - [1330] = {.lex_state = 59}, - [1331] = {.lex_state = 59}, - [1332] = {.lex_state = 33}, - [1333] = {.lex_state = 65}, - [1334] = {.lex_state = 59}, - [1335] = {.lex_state = 59}, - [1336] = {.lex_state = 65}, - [1337] = {.lex_state = 59}, + [1325] = {.lex_state = 60}, + [1326] = {.lex_state = 60}, + [1327] = {.lex_state = 60}, + [1328] = {.lex_state = 60}, + [1329] = {.lex_state = 60}, + [1330] = {.lex_state = 60}, + [1331] = {.lex_state = 60}, + [1332] = {.lex_state = 64}, + [1333] = {.lex_state = 60}, + [1334] = {.lex_state = 60}, + [1335] = {.lex_state = 60}, + [1336] = {.lex_state = 64}, + [1337] = {.lex_state = 60}, [1338] = {.lex_state = 64}, - [1339] = {.lex_state = 59}, - [1340] = {.lex_state = 59}, - [1341] = {.lex_state = 59}, - [1342] = {.lex_state = 59}, - [1343] = {.lex_state = 59}, - [1344] = {.lex_state = 59}, - [1345] = {.lex_state = 65}, - [1346] = {.lex_state = 59}, - [1347] = {.lex_state = 65}, - [1348] = {.lex_state = 59}, - [1349] = {.lex_state = 59}, - [1350] = {.lex_state = 65}, - [1351] = {.lex_state = 65}, - [1352] = {.lex_state = 65}, - [1353] = {.lex_state = 59}, - [1354] = {.lex_state = 59}, - [1355] = {.lex_state = 59}, - [1356] = {.lex_state = 59}, + [1339] = {.lex_state = 60}, + [1340] = {.lex_state = 64}, + [1341] = {.lex_state = 64}, + [1342] = {.lex_state = 60}, + [1343] = {.lex_state = 64}, + [1344] = {.lex_state = 60}, + [1345] = {.lex_state = 64}, + [1346] = {.lex_state = 64}, + [1347] = {.lex_state = 64}, + [1348] = {.lex_state = 64}, + [1349] = {.lex_state = 64}, + [1350] = {.lex_state = 64}, + [1351] = {.lex_state = 64}, + [1352] = {.lex_state = 64}, + [1353] = {.lex_state = 64}, + [1354] = {.lex_state = 64}, + [1355] = {.lex_state = 64}, + [1356] = {.lex_state = 64}, [1357] = {.lex_state = 64}, - [1358] = {.lex_state = 65}, - [1359] = {.lex_state = 59}, - [1360] = {.lex_state = 59}, - [1361] = {.lex_state = 59}, - [1362] = {.lex_state = 65}, - [1363] = {.lex_state = 59}, - [1364] = {.lex_state = 59}, - [1365] = {.lex_state = 59}, + [1358] = {.lex_state = 64}, + [1359] = {.lex_state = 64}, + [1360] = {.lex_state = 64}, + [1361] = {.lex_state = 65}, + [1362] = {.lex_state = 64}, + [1363] = {.lex_state = 64}, + [1364] = {.lex_state = 64}, + [1365] = {.lex_state = 64}, [1366] = {.lex_state = 59}, - [1367] = {.lex_state = 59}, - [1368] = {.lex_state = 59}, - [1369] = {.lex_state = 59}, - [1370] = {.lex_state = 59}, + [1367] = {.lex_state = 65}, + [1368] = {.lex_state = 65}, + [1369] = {.lex_state = 65}, + [1370] = {.lex_state = 33}, [1371] = {.lex_state = 59}, [1372] = {.lex_state = 59}, [1373] = {.lex_state = 59}, - [1374] = {.lex_state = 65}, - [1375] = {.lex_state = 65}, + [1374] = {.lex_state = 59}, + [1375] = {.lex_state = 64}, [1376] = {.lex_state = 59}, [1377] = {.lex_state = 59}, - [1378] = {.lex_state = 65}, - [1379] = {.lex_state = 64}, + [1378] = {.lex_state = 59}, + [1379] = {.lex_state = 59}, [1380] = {.lex_state = 59}, - [1381] = {.lex_state = 65}, + [1381] = {.lex_state = 59}, [1382] = {.lex_state = 59}, - [1383] = {.lex_state = 65}, + [1383] = {.lex_state = 59}, [1384] = {.lex_state = 59}, - [1385] = {.lex_state = 65}, - [1386] = {.lex_state = 65}, - [1387] = {.lex_state = 65}, - [1388] = {.lex_state = 65}, - [1389] = {.lex_state = 59}, - [1390] = {.lex_state = 65}, - [1391] = {.lex_state = 65}, - [1392] = {.lex_state = 65}, + [1385] = {.lex_state = 59}, + [1386] = {.lex_state = 59}, + [1387] = {.lex_state = 59}, + [1388] = {.lex_state = 59}, + [1389] = {.lex_state = 64}, + [1390] = {.lex_state = 59}, + [1391] = {.lex_state = 59}, + [1392] = {.lex_state = 59}, [1393] = {.lex_state = 59}, - [1394] = {.lex_state = 59}, + [1394] = {.lex_state = 64}, [1395] = {.lex_state = 59}, - [1396] = {.lex_state = 64}, - [1397] = {.lex_state = 64}, - [1398] = {.lex_state = 59}, + [1396] = {.lex_state = 65}, + [1397] = {.lex_state = 65}, + [1398] = {.lex_state = 65}, [1399] = {.lex_state = 59}, - [1400] = {.lex_state = 65}, - [1401] = {.lex_state = 33}, - [1402] = {.lex_state = 33}, - [1403] = {.lex_state = 33}, - [1404] = {.lex_state = 33}, - [1405] = {.lex_state = 33}, - [1406] = {.lex_state = 33}, - [1407] = {.lex_state = 33}, - [1408] = {.lex_state = 33}, - [1409] = {.lex_state = 33}, - [1410] = {.lex_state = 33}, - [1411] = {.lex_state = 33}, - [1412] = {.lex_state = 33}, - [1413] = {.lex_state = 33}, - [1414] = {.lex_state = 33}, - [1415] = {.lex_state = 64}, - [1416] = {.lex_state = 33}, - [1417] = {.lex_state = 33}, - [1418] = {.lex_state = 65}, - [1419] = {.lex_state = 33}, - [1420] = {.lex_state = 33}, - [1421] = {.lex_state = 33}, - [1422] = {.lex_state = 33}, - [1423] = {.lex_state = 33}, - [1424] = {.lex_state = 33}, - [1425] = {.lex_state = 33}, - [1426] = {.lex_state = 33}, - [1427] = {.lex_state = 64}, - [1428] = {.lex_state = 33}, - [1429] = {.lex_state = 64}, - [1430] = {.lex_state = 33}, - [1431] = {.lex_state = 33}, - [1432] = {.lex_state = 33}, - [1433] = {.lex_state = 33}, - [1434] = {.lex_state = 33}, - [1435] = {.lex_state = 64}, + [1400] = {.lex_state = 59}, + [1401] = {.lex_state = 64}, + [1402] = {.lex_state = 65}, + [1403] = {.lex_state = 65}, + [1404] = {.lex_state = 64}, + [1405] = {.lex_state = 59}, + [1406] = {.lex_state = 65}, + [1407] = {.lex_state = 59}, + [1408] = {.lex_state = 65}, + [1409] = {.lex_state = 65}, + [1410] = {.lex_state = 65}, + [1411] = {.lex_state = 59}, + [1412] = {.lex_state = 59}, + [1413] = {.lex_state = 65}, + [1414] = {.lex_state = 65}, + [1415] = {.lex_state = 59}, + [1416] = {.lex_state = 59}, + [1417] = {.lex_state = 59}, + [1418] = {.lex_state = 59}, + [1419] = {.lex_state = 59}, + [1420] = {.lex_state = 59}, + [1421] = {.lex_state = 59}, + [1422] = {.lex_state = 59}, + [1423] = {.lex_state = 59}, + [1424] = {.lex_state = 65}, + [1425] = {.lex_state = 59}, + [1426] = {.lex_state = 65}, + [1427] = {.lex_state = 65}, + [1428] = {.lex_state = 59}, + [1429] = {.lex_state = 59}, + [1430] = {.lex_state = 65}, + [1431] = {.lex_state = 59}, + [1432] = {.lex_state = 65}, + [1433] = {.lex_state = 59}, + [1434] = {.lex_state = 59}, + [1435] = {.lex_state = 33}, [1436] = {.lex_state = 33}, [1437] = {.lex_state = 33}, - [1438] = {.lex_state = 64}, - [1439] = {.lex_state = 64}, + [1438] = {.lex_state = 65}, + [1439] = {.lex_state = 33}, [1440] = {.lex_state = 33}, - [1441] = {.lex_state = 64}, + [1441] = {.lex_state = 33}, [1442] = {.lex_state = 33}, - [1443] = {.lex_state = 64}, - [1444] = {.lex_state = 64}, - [1445] = {.lex_state = 64}, + [1443] = {.lex_state = 33}, + [1444] = {.lex_state = 33}, + [1445] = {.lex_state = 33}, [1446] = {.lex_state = 33}, - [1447] = {.lex_state = 64}, - [1448] = {.lex_state = 64}, - [1449] = {.lex_state = 64}, - [1450] = {.lex_state = 64}, + [1447] = {.lex_state = 33}, + [1448] = {.lex_state = 33}, + [1449] = {.lex_state = 33}, + [1450] = {.lex_state = 33}, [1451] = {.lex_state = 64}, - [1452] = {.lex_state = 64}, - [1453] = {.lex_state = 64}, - [1454] = {.lex_state = 64}, - [1455] = {.lex_state = 64}, - [1456] = {.lex_state = 64}, - [1457] = {.lex_state = 64}, - [1458] = {.lex_state = 64}, - [1459] = {.lex_state = 64}, - [1460] = {.lex_state = 64}, + [1452] = {.lex_state = 33}, + [1453] = {.lex_state = 33}, + [1454] = {.lex_state = 33}, + [1455] = {.lex_state = 33}, + [1456] = {.lex_state = 33}, + [1457] = {.lex_state = 33}, + [1458] = {.lex_state = 33}, + [1459] = {.lex_state = 33}, + [1460] = {.lex_state = 33}, [1461] = {.lex_state = 64}, [1462] = {.lex_state = 64}, [1463] = {.lex_state = 64}, - [1464] = {.lex_state = 64}, - [1465] = {.lex_state = 64}, + [1464] = {.lex_state = 33}, + [1465] = {.lex_state = 33}, [1466] = {.lex_state = 64}, [1467] = {.lex_state = 64}, - [1468] = {.lex_state = 64}, - [1469] = {.lex_state = 62}, - [1470] = {.lex_state = 64}, - [1471] = {.lex_state = 64}, - [1472] = {.lex_state = 64}, + [1468] = {.lex_state = 33}, + [1469] = {.lex_state = 64}, + [1470] = {.lex_state = 33}, + [1471] = {.lex_state = 33}, + [1472] = {.lex_state = 65}, [1473] = {.lex_state = 64}, - [1474] = {.lex_state = 64}, + [1474] = {.lex_state = 33}, [1475] = {.lex_state = 64}, [1476] = {.lex_state = 64}, - [1477] = {.lex_state = 64}, - [1478] = {.lex_state = 64}, - [1479] = {.lex_state = 64}, - [1480] = {.lex_state = 64}, - [1481] = {.lex_state = 64}, + [1477] = {.lex_state = 33}, + [1478] = {.lex_state = 33}, + [1479] = {.lex_state = 33}, + [1480] = {.lex_state = 33}, + [1481] = {.lex_state = 33}, [1482] = {.lex_state = 64}, [1483] = {.lex_state = 64}, [1484] = {.lex_state = 64}, @@ -14692,14 +14793,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1494] = {.lex_state = 64}, [1495] = {.lex_state = 64}, [1496] = {.lex_state = 64}, - [1497] = {.lex_state = 69}, + [1497] = {.lex_state = 64}, [1498] = {.lex_state = 64}, [1499] = {.lex_state = 64}, [1500] = {.lex_state = 64}, - [1501] = {.lex_state = 64}, + [1501] = {.lex_state = 62}, [1502] = {.lex_state = 64}, [1503] = {.lex_state = 64}, - [1504] = {.lex_state = 69}, + [1504] = {.lex_state = 64}, [1505] = {.lex_state = 64}, [1506] = {.lex_state = 64}, [1507] = {.lex_state = 64}, @@ -14712,10 +14813,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1514] = {.lex_state = 64}, [1515] = {.lex_state = 64}, [1516] = {.lex_state = 64}, - [1517] = {.lex_state = 62}, + [1517] = {.lex_state = 64}, [1518] = {.lex_state = 64}, [1519] = {.lex_state = 64}, - [1520] = {.lex_state = 62}, + [1520] = {.lex_state = 64}, [1521] = {.lex_state = 64}, [1522] = {.lex_state = 64}, [1523] = {.lex_state = 64}, @@ -14723,16 +14824,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1525] = {.lex_state = 64}, [1526] = {.lex_state = 64}, [1527] = {.lex_state = 64}, - [1528] = {.lex_state = 62}, - [1529] = {.lex_state = 66}, - [1530] = {.lex_state = 66}, - [1531] = {.lex_state = 69}, + [1528] = {.lex_state = 64}, + [1529] = {.lex_state = 69}, + [1530] = {.lex_state = 64}, + [1531] = {.lex_state = 64}, [1532] = {.lex_state = 64}, [1533] = {.lex_state = 64}, [1534] = {.lex_state = 64}, - [1535] = {.lex_state = 66}, + [1535] = {.lex_state = 69}, [1536] = {.lex_state = 64}, - [1537] = {.lex_state = 0}, + [1537] = {.lex_state = 64}, [1538] = {.lex_state = 64}, [1539] = {.lex_state = 64}, [1540] = {.lex_state = 64}, @@ -14742,685 +14843,759 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1544] = {.lex_state = 64}, [1545] = {.lex_state = 64}, [1546] = {.lex_state = 64}, - [1547] = {.lex_state = 0}, - [1548] = {.lex_state = 64}, + [1547] = {.lex_state = 66}, + [1548] = {.lex_state = 66}, [1549] = {.lex_state = 64}, [1550] = {.lex_state = 64}, - [1551] = {.lex_state = 140}, - [1552] = {.lex_state = 60}, - [1553] = {.lex_state = 68}, + [1551] = {.lex_state = 62}, + [1552] = {.lex_state = 64}, + [1553] = {.lex_state = 64}, [1554] = {.lex_state = 64}, - [1555] = {.lex_state = 140}, - [1556] = {.lex_state = 60}, - [1557] = {.lex_state = 60}, - [1558] = {.lex_state = 68}, - [1559] = {.lex_state = 140}, - [1560] = {.lex_state = 140}, - [1561] = {.lex_state = 68}, - [1562] = {.lex_state = 68}, - [1563] = {.lex_state = 64}, - [1564] = {.lex_state = 140}, - [1565] = {.lex_state = 60}, - [1566] = {.lex_state = 68}, - [1567] = {.lex_state = 66}, - [1568] = {.lex_state = 66}, - [1569] = {.lex_state = 140}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 0}, - [1572] = {.lex_state = 64}, - [1573] = {.lex_state = 62}, - [1574] = {.lex_state = 66}, - [1575] = {.lex_state = 66}, - [1576] = {.lex_state = 64}, + [1555] = {.lex_state = 64}, + [1556] = {.lex_state = 64}, + [1557] = {.lex_state = 64}, + [1558] = {.lex_state = 62}, + [1559] = {.lex_state = 64}, + [1560] = {.lex_state = 62}, + [1561] = {.lex_state = 64}, + [1562] = {.lex_state = 66}, + [1563] = {.lex_state = 69}, + [1564] = {.lex_state = 64}, + [1565] = {.lex_state = 64}, + [1566] = {.lex_state = 0}, + [1567] = {.lex_state = 64}, + [1568] = {.lex_state = 64}, + [1569] = {.lex_state = 64}, + [1570] = {.lex_state = 64}, + [1571] = {.lex_state = 140}, + [1572] = {.lex_state = 140}, + [1573] = {.lex_state = 140}, + [1574] = {.lex_state = 64}, + [1575] = {.lex_state = 64}, + [1576] = {.lex_state = 140}, [1577] = {.lex_state = 64}, - [1578] = {.lex_state = 140}, - [1579] = {.lex_state = 0}, - [1580] = {.lex_state = 66}, - [1581] = {.lex_state = 140}, - [1582] = {.lex_state = 140}, - [1583] = {.lex_state = 66}, - [1584] = {.lex_state = 66}, - [1585] = {.lex_state = 140}, - [1586] = {.lex_state = 66}, - [1587] = {.lex_state = 64}, + [1578] = {.lex_state = 64}, + [1579] = {.lex_state = 64}, + [1580] = {.lex_state = 140}, + [1581] = {.lex_state = 0}, + [1582] = {.lex_state = 64}, + [1583] = {.lex_state = 60}, + [1584] = {.lex_state = 64}, + [1585] = {.lex_state = 68}, + [1586] = {.lex_state = 140}, + [1587] = {.lex_state = 140}, [1588] = {.lex_state = 64}, - [1589] = {.lex_state = 64}, - [1590] = {.lex_state = 62}, - [1591] = {.lex_state = 66}, - [1592] = {.lex_state = 64}, - [1593] = {.lex_state = 66}, - [1594] = {.lex_state = 64}, - [1595] = {.lex_state = 140}, - [1596] = {.lex_state = 62}, - [1597] = {.lex_state = 66}, + [1589] = {.lex_state = 68}, + [1590] = {.lex_state = 68}, + [1591] = {.lex_state = 140}, + [1592] = {.lex_state = 140}, + [1593] = {.lex_state = 140}, + [1594] = {.lex_state = 68}, + [1595] = {.lex_state = 64}, + [1596] = {.lex_state = 140}, + [1597] = {.lex_state = 140}, [1598] = {.lex_state = 140}, - [1599] = {.lex_state = 62}, - [1600] = {.lex_state = 64}, - [1601] = {.lex_state = 64}, - [1602] = {.lex_state = 140}, - [1603] = {.lex_state = 64}, - [1604] = {.lex_state = 64}, - [1605] = {.lex_state = 64}, - [1606] = {.lex_state = 64}, - [1607] = {.lex_state = 64}, - [1608] = {.lex_state = 0}, - [1609] = {.lex_state = 64}, - [1610] = {.lex_state = 0}, - [1611] = {.lex_state = 64}, + [1599] = {.lex_state = 60}, + [1600] = {.lex_state = 140}, + [1601] = {.lex_state = 140}, + [1602] = {.lex_state = 60}, + [1603] = {.lex_state = 68}, + [1604] = {.lex_state = 60}, + [1605] = {.lex_state = 66}, + [1606] = {.lex_state = 66}, + [1607] = {.lex_state = 66}, + [1608] = {.lex_state = 66}, + [1609] = {.lex_state = 140}, + [1610] = {.lex_state = 62}, + [1611] = {.lex_state = 62}, [1612] = {.lex_state = 64}, - [1613] = {.lex_state = 140}, + [1613] = {.lex_state = 64}, [1614] = {.lex_state = 64}, - [1615] = {.lex_state = 69}, - [1616] = {.lex_state = 64}, - [1617] = {.lex_state = 64}, - [1618] = {.lex_state = 66}, - [1619] = {.lex_state = 69}, - [1620] = {.lex_state = 0}, - [1621] = {.lex_state = 69}, - [1622] = {.lex_state = 69}, - [1623] = {.lex_state = 64}, + [1615] = {.lex_state = 140}, + [1616] = {.lex_state = 0}, + [1617] = {.lex_state = 140}, + [1618] = {.lex_state = 64}, + [1619] = {.lex_state = 0}, + [1620] = {.lex_state = 66}, + [1621] = {.lex_state = 66}, + [1622] = {.lex_state = 140}, + [1623] = {.lex_state = 66}, [1624] = {.lex_state = 140}, - [1625] = {.lex_state = 69}, - [1626] = {.lex_state = 69}, - [1627] = {.lex_state = 69}, - [1628] = {.lex_state = 69}, - [1629] = {.lex_state = 62}, - [1630] = {.lex_state = 69}, - [1631] = {.lex_state = 69}, - [1632] = {.lex_state = 0}, - [1633] = {.lex_state = 0}, + [1625] = {.lex_state = 62}, + [1626] = {.lex_state = 64}, + [1627] = {.lex_state = 64}, + [1628] = {.lex_state = 66}, + [1629] = {.lex_state = 66}, + [1630] = {.lex_state = 66}, + [1631] = {.lex_state = 66}, + [1632] = {.lex_state = 140}, + [1633] = {.lex_state = 64}, [1634] = {.lex_state = 64}, - [1635] = {.lex_state = 140}, - [1636] = {.lex_state = 0}, - [1637] = {.lex_state = 140}, - [1638] = {.lex_state = 66}, - [1639] = {.lex_state = 140}, - [1640] = {.lex_state = 69}, - [1641] = {.lex_state = 140}, - [1642] = {.lex_state = 66}, - [1643] = {.lex_state = 140}, - [1644] = {.lex_state = 140}, - [1645] = {.lex_state = 140}, - [1646] = {.lex_state = 140}, - [1647] = {.lex_state = 140}, - [1648] = {.lex_state = 140}, - [1649] = {.lex_state = 140}, - [1650] = {.lex_state = 62}, - [1651] = {.lex_state = 140}, + [1635] = {.lex_state = 0}, + [1636] = {.lex_state = 140}, + [1637] = {.lex_state = 62}, + [1638] = {.lex_state = 64}, + [1639] = {.lex_state = 64}, + [1640] = {.lex_state = 140}, + [1641] = {.lex_state = 0}, + [1642] = {.lex_state = 64}, + [1643] = {.lex_state = 64}, + [1644] = {.lex_state = 0}, + [1645] = {.lex_state = 64}, + [1646] = {.lex_state = 64}, + [1647] = {.lex_state = 64}, + [1648] = {.lex_state = 64}, + [1649] = {.lex_state = 64}, + [1650] = {.lex_state = 64}, + [1651] = {.lex_state = 64}, [1652] = {.lex_state = 64}, - [1653] = {.lex_state = 140}, + [1653] = {.lex_state = 64}, [1654] = {.lex_state = 140}, - [1655] = {.lex_state = 64}, - [1656] = {.lex_state = 140}, - [1657] = {.lex_state = 140}, - [1658] = {.lex_state = 140}, - [1659] = {.lex_state = 55}, - [1660] = {.lex_state = 140}, - [1661] = {.lex_state = 66}, - [1662] = {.lex_state = 0}, - [1663] = {.lex_state = 64}, + [1655] = {.lex_state = 140}, + [1656] = {.lex_state = 64}, + [1657] = {.lex_state = 69}, + [1658] = {.lex_state = 0}, + [1659] = {.lex_state = 66}, + [1660] = {.lex_state = 64}, + [1661] = {.lex_state = 69}, + [1662] = {.lex_state = 64}, + [1663] = {.lex_state = 0}, [1664] = {.lex_state = 64}, - [1665] = {.lex_state = 38}, - [1666] = {.lex_state = 40}, + [1665] = {.lex_state = 140}, + [1666] = {.lex_state = 69}, [1667] = {.lex_state = 64}, - [1668] = {.lex_state = 0}, + [1668] = {.lex_state = 64}, [1669] = {.lex_state = 64}, - [1670] = {.lex_state = 41}, - [1671] = {.lex_state = 64}, - [1672] = {.lex_state = 64}, - [1673] = {.lex_state = 38}, - [1674] = {.lex_state = 38}, - [1675] = {.lex_state = 38}, - [1676] = {.lex_state = 41}, - [1677] = {.lex_state = 64}, - [1678] = {.lex_state = 0}, - [1679] = {.lex_state = 41}, - [1680] = {.lex_state = 41}, - [1681] = {.lex_state = 40}, - [1682] = {.lex_state = 64}, - [1683] = {.lex_state = 64}, - [1684] = {.lex_state = 64}, - [1685] = {.lex_state = 0}, - [1686] = {.lex_state = 38}, - [1687] = {.lex_state = 64}, - [1688] = {.lex_state = 41}, - [1689] = {.lex_state = 38}, - [1690] = {.lex_state = 140}, - [1691] = {.lex_state = 64}, - [1692] = {.lex_state = 41}, - [1693] = {.lex_state = 40}, - [1694] = {.lex_state = 38}, - [1695] = {.lex_state = 0}, - [1696] = {.lex_state = 41}, - [1697] = {.lex_state = 64}, - [1698] = {.lex_state = 40}, - [1699] = {.lex_state = 38}, - [1700] = {.lex_state = 64}, - [1701] = {.lex_state = 0}, - [1702] = {.lex_state = 64}, - [1703] = {.lex_state = 64}, - [1704] = {.lex_state = 0}, - [1705] = {.lex_state = 0}, - [1706] = {.lex_state = 64}, - [1707] = {.lex_state = 62}, - [1708] = {.lex_state = 62}, - [1709] = {.lex_state = 64}, - [1710] = {.lex_state = 41}, - [1711] = {.lex_state = 64}, - [1712] = {.lex_state = 41}, + [1670] = {.lex_state = 64}, + [1671] = {.lex_state = 140}, + [1672] = {.lex_state = 69}, + [1673] = {.lex_state = 69}, + [1674] = {.lex_state = 62}, + [1675] = {.lex_state = 64}, + [1676] = {.lex_state = 0}, + [1677] = {.lex_state = 69}, + [1678] = {.lex_state = 64}, + [1679] = {.lex_state = 140}, + [1680] = {.lex_state = 66}, + [1681] = {.lex_state = 64}, + [1682] = {.lex_state = 66}, + [1683] = {.lex_state = 69}, + [1684] = {.lex_state = 140}, + [1685] = {.lex_state = 69}, + [1686] = {.lex_state = 0}, + [1687] = {.lex_state = 69}, + [1688] = {.lex_state = 69}, + [1689] = {.lex_state = 69}, + [1690] = {.lex_state = 64}, + [1691] = {.lex_state = 140}, + [1692] = {.lex_state = 140}, + [1693] = {.lex_state = 66}, + [1694] = {.lex_state = 64}, + [1695] = {.lex_state = 140}, + [1696] = {.lex_state = 64}, + [1697] = {.lex_state = 140}, + [1698] = {.lex_state = 140}, + [1699] = {.lex_state = 140}, + [1700] = {.lex_state = 140}, + [1701] = {.lex_state = 64}, + [1702] = {.lex_state = 62}, + [1703] = {.lex_state = 140}, + [1704] = {.lex_state = 140}, + [1705] = {.lex_state = 140}, + [1706] = {.lex_state = 140}, + [1707] = {.lex_state = 140}, + [1708] = {.lex_state = 55}, + [1709] = {.lex_state = 140}, + [1710] = {.lex_state = 140}, + [1711] = {.lex_state = 140}, + [1712] = {.lex_state = 64}, [1713] = {.lex_state = 64}, - [1714] = {.lex_state = 62}, - [1715] = {.lex_state = 64}, - [1716] = {.lex_state = 55}, - [1717] = {.lex_state = 62}, - [1718] = {.lex_state = 40}, - [1719] = {.lex_state = 64}, - [1720] = {.lex_state = 64}, + [1714] = {.lex_state = 0}, + [1715] = {.lex_state = 38}, + [1716] = {.lex_state = 64}, + [1717] = {.lex_state = 64}, + [1718] = {.lex_state = 38}, + [1719] = {.lex_state = 40}, + [1720] = {.lex_state = 66}, [1721] = {.lex_state = 64}, - [1722] = {.lex_state = 66}, + [1722] = {.lex_state = 38}, [1723] = {.lex_state = 64}, [1724] = {.lex_state = 64}, - [1725] = {.lex_state = 64}, - [1726] = {.lex_state = 64}, + [1725] = {.lex_state = 38}, + [1726] = {.lex_state = 0}, [1727] = {.lex_state = 64}, - [1728] = {.lex_state = 64}, + [1728] = {.lex_state = 40}, [1729] = {.lex_state = 64}, [1730] = {.lex_state = 64}, - [1731] = {.lex_state = 0}, + [1731] = {.lex_state = 64}, [1732] = {.lex_state = 64}, - [1733] = {.lex_state = 0}, - [1734] = {.lex_state = 38}, + [1733] = {.lex_state = 64}, + [1734] = {.lex_state = 62}, [1735] = {.lex_state = 0}, - [1736] = {.lex_state = 0}, - [1737] = {.lex_state = 64}, - [1738] = {.lex_state = 40}, - [1739] = {.lex_state = 64}, - [1740] = {.lex_state = 0}, - [1741] = {.lex_state = 0}, + [1736] = {.lex_state = 64}, + [1737] = {.lex_state = 41}, + [1738] = {.lex_state = 38}, + [1739] = {.lex_state = 55}, + [1740] = {.lex_state = 40}, + [1741] = {.lex_state = 64}, [1742] = {.lex_state = 0}, [1743] = {.lex_state = 64}, - [1744] = {.lex_state = 55}, - [1745] = {.lex_state = 0}, - [1746] = {.lex_state = 40}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 55}, - [1749] = {.lex_state = 55}, - [1750] = {.lex_state = 43}, - [1751] = {.lex_state = 43}, - [1752] = {.lex_state = 0}, - [1753] = {.lex_state = 0}, - [1754] = {.lex_state = 0}, - [1755] = {.lex_state = 0}, - [1756] = {.lex_state = 0}, - [1757] = {.lex_state = 0}, + [1744] = {.lex_state = 64}, + [1745] = {.lex_state = 64}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 64}, + [1748] = {.lex_state = 64}, + [1749] = {.lex_state = 38}, + [1750] = {.lex_state = 64}, + [1751] = {.lex_state = 64}, + [1752] = {.lex_state = 64}, + [1753] = {.lex_state = 64}, + [1754] = {.lex_state = 64}, + [1755] = {.lex_state = 38}, + [1756] = {.lex_state = 38}, + [1757] = {.lex_state = 64}, [1758] = {.lex_state = 0}, - [1759] = {.lex_state = 0}, + [1759] = {.lex_state = 64}, [1760] = {.lex_state = 0}, - [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 55}, - [1763] = {.lex_state = 43}, - [1764] = {.lex_state = 0}, - [1765] = {.lex_state = 55}, - [1766] = {.lex_state = 0}, - [1767] = {.lex_state = 0}, - [1768] = {.lex_state = 0}, - [1769] = {.lex_state = 0}, - [1770] = {.lex_state = 0}, + [1761] = {.lex_state = 41}, + [1762] = {.lex_state = 41}, + [1763] = {.lex_state = 40}, + [1764] = {.lex_state = 64}, + [1765] = {.lex_state = 62}, + [1766] = {.lex_state = 64}, + [1767] = {.lex_state = 62}, + [1768] = {.lex_state = 64}, + [1769] = {.lex_state = 41}, + [1770] = {.lex_state = 41}, [1771] = {.lex_state = 64}, - [1772] = {.lex_state = 64}, + [1772] = {.lex_state = 0}, [1773] = {.lex_state = 0}, - [1774] = {.lex_state = 0}, + [1774] = {.lex_state = 64}, [1775] = {.lex_state = 0}, - [1776] = {.lex_state = 0}, - [1777] = {.lex_state = 0}, + [1776] = {.lex_state = 64}, + [1777] = {.lex_state = 41}, [1778] = {.lex_state = 64}, - [1779] = {.lex_state = 0}, - [1780] = {.lex_state = 64}, - [1781] = {.lex_state = 64}, - [1782] = {.lex_state = 64}, - [1783] = {.lex_state = 55}, - [1784] = {.lex_state = 0}, - [1785] = {.lex_state = 55}, - [1786] = {.lex_state = 43}, + [1779] = {.lex_state = 41}, + [1780] = {.lex_state = 41}, + [1781] = {.lex_state = 40}, + [1782] = {.lex_state = 38}, + [1783] = {.lex_state = 140}, + [1784] = {.lex_state = 62}, + [1785] = {.lex_state = 41}, + [1786] = {.lex_state = 0}, [1787] = {.lex_state = 0}, - [1788] = {.lex_state = 0}, + [1788] = {.lex_state = 43}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 64}, + [1790] = {.lex_state = 0}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, - [1793] = {.lex_state = 64}, + [1793] = {.lex_state = 0}, [1794] = {.lex_state = 0}, [1795] = {.lex_state = 0}, [1796] = {.lex_state = 0}, [1797] = {.lex_state = 0}, - [1798] = {.lex_state = 64}, - [1799] = {.lex_state = 0}, - [1800] = {.lex_state = 40}, + [1798] = {.lex_state = 0}, + [1799] = {.lex_state = 55}, + [1800] = {.lex_state = 64}, [1801] = {.lex_state = 0}, - [1802] = {.lex_state = 64}, - [1803] = {.lex_state = 0}, - [1804] = {.lex_state = 0}, - [1805] = {.lex_state = 0}, + [1802] = {.lex_state = 0}, + [1803] = {.lex_state = 64}, + [1804] = {.lex_state = 40}, + [1805] = {.lex_state = 55}, [1806] = {.lex_state = 0}, [1807] = {.lex_state = 0}, [1808] = {.lex_state = 0}, [1809] = {.lex_state = 0}, - [1810] = {.lex_state = 40}, - [1811] = {.lex_state = 0}, + [1810] = {.lex_state = 0}, + [1811] = {.lex_state = 40}, [1812] = {.lex_state = 0}, [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 0}, [1817] = {.lex_state = 0}, - [1818] = {.lex_state = 0}, + [1818] = {.lex_state = 40}, [1819] = {.lex_state = 0}, - [1820] = {.lex_state = 0}, - [1821] = {.lex_state = 43}, + [1820] = {.lex_state = 64}, + [1821] = {.lex_state = 0}, [1822] = {.lex_state = 0}, [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, - [1825] = {.lex_state = 0}, + [1825] = {.lex_state = 43}, [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 140}, + [1827] = {.lex_state = 0}, [1828] = {.lex_state = 0}, - [1829] = {.lex_state = 140}, + [1829] = {.lex_state = 0}, [1830] = {.lex_state = 64}, - [1831] = {.lex_state = 140}, - [1832] = {.lex_state = 42}, - [1833] = {.lex_state = 42}, - [1834] = {.lex_state = 0}, - [1835] = {.lex_state = 42}, - [1836] = {.lex_state = 0}, - [1837] = {.lex_state = 42}, - [1838] = {.lex_state = 64}, - [1839] = {.lex_state = 42}, + [1831] = {.lex_state = 55}, + [1832] = {.lex_state = 55}, + [1833] = {.lex_state = 0}, + [1834] = {.lex_state = 64}, + [1835] = {.lex_state = 64}, + [1836] = {.lex_state = 64}, + [1837] = {.lex_state = 64}, + [1838] = {.lex_state = 0}, + [1839] = {.lex_state = 55}, [1840] = {.lex_state = 0}, - [1841] = {.lex_state = 140}, - [1842] = {.lex_state = 0}, - [1843] = {.lex_state = 0}, + [1841] = {.lex_state = 0}, + [1842] = {.lex_state = 64}, + [1843] = {.lex_state = 64}, [1844] = {.lex_state = 0}, - [1845] = {.lex_state = 140}, - [1846] = {.lex_state = 42}, - [1847] = {.lex_state = 140}, - [1848] = {.lex_state = 140}, + [1845] = {.lex_state = 43}, + [1846] = {.lex_state = 40}, + [1847] = {.lex_state = 0}, + [1848] = {.lex_state = 0}, [1849] = {.lex_state = 0}, - [1850] = {.lex_state = 42}, + [1850] = {.lex_state = 0}, [1851] = {.lex_state = 0}, [1852] = {.lex_state = 0}, [1853] = {.lex_state = 0}, - [1854] = {.lex_state = 0}, - [1855] = {.lex_state = 55}, - [1856] = {.lex_state = 42}, - [1857] = {.lex_state = 55}, - [1858] = {.lex_state = 42}, - [1859] = {.lex_state = 64}, + [1854] = {.lex_state = 55}, + [1855] = {.lex_state = 0}, + [1856] = {.lex_state = 0}, + [1857] = {.lex_state = 0}, + [1858] = {.lex_state = 0}, + [1859] = {.lex_state = 0}, [1860] = {.lex_state = 0}, - [1861] = {.lex_state = 42}, - [1862] = {.lex_state = 140}, + [1861] = {.lex_state = 0}, + [1862] = {.lex_state = 0}, [1863] = {.lex_state = 0}, - [1864] = {.lex_state = 64}, + [1864] = {.lex_state = 0}, [1865] = {.lex_state = 0}, [1866] = {.lex_state = 0}, - [1867] = {.lex_state = 64}, + [1867] = {.lex_state = 55}, [1868] = {.lex_state = 0}, - [1869] = {.lex_state = 140}, - [1870] = {.lex_state = 42}, - [1871] = {.lex_state = 64}, + [1869] = {.lex_state = 0}, + [1870] = {.lex_state = 0}, + [1871] = {.lex_state = 0}, [1872] = {.lex_state = 0}, - [1873] = {.lex_state = 140}, + [1873] = {.lex_state = 0}, [1874] = {.lex_state = 0}, [1875] = {.lex_state = 0}, - [1876] = {.lex_state = 42}, - [1877] = {.lex_state = 140}, - [1878] = {.lex_state = 140}, - [1879] = {.lex_state = 140}, - [1880] = {.lex_state = 55}, + [1876] = {.lex_state = 43}, + [1877] = {.lex_state = 0}, + [1878] = {.lex_state = 0}, + [1879] = {.lex_state = 0}, + [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, - [1883] = {.lex_state = 42}, + [1883] = {.lex_state = 43}, [1884] = {.lex_state = 0}, [1885] = {.lex_state = 0}, - [1886] = {.lex_state = 42}, - [1887] = {.lex_state = 0}, - [1888] = {.lex_state = 140}, + [1886] = {.lex_state = 64}, + [1887] = {.lex_state = 64}, + [1888] = {.lex_state = 64}, [1889] = {.lex_state = 0}, - [1890] = {.lex_state = 140}, - [1891] = {.lex_state = 140}, + [1890] = {.lex_state = 0}, + [1891] = {.lex_state = 0}, [1892] = {.lex_state = 0}, [1893] = {.lex_state = 0}, - [1894] = {.lex_state = 42}, + [1894] = {.lex_state = 0}, [1895] = {.lex_state = 0}, - [1896] = {.lex_state = 140}, - [1897] = {.lex_state = 140}, + [1896] = {.lex_state = 0}, + [1897] = {.lex_state = 0}, [1898] = {.lex_state = 0}, - [1899] = {.lex_state = 42}, + [1899] = {.lex_state = 0}, [1900] = {.lex_state = 0}, - [1901] = {.lex_state = 140}, - [1902] = {.lex_state = 42}, + [1901] = {.lex_state = 0}, + [1902] = {.lex_state = 0}, [1903] = {.lex_state = 0}, - [1904] = {.lex_state = 140}, - [1905] = {.lex_state = 64}, - [1906] = {.lex_state = 42}, - [1907] = {.lex_state = 140}, - [1908] = {.lex_state = 140}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 0}, + [1906] = {.lex_state = 0}, + [1907] = {.lex_state = 0}, + [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, - [1910] = {.lex_state = 140}, - [1911] = {.lex_state = 0}, - [1912] = {.lex_state = 0}, - [1913] = {.lex_state = 64}, - [1914] = {.lex_state = 140}, - [1915] = {.lex_state = 42}, - [1916] = {.lex_state = 140}, + [1910] = {.lex_state = 0}, + [1911] = {.lex_state = 42}, + [1912] = {.lex_state = 42}, + [1913] = {.lex_state = 42}, + [1914] = {.lex_state = 0}, + [1915] = {.lex_state = 0}, + [1916] = {.lex_state = 0}, [1917] = {.lex_state = 0}, - [1918] = {.lex_state = 140}, - [1919] = {.lex_state = 42}, - [1920] = {.lex_state = 140}, - [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 140}, + [1918] = {.lex_state = 64}, + [1919] = {.lex_state = 0}, + [1920] = {.lex_state = 0}, + [1921] = {.lex_state = 140}, + [1922] = {.lex_state = 0}, [1923] = {.lex_state = 140}, - [1924] = {.lex_state = 42}, - [1925] = {.lex_state = 0}, - [1926] = {.lex_state = 140}, + [1924] = {.lex_state = 140}, + [1925] = {.lex_state = 140}, + [1926] = {.lex_state = 42}, [1927] = {.lex_state = 0}, - [1928] = {.lex_state = 43}, - [1929] = {.lex_state = 0}, + [1928] = {.lex_state = 140}, + [1929] = {.lex_state = 140}, [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 43}, - [1932] = {.lex_state = 0}, - [1933] = {.lex_state = 53}, - [1934] = {.lex_state = 53}, + [1931] = {.lex_state = 140}, + [1932] = {.lex_state = 140}, + [1933] = {.lex_state = 140}, + [1934] = {.lex_state = 42}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, - [1937] = {.lex_state = 0}, + [1937] = {.lex_state = 55}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 0}, - [1940] = {.lex_state = 43}, - [1941] = {.lex_state = 0}, - [1942] = {.lex_state = 43}, - [1943] = {.lex_state = 0}, - [1944] = {.lex_state = 43}, - [1945] = {.lex_state = 53}, - [1946] = {.lex_state = 0}, - [1947] = {.lex_state = 53}, + [1939] = {.lex_state = 140}, + [1940] = {.lex_state = 140}, + [1941] = {.lex_state = 140}, + [1942] = {.lex_state = 140}, + [1943] = {.lex_state = 140}, + [1944] = {.lex_state = 0}, + [1945] = {.lex_state = 42}, + [1946] = {.lex_state = 64}, + [1947] = {.lex_state = 0}, [1948] = {.lex_state = 0}, - [1949] = {.lex_state = 64}, - [1950] = {.lex_state = 53}, - [1951] = {.lex_state = 53}, - [1952] = {.lex_state = 53}, - [1953] = {.lex_state = 0}, - [1954] = {.lex_state = 64}, - [1955] = {.lex_state = 53}, + [1949] = {.lex_state = 140}, + [1950] = {.lex_state = 140}, + [1951] = {.lex_state = 64}, + [1952] = {.lex_state = 140}, + [1953] = {.lex_state = 64}, + [1954] = {.lex_state = 0}, + [1955] = {.lex_state = 0}, [1956] = {.lex_state = 0}, - [1957] = {.lex_state = 53}, - [1958] = {.lex_state = 53}, - [1959] = {.lex_state = 43}, + [1957] = {.lex_state = 64}, + [1958] = {.lex_state = 42}, + [1959] = {.lex_state = 0}, [1960] = {.lex_state = 0}, - [1961] = {.lex_state = 0}, + [1961] = {.lex_state = 140}, [1962] = {.lex_state = 0}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 0}, - [1965] = {.lex_state = 43}, - [1966] = {.lex_state = 43}, - [1967] = {.lex_state = 0}, - [1968] = {.lex_state = 53}, + [1963] = {.lex_state = 140}, + [1964] = {.lex_state = 140}, + [1965] = {.lex_state = 0}, + [1966] = {.lex_state = 140}, + [1967] = {.lex_state = 140}, + [1968] = {.lex_state = 0}, [1969] = {.lex_state = 0}, - [1970] = {.lex_state = 43}, - [1971] = {.lex_state = 53}, + [1970] = {.lex_state = 0}, + [1971] = {.lex_state = 140}, [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 43}, - [1974] = {.lex_state = 43}, - [1975] = {.lex_state = 64}, + [1973] = {.lex_state = 42}, + [1974] = {.lex_state = 0}, + [1975] = {.lex_state = 42}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 53}, - [1978] = {.lex_state = 43}, + [1977] = {.lex_state = 0}, + [1978] = {.lex_state = 140}, [1979] = {.lex_state = 0}, - [1980] = {.lex_state = 43}, - [1981] = {.lex_state = 43}, - [1982] = {.lex_state = 0}, - [1983] = {.lex_state = 43}, - [1984] = {.lex_state = 0}, - [1985] = {.lex_state = 0}, - [1986] = {.lex_state = 43}, - [1987] = {.lex_state = 43}, - [1988] = {.lex_state = 0}, - [1989] = {.lex_state = 43}, - [1990] = {.lex_state = 0}, - [1991] = {.lex_state = 0}, - [1992] = {.lex_state = 43}, - [1993] = {.lex_state = 43}, - [1994] = {.lex_state = 0}, - [1995] = {.lex_state = 43}, - [1996] = {.lex_state = 43}, - [1997] = {.lex_state = 64}, - [1998] = {.lex_state = 64}, - [1999] = {.lex_state = 64}, - [2000] = {.lex_state = 43}, - [2001] = {.lex_state = 53}, + [1980] = {.lex_state = 0}, + [1981] = {.lex_state = 140}, + [1982] = {.lex_state = 64}, + [1983] = {.lex_state = 140}, + [1984] = {.lex_state = 64}, + [1985] = {.lex_state = 140}, + [1986] = {.lex_state = 140}, + [1987] = {.lex_state = 64}, + [1988] = {.lex_state = 55}, + [1989] = {.lex_state = 42}, + [1990] = {.lex_state = 140}, + [1991] = {.lex_state = 42}, + [1992] = {.lex_state = 42}, + [1993] = {.lex_state = 42}, + [1994] = {.lex_state = 42}, + [1995] = {.lex_state = 42}, + [1996] = {.lex_state = 55}, + [1997] = {.lex_state = 42}, + [1998] = {.lex_state = 42}, + [1999] = {.lex_state = 0}, + [2000] = {.lex_state = 140}, + [2001] = {.lex_state = 0}, [2002] = {.lex_state = 0}, - [2003] = {.lex_state = 0}, - [2004] = {.lex_state = 0}, - [2005] = {.lex_state = 0}, - [2006] = {.lex_state = 64}, - [2007] = {.lex_state = 0}, - [2008] = {.lex_state = 53}, - [2009] = {.lex_state = 53}, + [2003] = {.lex_state = 42}, + [2004] = {.lex_state = 42}, + [2005] = {.lex_state = 42}, + [2006] = {.lex_state = 0}, + [2007] = {.lex_state = 42}, + [2008] = {.lex_state = 0}, + [2009] = {.lex_state = 0}, [2010] = {.lex_state = 64}, - [2011] = {.lex_state = 53}, - [2012] = {.lex_state = 0}, - [2013] = {.lex_state = 0}, - [2014] = {.lex_state = 0}, + [2011] = {.lex_state = 140}, + [2012] = {.lex_state = 53}, + [2013] = {.lex_state = 43}, + [2014] = {.lex_state = 43}, [2015] = {.lex_state = 53}, - [2016] = {.lex_state = 0}, - [2017] = {.lex_state = 0}, - [2018] = {.lex_state = 0}, - [2019] = {.lex_state = 53}, - [2020] = {.lex_state = 64}, - [2021] = {.lex_state = 53}, - [2022] = {.lex_state = 43}, - [2023] = {.lex_state = 0}, - [2024] = {.lex_state = 0}, + [2016] = {.lex_state = 140}, + [2017] = {.lex_state = 53}, + [2018] = {.lex_state = 64}, + [2019] = {.lex_state = 43}, + [2020] = {.lex_state = 0}, + [2021] = {.lex_state = 0}, + [2022] = {.lex_state = 0}, + [2023] = {.lex_state = 53}, + [2024] = {.lex_state = 53}, [2025] = {.lex_state = 0}, - [2026] = {.lex_state = 53}, - [2027] = {.lex_state = 43}, - [2028] = {.lex_state = 64}, + [2026] = {.lex_state = 0}, + [2027] = {.lex_state = 0}, + [2028] = {.lex_state = 0}, [2029] = {.lex_state = 0}, - [2030] = {.lex_state = 0}, + [2030] = {.lex_state = 53}, [2031] = {.lex_state = 0}, - [2032] = {.lex_state = 64}, + [2032] = {.lex_state = 43}, [2033] = {.lex_state = 0}, [2034] = {.lex_state = 0}, [2035] = {.lex_state = 0}, - [2036] = {.lex_state = 0}, + [2036] = {.lex_state = 43}, [2037] = {.lex_state = 0}, [2038] = {.lex_state = 0}, - [2039] = {.lex_state = 64}, - [2040] = {.lex_state = 43}, - [2041] = {.lex_state = 64}, - [2042] = {.lex_state = 43}, - [2043] = {.lex_state = 0}, - [2044] = {.lex_state = 0}, + [2039] = {.lex_state = 0}, + [2040] = {.lex_state = 53}, + [2041] = {.lex_state = 43}, + [2042] = {.lex_state = 53}, + [2043] = {.lex_state = 53}, + [2044] = {.lex_state = 53}, [2045] = {.lex_state = 0}, - [2046] = {.lex_state = 64}, - [2047] = {.lex_state = 0}, + [2046] = {.lex_state = 0}, + [2047] = {.lex_state = 43}, [2048] = {.lex_state = 0}, - [2049] = {.lex_state = 0}, - [2050] = {.lex_state = 0}, - [2051] = {.lex_state = 0}, + [2049] = {.lex_state = 53}, + [2050] = {.lex_state = 43}, + [2051] = {.lex_state = 64}, [2052] = {.lex_state = 0}, [2053] = {.lex_state = 53}, - [2054] = {.lex_state = 0}, - [2055] = {.lex_state = 0}, - [2056] = {.lex_state = 0}, + [2054] = {.lex_state = 64}, + [2055] = {.lex_state = 53}, + [2056] = {.lex_state = 43}, [2057] = {.lex_state = 64}, [2058] = {.lex_state = 0}, - [2059] = {.lex_state = 53}, - [2060] = {.lex_state = 53}, - [2061] = {.lex_state = 53}, - [2062] = {.lex_state = 0}, - [2063] = {.lex_state = 0}, + [2059] = {.lex_state = 0}, + [2060] = {.lex_state = 43}, + [2061] = {.lex_state = 43}, + [2062] = {.lex_state = 53}, + [2063] = {.lex_state = 43}, [2064] = {.lex_state = 0}, [2065] = {.lex_state = 0}, - [2066] = {.lex_state = 53}, + [2066] = {.lex_state = 43}, [2067] = {.lex_state = 43}, - [2068] = {.lex_state = 0}, - [2069] = {.lex_state = 53}, + [2068] = {.lex_state = 43}, + [2069] = {.lex_state = 43}, [2070] = {.lex_state = 0}, - [2071] = {.lex_state = 0}, - [2072] = {.lex_state = 53}, - [2073] = {.lex_state = 53}, + [2071] = {.lex_state = 64}, + [2072] = {.lex_state = 64}, + [2073] = {.lex_state = 43}, [2074] = {.lex_state = 0}, - [2075] = {.lex_state = 43}, - [2076] = {.lex_state = 43}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 53}, [2077] = {.lex_state = 0}, [2078] = {.lex_state = 0}, [2079] = {.lex_state = 0}, [2080] = {.lex_state = 64}, - [2081] = {.lex_state = 64}, + [2081] = {.lex_state = 53}, [2082] = {.lex_state = 64}, [2083] = {.lex_state = 53}, [2084] = {.lex_state = 43}, - [2085] = {.lex_state = 64}, - [2086] = {.lex_state = 43}, + [2085] = {.lex_state = 0}, + [2086] = {.lex_state = 0}, [2087] = {.lex_state = 0}, [2088] = {.lex_state = 0}, - [2089] = {.lex_state = 64}, + [2089] = {.lex_state = 0}, [2090] = {.lex_state = 0}, [2091] = {.lex_state = 0}, [2092] = {.lex_state = 0}, - [2093] = {.lex_state = 53}, + [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 64}, - [2097] = {.lex_state = 0}, - [2098] = {.lex_state = 43}, - [2099] = {.lex_state = 43}, - [2100] = {.lex_state = 64}, - [2101] = {.lex_state = 0}, - [2102] = {.lex_state = 0}, + [2096] = {.lex_state = 0}, + [2097] = {.lex_state = 43}, + [2098] = {.lex_state = 0}, + [2099] = {.lex_state = 53}, + [2100] = {.lex_state = 53}, + [2101] = {.lex_state = 53}, + [2102] = {.lex_state = 53}, [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 0}, + [2104] = {.lex_state = 43}, [2105] = {.lex_state = 0}, [2106] = {.lex_state = 0}, [2107] = {.lex_state = 0}, - [2108] = {.lex_state = 64}, - [2109] = {.lex_state = 64}, + [2108] = {.lex_state = 0}, + [2109] = {.lex_state = 0}, [2110] = {.lex_state = 0}, [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, - [2113] = {.lex_state = 53}, - [2114] = {.lex_state = 43}, - [2115] = {.lex_state = 53}, - [2116] = {.lex_state = 64}, + [2113] = {.lex_state = 43}, + [2114] = {.lex_state = 64}, + [2115] = {.lex_state = 64}, + [2116] = {.lex_state = 53}, [2117] = {.lex_state = 53}, [2118] = {.lex_state = 0}, [2119] = {.lex_state = 0}, [2120] = {.lex_state = 64}, - [2121] = {.lex_state = 64}, - [2122] = {.lex_state = 53}, - [2123] = {.lex_state = 53}, - [2124] = {.lex_state = 64}, - [2125] = {.lex_state = 0}, - [2126] = {.lex_state = 64}, - [2127] = {.lex_state = 64}, + [2121] = {.lex_state = 53}, + [2122] = {.lex_state = 0}, + [2123] = {.lex_state = 0}, + [2124] = {.lex_state = 43}, + [2125] = {.lex_state = 53}, + [2126] = {.lex_state = 53}, + [2127] = {.lex_state = 53}, [2128] = {.lex_state = 0}, - [2129] = {.lex_state = 53}, + [2129] = {.lex_state = 0}, [2130] = {.lex_state = 0}, - [2131] = {.lex_state = 0}, - [2132] = {.lex_state = 0}, + [2131] = {.lex_state = 64}, + [2132] = {.lex_state = 53}, [2133] = {.lex_state = 0}, - [2134] = {.lex_state = 64}, - [2135] = {.lex_state = 64}, + [2134] = {.lex_state = 0}, + [2135] = {.lex_state = 0}, [2136] = {.lex_state = 0}, - [2137] = {.lex_state = 0}, - [2138] = {.lex_state = 64}, - [2139] = {.lex_state = 140}, - [2140] = {.lex_state = 64}, - [2141] = {.lex_state = 43}, - [2142] = {.lex_state = 53}, - [2143] = {.lex_state = 53}, - [2144] = {.lex_state = 53}, - [2145] = {.lex_state = 140}, - [2146] = {.lex_state = 53}, + [2137] = {.lex_state = 64}, + [2138] = {.lex_state = 0}, + [2139] = {.lex_state = 0}, + [2140] = {.lex_state = 0}, + [2141] = {.lex_state = 0}, + [2142] = {.lex_state = 43}, + [2143] = {.lex_state = 0}, + [2144] = {.lex_state = 0}, + [2145] = {.lex_state = 0}, + [2146] = {.lex_state = 64}, [2147] = {.lex_state = 0}, - [2148] = {.lex_state = 64}, + [2148] = {.lex_state = 53}, [2149] = {.lex_state = 53}, - [2150] = {.lex_state = 0}, - [2151] = {.lex_state = 0}, - [2152] = {.lex_state = 64}, - [2153] = {.lex_state = 140}, - [2154] = {.lex_state = 140}, + [2150] = {.lex_state = 53}, + [2151] = {.lex_state = 64}, + [2152] = {.lex_state = 53}, + [2153] = {.lex_state = 43}, + [2154] = {.lex_state = 43}, [2155] = {.lex_state = 64}, - [2156] = {.lex_state = 64}, - [2157] = {.lex_state = 64}, + [2156] = {.lex_state = 43}, + [2157] = {.lex_state = 43}, [2158] = {.lex_state = 64}, [2159] = {.lex_state = 53}, - [2160] = {.lex_state = 64}, + [2160] = {.lex_state = 0}, [2161] = {.lex_state = 0}, - [2162] = {.lex_state = 0}, - [2163] = {.lex_state = 53}, - [2164] = {.lex_state = 140}, - [2165] = {.lex_state = 140}, - [2166] = {.lex_state = 53}, - [2167] = {.lex_state = 140}, - [2168] = {.lex_state = 0}, - [2169] = {.lex_state = 0}, - [2170] = {.lex_state = 0}, - [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 0}, - [2173] = {.lex_state = 0}, - [2174] = {.lex_state = 0}, - [2175] = {.lex_state = 64}, - [2176] = {.lex_state = 64}, - [2177] = {.lex_state = 64}, - [2178] = {.lex_state = 140}, + [2162] = {.lex_state = 53}, + [2163] = {.lex_state = 64}, + [2164] = {.lex_state = 0}, + [2165] = {.lex_state = 0}, + [2166] = {.lex_state = 64}, + [2167] = {.lex_state = 0}, + [2168] = {.lex_state = 53}, + [2169] = {.lex_state = 43}, + [2170] = {.lex_state = 64}, + [2171] = {.lex_state = 64}, + [2172] = {.lex_state = 53}, + [2173] = {.lex_state = 53}, + [2174] = {.lex_state = 64}, + [2175] = {.lex_state = 0}, + [2176] = {.lex_state = 0}, + [2177] = {.lex_state = 53}, + [2178] = {.lex_state = 43}, [2179] = {.lex_state = 53}, - [2180] = {.lex_state = 0}, - [2181] = {.lex_state = 53}, - [2182] = {.lex_state = 0}, - [2183] = {.lex_state = 0}, - [2184] = {.lex_state = 0}, - [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 53}, - [2187] = {.lex_state = 140}, + [2180] = {.lex_state = 43}, + [2181] = {.lex_state = 0}, + [2182] = {.lex_state = 64}, + [2183] = {.lex_state = 64}, + [2184] = {.lex_state = 43}, + [2185] = {.lex_state = 64}, + [2186] = {.lex_state = 43}, + [2187] = {.lex_state = 0}, [2188] = {.lex_state = 53}, - [2189] = {.lex_state = 43}, + [2189] = {.lex_state = 0}, [2190] = {.lex_state = 64}, - [2191] = {.lex_state = 0}, - [2192] = {.lex_state = 53}, - [2193] = {.lex_state = 53}, - [2194] = {.lex_state = 0}, - [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 0}, + [2191] = {.lex_state = 43}, + [2192] = {.lex_state = 0}, + [2193] = {.lex_state = 0}, + [2194] = {.lex_state = 140}, + [2195] = {.lex_state = 53}, + [2196] = {.lex_state = 53}, [2197] = {.lex_state = 0}, - [2198] = {.lex_state = 64}, - [2199] = {.lex_state = 140}, - [2200] = {.lex_state = 0}, - [2201] = {.lex_state = 43}, - [2202] = {.lex_state = 53}, - [2203] = {.lex_state = 53}, - [2204] = {.lex_state = 140}, + [2198] = {.lex_state = 43}, + [2199] = {.lex_state = 64}, + [2200] = {.lex_state = 64}, + [2201] = {.lex_state = 0}, + [2202] = {.lex_state = 0}, + [2203] = {.lex_state = 64}, + [2204] = {.lex_state = 0}, [2205] = {.lex_state = 53}, - [2206] = {.lex_state = 64}, + [2206] = {.lex_state = 0}, [2207] = {.lex_state = 53}, - [2208] = {.lex_state = 53}, - [2209] = {.lex_state = 53}, + [2208] = {.lex_state = 64}, + [2209] = {.lex_state = 64}, [2210] = {.lex_state = 0}, - [2211] = {.lex_state = 140}, - [2212] = {.lex_state = 140}, - [2213] = {.lex_state = 64}, - [2214] = {.lex_state = 140}, + [2211] = {.lex_state = 0}, + [2212] = {.lex_state = 0}, + [2213] = {.lex_state = 0}, + [2214] = {.lex_state = 64}, [2215] = {.lex_state = 64}, - [2216] = {.lex_state = 140}, + [2216] = {.lex_state = 0}, [2217] = {.lex_state = 0}, - [2218] = {.lex_state = 64}, + [2218] = {.lex_state = 53}, [2219] = {.lex_state = 140}, - [2220] = {.lex_state = 53}, + [2220] = {.lex_state = 64}, [2221] = {.lex_state = 53}, - [2222] = {.lex_state = 140}, - [2223] = {.lex_state = 53}, - [2224] = {.lex_state = 64}, - [2225] = {.lex_state = 140}, + [2222] = {.lex_state = 53}, + [2223] = {.lex_state = 0}, + [2224] = {.lex_state = 53}, + [2225] = {.lex_state = 43}, + [2226] = {.lex_state = 64}, + [2227] = {.lex_state = 140}, + [2228] = {.lex_state = 140}, + [2229] = {.lex_state = 64}, + [2230] = {.lex_state = 64}, + [2231] = {.lex_state = 64}, + [2232] = {.lex_state = 64}, + [2233] = {.lex_state = 53}, + [2234] = {.lex_state = 64}, + [2235] = {.lex_state = 0}, + [2236] = {.lex_state = 0}, + [2237] = {.lex_state = 0}, + [2238] = {.lex_state = 140}, + [2239] = {.lex_state = 140}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 140}, + [2242] = {.lex_state = 53}, + [2243] = {.lex_state = 0}, + [2244] = {.lex_state = 0}, + [2245] = {.lex_state = 0}, + [2246] = {.lex_state = 53}, + [2247] = {.lex_state = 0}, + [2248] = {.lex_state = 53}, + [2249] = {.lex_state = 64}, + [2250] = {.lex_state = 0}, + [2251] = {.lex_state = 0}, + [2252] = {.lex_state = 0}, + [2253] = {.lex_state = 64}, + [2254] = {.lex_state = 0}, + [2255] = {.lex_state = 140}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 0}, + [2258] = {.lex_state = 0}, + [2259] = {.lex_state = 0}, + [2260] = {.lex_state = 0}, + [2261] = {.lex_state = 140}, + [2262] = {.lex_state = 0}, + [2263] = {.lex_state = 53}, + [2264] = {.lex_state = 64}, + [2265] = {.lex_state = 64}, + [2266] = {.lex_state = 0}, + [2267] = {.lex_state = 0}, + [2268] = {.lex_state = 53}, + [2269] = {.lex_state = 0}, + [2270] = {.lex_state = 64}, + [2271] = {.lex_state = 64}, + [2272] = {.lex_state = 64}, + [2273] = {.lex_state = 140}, + [2274] = {.lex_state = 0}, + [2275] = {.lex_state = 0}, + [2276] = {.lex_state = 0}, + [2277] = {.lex_state = 43}, + [2278] = {.lex_state = 140}, + [2279] = {.lex_state = 0}, + [2280] = {.lex_state = 64}, + [2281] = {.lex_state = 53}, + [2282] = {.lex_state = 0}, + [2283] = {.lex_state = 53}, + [2284] = {.lex_state = 53}, + [2285] = {.lex_state = 140}, + [2286] = {.lex_state = 53}, + [2287] = {.lex_state = 0}, + [2288] = {.lex_state = 0}, + [2289] = {.lex_state = 43}, + [2290] = {.lex_state = 140}, + [2291] = {.lex_state = 0}, + [2292] = {.lex_state = 64}, + [2293] = {.lex_state = 140}, + [2294] = {.lex_state = 53}, + [2295] = {.lex_state = 43}, + [2296] = {.lex_state = 140}, + [2297] = {.lex_state = 53}, + [2298] = {.lex_state = 64}, + [2299] = {.lex_state = 140}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -15573,7 +15748,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [1] = { - [sym_translation_unit] = STATE(2118), + [sym_translation_unit] = STATE(2192), [sym_preproc_include] = STATE(52), [sym_preproc_def] = STATE(52), [sym_preproc_function_def] = STATE(52), @@ -15581,24 +15756,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(52), [sym_preproc_ifdef] = STATE(52), [sym_function_definition] = STATE(52), - [sym__old_style_function_definition] = STATE(472), + [sym__old_style_function_definition] = STATE(485), [sym_declaration] = STATE(52), [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1477), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1506), [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(856), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(884), [sym_compound_statement] = STATE(52), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1124), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1156), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(52), [sym_labeled_statement] = STATE(52), [sym__top_level_expression_statement] = STATE(52), @@ -15612,36 +15787,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(52), [sym_continue_statement] = STATE(52), [sym_goto_statement] = STATE(52), - [sym__expression] = STATE(1306), - [sym__expression_not_binary] = STATE(1303), - [sym__string] = STATE(1303), - [sym_conditional_expression] = STATE(1303), - [sym_assignment_expression] = STATE(1303), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(1303), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(1303), - [sym_cast_expression] = STATE(1303), - [sym_sizeof_expression] = STATE(1303), - [sym_alignof_expression] = STATE(1303), - [sym_offsetof_expression] = STATE(1303), - [sym_generic_expression] = STATE(1303), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(1303), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(1303), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(1303), - [sym_concatenated_string] = STATE(1303), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(1303), + [sym__expression] = STATE(1344), + [sym__expression_not_binary] = STATE(1342), + [sym__string] = STATE(1342), + [sym_conditional_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1342), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(1342), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(1342), + [sym_cast_expression] = STATE(1342), + [sym_sizeof_expression] = STATE(1342), + [sym_alignof_expression] = STATE(1342), + [sym_offsetof_expression] = STATE(1342), + [sym_generic_expression] = STATE(1342), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(1342), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(1342), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(1342), + [sym_concatenated_string] = STATE(1342), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(1342), [sym__empty_declaration] = STATE(52), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_translation_unit_repeat1] = STATE(52), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -15736,80 +15911,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1947), - [sym_preproc_elif] = STATE(1947), - [sym_preproc_elifdef] = STATE(1947), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(2017), + [sym_preproc_elif] = STATE(2017), + [sym_preproc_elifdef] = STATE(2017), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -15911,80 +16086,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [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(2083), - [sym_preproc_elif] = STATE(2083), - [sym_preproc_elifdef] = STATE(2083), - [sym_function_definition] = STATE(7), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(7), - [sym_type_definition] = STATE(7), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(7), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(7), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(7), - [sym_seh_leave_statement] = STATE(7), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(7), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(7), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(2030), + [sym_preproc_elif] = STATE(2030), + [sym_preproc_elifdef] = STATE(2030), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16086,80 +16261,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [4] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(1933), - [sym_preproc_elif] = STATE(1933), - [sym_preproc_elifdef] = STATE(1933), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2294), + [sym_preproc_elif] = STATE(2294), + [sym_preproc_elifdef] = STATE(2294), + [sym_function_definition] = STATE(8), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(8), + [sym_type_definition] = STATE(8), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(8), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(8), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(8), + [sym_seh_leave_statement] = STATE(8), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(8), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(8), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16261,80 +16436,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [5] = { - [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(2026), - [sym_preproc_elif] = STATE(2026), - [sym_preproc_elifdef] = STATE(2026), - [sym_function_definition] = STATE(6), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(6), - [sym_type_definition] = STATE(6), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(6), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(6), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(6), - [sym_seh_leave_statement] = STATE(6), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(6), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(6), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(2149), + [sym_preproc_elif] = STATE(2149), + [sym_preproc_elifdef] = STATE(2149), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16436,80 +16611,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [6] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(2019), - [sym_preproc_elif] = STATE(2019), - [sym_preproc_elifdef] = STATE(2019), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2121), + [sym_preproc_elif] = STATE(2121), + [sym_preproc_elifdef] = STATE(2121), + [sym_function_definition] = STATE(3), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(3), + [sym_type_definition] = STATE(3), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(3), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(3), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(3), + [sym_seh_leave_statement] = STATE(3), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(3), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(3), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16611,80 +16786,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [7] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(2072), - [sym_preproc_elif] = STATE(2072), - [sym_preproc_elifdef] = STATE(2072), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(10), + [sym_preproc_def] = STATE(10), + [sym_preproc_function_def] = STATE(10), + [sym_preproc_call] = STATE(10), + [sym_preproc_if] = STATE(10), + [sym_preproc_ifdef] = STATE(10), + [sym_preproc_else] = STATE(2012), + [sym_preproc_elif] = STATE(2012), + [sym_preproc_elifdef] = STATE(2012), + [sym_function_definition] = STATE(10), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(10), + [sym_type_definition] = STATE(10), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(10), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(10), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(10), + [sym_labeled_statement] = STATE(10), + [sym_expression_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_switch_statement] = STATE(10), + [sym_case_statement] = STATE(10), + [sym_while_statement] = STATE(10), + [sym_do_statement] = STATE(10), + [sym_for_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_break_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_goto_statement] = STATE(10), + [sym_seh_try_statement] = STATE(10), + [sym_seh_leave_statement] = STATE(10), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(10), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(10), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16786,80 +16961,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [8] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_preproc_else] = STATE(2093), - [sym_preproc_elif] = STATE(2093), - [sym_preproc_elifdef] = STATE(2093), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(2218), + [sym_preproc_elif] = STATE(2218), + [sym_preproc_elifdef] = STATE(2218), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -16961,80 +17136,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [9] = { - [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(2001), - [sym_preproc_elif] = STATE(2001), - [sym_preproc_elifdef] = STATE(2001), - [sym_function_definition] = STATE(8), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(8), - [sym_type_definition] = STATE(8), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(8), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(8), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(8), - [sym_seh_leave_statement] = STATE(8), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(8), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(8), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2286), + [sym_preproc_elif] = STATE(2286), + [sym_preproc_elifdef] = STATE(2286), + [sym_function_definition] = STATE(5), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(5), + [sym_type_definition] = STATE(5), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(5), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(5), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(5), + [sym_seh_leave_statement] = STATE(5), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(5), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(5), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17136,80 +17311,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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(1934), - [sym_preproc_elif] = STATE(1934), - [sym_preproc_elifdef] = STATE(1934), - [sym_function_definition] = STATE(2), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(2), - [sym_type_definition] = STATE(2), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(2), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(2), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(2), - [sym_seh_leave_statement] = STATE(2), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(2), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(2), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_preproc_else] = STATE(2126), + [sym_preproc_elif] = STATE(2126), + [sym_preproc_elifdef] = STATE(2126), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17311,80 +17486,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [11] = { - [sym_preproc_include] = STATE(4), - [sym_preproc_def] = STATE(4), - [sym_preproc_function_def] = STATE(4), - [sym_preproc_call] = STATE(4), - [sym_preproc_if] = STATE(4), - [sym_preproc_ifdef] = STATE(4), - [sym_preproc_else] = STATE(1977), - [sym_preproc_elif] = STATE(1977), - [sym_preproc_elifdef] = STATE(1977), - [sym_function_definition] = STATE(4), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(4), - [sym_type_definition] = STATE(4), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(4), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(4), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(4), - [sym_labeled_statement] = STATE(4), - [sym_expression_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_switch_statement] = STATE(4), - [sym_case_statement] = STATE(4), - [sym_while_statement] = STATE(4), - [sym_do_statement] = STATE(4), - [sym_for_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_break_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_goto_statement] = STATE(4), - [sym_seh_try_statement] = STATE(4), - [sym_seh_leave_statement] = STATE(4), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(4), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(4), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2062), + [sym_preproc_elif] = STATE(2062), + [sym_preproc_elifdef] = STATE(2062), + [sym_function_definition] = STATE(2), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(2), + [sym_type_definition] = STATE(2), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(2), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(2), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(2), + [sym_seh_leave_statement] = STATE(2), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(2), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(2), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(101), [aux_sym_preproc_include_token1] = ACTIONS(103), [aux_sym_preproc_def_token1] = ACTIONS(105), @@ -17486,79 +17661,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [12] = { - [sym_preproc_include] = STATE(16), - [sym_preproc_def] = STATE(16), - [sym_preproc_function_def] = STATE(16), - [sym_preproc_call] = STATE(16), - [sym_preproc_if] = STATE(16), - [sym_preproc_ifdef] = STATE(16), - [sym_preproc_else] = STATE(2142), - [sym_preproc_elif] = STATE(2142), - [sym_function_definition] = STATE(16), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(16), - [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(16), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(16), - [sym_labeled_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_if_statement] = STATE(16), - [sym_switch_statement] = STATE(16), - [sym_case_statement] = STATE(16), - [sym_while_statement] = STATE(16), - [sym_do_statement] = STATE(16), - [sym_for_statement] = STATE(16), - [sym_return_statement] = STATE(16), - [sym_break_statement] = STATE(16), - [sym_continue_statement] = STATE(16), - [sym_goto_statement] = STATE(16), - [sym_seh_try_statement] = STATE(16), - [sym_seh_leave_statement] = STATE(16), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(16), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(16), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2177), + [sym_preproc_elif] = STATE(2177), + [sym_function_definition] = STATE(25), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(25), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(25), + [sym_seh_leave_statement] = STATE(25), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(25), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -17664,27 +17839,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2069), - [sym_preproc_elif] = STATE(2069), + [sym_preproc_else] = STATE(2168), + [sym_preproc_elif] = STATE(2168), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), + [sym__old_style_function_definition] = STATE(240), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -17700,37 +17875,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), @@ -17830,175 +18005,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [14] = { - [sym_preproc_include] = STATE(14), - [sym_preproc_def] = STATE(14), - [sym_preproc_function_def] = STATE(14), - [sym_preproc_call] = STATE(14), - [sym_preproc_if] = STATE(14), - [sym_preproc_ifdef] = STATE(14), - [sym_function_definition] = STATE(14), - [sym__old_style_function_definition] = STATE(141), - [sym_declaration] = STATE(14), - [sym_type_definition] = STATE(14), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1481), - [sym_linkage_specification] = STATE(14), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(862), - [sym_compound_statement] = STATE(14), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1130), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(14), - [sym_labeled_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_switch_statement] = STATE(14), - [sym_case_statement] = STATE(14), - [sym_while_statement] = STATE(14), - [sym_do_statement] = STATE(14), - [sym_for_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_break_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_goto_statement] = STATE(14), - [sym_seh_try_statement] = STATE(14), - [sym_seh_leave_statement] = STATE(14), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(14), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(14), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(231), - [aux_sym_preproc_include_token1] = ACTIONS(234), - [aux_sym_preproc_def_token1] = ACTIONS(237), - [aux_sym_preproc_if_token1] = ACTIONS(240), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(245), - [aux_sym_preproc_ifdef_token2] = ACTIONS(245), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(243), - [aux_sym_preproc_elifdef_token1] = ACTIONS(243), - [aux_sym_preproc_elifdef_token2] = ACTIONS(243), - [sym_preproc_directive] = ACTIONS(248), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym___extension__] = ACTIONS(266), - [anon_sym_typedef] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(272), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(287), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = 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), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(311), - [anon_sym_switch] = ACTIONS(314), - [anon_sym_case] = ACTIONS(317), - [anon_sym_default] = ACTIONS(320), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(326), - [anon_sym_for] = ACTIONS(329), - [anon_sym_return] = ACTIONS(332), - [anon_sym_break] = ACTIONS(335), - [anon_sym_continue] = ACTIONS(338), - [anon_sym_goto] = ACTIONS(341), - [anon_sym___try] = ACTIONS(344), - [anon_sym___leave] = ACTIONS(347), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(2015), + [sym_preproc_elif] = STATE(2015), + [sym_function_definition] = STATE(16), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(16), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(16), + [sym_labeled_statement] = STATE(16), + [sym_expression_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_switch_statement] = STATE(16), + [sym_case_statement] = STATE(16), + [sym_while_statement] = STATE(16), + [sym_do_statement] = STATE(16), + [sym_for_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_break_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_goto_statement] = STATE(16), + [sym_seh_try_statement] = STATE(16), + [sym_seh_leave_statement] = STATE(16), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(16), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(179), + [aux_sym_preproc_include_token1] = ACTIONS(181), + [aux_sym_preproc_def_token1] = ACTIONS(183), + [aux_sym_preproc_if_token1] = ACTIONS(185), + [aux_sym_preproc_if_token2] = ACTIONS(231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(189), + [aux_sym_preproc_ifdef_token2] = ACTIONS(189), + [aux_sym_preproc_else_token1] = ACTIONS(113), + [aux_sym_preproc_elif_token1] = ACTIONS(115), + [sym_preproc_directive] = ACTIONS(191), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym___extension__] = ACTIONS(195), + [anon_sym_typedef] = ACTIONS(197), + [anon_sym_extern] = ACTIONS(199), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [15] = { @@ -18008,27 +18183,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2015), - [sym_preproc_elif] = STATE(2015), + [sym_preproc_else] = STATE(2281), + [sym_preproc_elif] = STATE(2281), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), + [sym__old_style_function_definition] = STATE(240), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18044,42 +18219,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(383), + [aux_sym_preproc_if_token2] = ACTIONS(233), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18180,27 +18355,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2179), - [sym_preproc_elif] = STATE(2179), + [sym_preproc_else] = STATE(2024), + [sym_preproc_elif] = STATE(2024), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), + [sym__old_style_function_definition] = STATE(240), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18216,42 +18391,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(385), + [aux_sym_preproc_if_token2] = ACTIONS(235), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18346,84 +18521,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(1955), - [sym_preproc_elif] = STATE(1955), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2283), + [sym_preproc_elif] = STATE(2283), + [sym_function_definition] = STATE(13), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(13), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(13), + [sym_seh_leave_statement] = STATE(13), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(13), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(387), + [aux_sym_preproc_if_token2] = ACTIONS(237), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18518,84 +18693,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [18] = { - [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(2117), - [sym_preproc_elif] = STATE(2117), - [sym_function_definition] = STATE(22), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(22), - [sym_type_definition] = STATE(22), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(22), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(22), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(22), - [sym_seh_leave_statement] = STATE(22), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(22), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(22), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2116), + [sym_preproc_elif] = STATE(2116), + [sym_function_definition] = STATE(15), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(15), + [sym_type_definition] = STATE(15), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(15), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(15), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(15), + [sym_seh_leave_statement] = STATE(15), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(15), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(15), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(389), + [aux_sym_preproc_if_token2] = ACTIONS(239), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18696,27 +18871,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(1958), - [sym_preproc_elif] = STATE(1958), + [sym_preproc_else] = STATE(2042), + [sym_preproc_elif] = STATE(2042), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), + [sym__old_style_function_definition] = STATE(240), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -18732,42 +18907,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(391), + [aux_sym_preproc_if_token2] = ACTIONS(241), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -18862,84 +19037,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [20] = { - [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(1971), - [sym_preproc_elif] = STATE(1971), - [sym_function_definition] = STATE(19), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(19), - [sym_type_definition] = STATE(19), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(19), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(19), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(19), - [sym_seh_leave_statement] = STATE(19), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(19), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(19), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2152), + [sym_preproc_elif] = STATE(2152), + [sym_function_definition] = STATE(24), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(24), + [sym_type_definition] = STATE(24), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(24), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(24), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(24), + [sym_seh_leave_statement] = STATE(24), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(24), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(24), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(393), + [aux_sym_preproc_if_token2] = ACTIONS(243), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19040,27 +19215,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(27), [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), - [sym_preproc_else] = STATE(2115), - [sym_preproc_elif] = STATE(2115), + [sym_preproc_else] = STATE(2173), + [sym_preproc_elif] = STATE(2173), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), + [sym__old_style_function_definition] = STATE(240), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -19076,42 +19251,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(395), + [aux_sym_preproc_if_token2] = ACTIONS(245), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19206,84 +19381,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [22] = { - [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(2143), - [sym_preproc_elif] = STATE(2143), - [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(27), - [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(27), - [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(2023), + [sym_preproc_elif] = STATE(2023), + [sym_function_definition] = STATE(21), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(21), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(21), + [sym_labeled_statement] = STATE(21), + [sym_expression_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_switch_statement] = STATE(21), + [sym_case_statement] = STATE(21), + [sym_while_statement] = STATE(21), + [sym_do_statement] = STATE(21), + [sym_for_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_break_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_goto_statement] = STATE(21), + [sym_seh_try_statement] = STATE(21), + [sym_seh_leave_statement] = STATE(21), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(21), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(397), + [aux_sym_preproc_if_token2] = ACTIONS(247), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19378,84 +19553,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [23] = { - [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(1945), - [sym_preproc_elif] = STATE(1945), - [sym_function_definition] = STATE(17), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(17), - [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(17), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(17), - [sym_seh_leave_statement] = STATE(17), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(17), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(17), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2224), + [sym_preproc_elif] = STATE(2224), + [sym_function_definition] = STATE(19), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(19), + [sym_type_definition] = STATE(19), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(19), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(19), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(19), + [sym_seh_leave_statement] = STATE(19), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(19), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(19), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(399), + [aux_sym_preproc_if_token2] = ACTIONS(249), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19550,84 +19725,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [24] = { - [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(2021), - [sym_preproc_elif] = STATE(2021), - [sym_function_definition] = STATE(15), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(15), - [sym_type_definition] = STATE(15), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(15), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(15), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(15), - [sym_seh_leave_statement] = STATE(15), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(15), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(15), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2099), + [sym_preproc_elif] = STATE(2099), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(251), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19722,84 +19897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [25] = { - [sym_preproc_include] = STATE(21), - [sym_preproc_def] = STATE(21), - [sym_preproc_function_def] = STATE(21), - [sym_preproc_call] = STATE(21), - [sym_preproc_if] = STATE(21), - [sym_preproc_ifdef] = STATE(21), - [sym_preproc_else] = STATE(2053), - [sym_preproc_elif] = STATE(2053), - [sym_function_definition] = STATE(21), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(21), - [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(21), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(21), - [sym_labeled_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_switch_statement] = STATE(21), - [sym_case_statement] = STATE(21), - [sym_while_statement] = STATE(21), - [sym_do_statement] = STATE(21), - [sym_for_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_break_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_goto_statement] = STATE(21), - [sym_seh_try_statement] = STATE(21), - [sym_seh_leave_statement] = STATE(21), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(21), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(21), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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(2284), + [sym_preproc_elif] = STATE(2284), + [sym_function_definition] = STATE(27), + [sym__old_style_function_definition] = STATE(240), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), + [sym_compound_statement] = STATE(27), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(27), + [sym_seh_leave_statement] = STATE(27), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(27), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(179), [aux_sym_preproc_include_token1] = ACTIONS(181), [aux_sym_preproc_def_token1] = ACTIONS(183), [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(403), + [aux_sym_preproc_if_token2] = ACTIONS(253), [aux_sym_preproc_ifdef_token1] = ACTIONS(189), [aux_sym_preproc_ifdef_token2] = ACTIONS(189), [aux_sym_preproc_else_token1] = ACTIONS(113), @@ -19894,175 +20069,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [26] = { - [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(2073), - [sym_preproc_elif] = STATE(2073), - [sym_function_definition] = STATE(13), - [sym__old_style_function_definition] = STATE(224), - [sym_declaration] = STATE(13), - [sym_type_definition] = STATE(13), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), - [sym_linkage_specification] = STATE(13), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), - [sym_compound_statement] = STATE(13), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(13), - [sym_seh_leave_statement] = STATE(13), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(13), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(13), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(179), - [aux_sym_preproc_include_token1] = ACTIONS(181), - [aux_sym_preproc_def_token1] = ACTIONS(183), - [aux_sym_preproc_if_token1] = ACTIONS(185), - [aux_sym_preproc_if_token2] = ACTIONS(405), - [aux_sym_preproc_ifdef_token1] = ACTIONS(189), - [aux_sym_preproc_ifdef_token2] = ACTIONS(189), - [aux_sym_preproc_else_token1] = ACTIONS(113), - [aux_sym_preproc_elif_token1] = ACTIONS(115), - [sym_preproc_directive] = ACTIONS(191), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym___extension__] = ACTIONS(195), - [anon_sym_typedef] = ACTIONS(197), - [anon_sym_extern] = ACTIONS(199), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_preproc_if] = STATE(26), + [sym_preproc_ifdef] = STATE(26), + [sym_function_definition] = STATE(26), + [sym__old_style_function_definition] = STATE(140), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1502), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(886), + [sym_compound_statement] = STATE(26), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1159), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(26), + [sym_labeled_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_switch_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_do_statement] = STATE(26), + [sym_for_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_break_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_goto_statement] = STATE(26), + [sym_seh_try_statement] = STATE(26), + [sym_seh_leave_statement] = STATE(26), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(26), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(26), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(255), + [aux_sym_preproc_include_token1] = ACTIONS(258), + [aux_sym_preproc_def_token1] = ACTIONS(261), + [aux_sym_preproc_if_token1] = ACTIONS(264), + [aux_sym_preproc_if_token2] = ACTIONS(267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(269), + [aux_sym_preproc_ifdef_token2] = ACTIONS(269), + [aux_sym_preproc_else_token1] = ACTIONS(267), + [aux_sym_preproc_elif_token1] = ACTIONS(267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(267), + [aux_sym_preproc_elifdef_token2] = ACTIONS(267), + [sym_preproc_directive] = ACTIONS(272), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(287), + [anon_sym___extension__] = ACTIONS(290), + [anon_sym_typedef] = ACTIONS(293), + [anon_sym_extern] = ACTIONS(296), + [anon_sym___attribute__] = ACTIONS(299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(302), + [anon_sym___declspec] = ACTIONS(305), + [anon_sym___cdecl] = ACTIONS(308), + [anon_sym___clrcall] = ACTIONS(308), + [anon_sym___stdcall] = ACTIONS(308), + [anon_sym___fastcall] = ACTIONS(308), + [anon_sym___thiscall] = ACTIONS(308), + [anon_sym___vectorcall] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(311), + [anon_sym_signed] = ACTIONS(314), + [anon_sym_unsigned] = ACTIONS(314), + [anon_sym_long] = ACTIONS(314), + [anon_sym_short] = ACTIONS(314), + [anon_sym_static] = ACTIONS(317), + [anon_sym_auto] = ACTIONS(317), + [anon_sym_register] = ACTIONS(317), + [anon_sym_inline] = ACTIONS(317), + [anon_sym___inline] = ACTIONS(317), + [anon_sym___inline__] = ACTIONS(317), + [anon_sym___forceinline] = ACTIONS(317), + [anon_sym_thread_local] = ACTIONS(317), + [anon_sym___thread] = ACTIONS(317), + [anon_sym_const] = ACTIONS(320), + [anon_sym_constexpr] = ACTIONS(320), + [anon_sym_volatile] = ACTIONS(320), + [anon_sym_restrict] = ACTIONS(320), + [anon_sym___restrict__] = ACTIONS(320), + [anon_sym__Atomic] = ACTIONS(320), + [anon_sym__Noreturn] = ACTIONS(320), + [anon_sym_noreturn] = ACTIONS(320), + [sym_primitive_type] = ACTIONS(323), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(329), + [anon_sym_union] = ACTIONS(332), + [anon_sym_if] = ACTIONS(335), + [anon_sym_switch] = ACTIONS(338), + [anon_sym_case] = ACTIONS(341), + [anon_sym_default] = ACTIONS(344), + [anon_sym_while] = ACTIONS(347), + [anon_sym_do] = ACTIONS(350), + [anon_sym_for] = ACTIONS(353), + [anon_sym_return] = ACTIONS(356), + [anon_sym_break] = ACTIONS(359), + [anon_sym_continue] = ACTIONS(362), + [anon_sym_goto] = ACTIONS(365), + [anon_sym___try] = ACTIONS(368), + [anon_sym___leave] = ACTIONS(371), + [anon_sym_DASH_DASH] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(374), + [anon_sym_sizeof] = ACTIONS(377), + [anon_sym___alignof__] = ACTIONS(380), + [anon_sym___alignof] = ACTIONS(380), + [anon_sym__alignof] = ACTIONS(380), + [anon_sym_alignof] = ACTIONS(380), + [anon_sym__Alignof] = ACTIONS(380), + [anon_sym_offsetof] = ACTIONS(383), + [anon_sym__Generic] = ACTIONS(386), + [anon_sym_asm] = ACTIONS(389), + [anon_sym___asm__] = ACTIONS(389), + [sym_number_literal] = ACTIONS(392), + [anon_sym_L_SQUOTE] = ACTIONS(395), + [anon_sym_u_SQUOTE] = ACTIONS(395), + [anon_sym_U_SQUOTE] = ACTIONS(395), + [anon_sym_u8_SQUOTE] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_L_DQUOTE] = ACTIONS(398), + [anon_sym_u_DQUOTE] = ACTIONS(398), + [anon_sym_U_DQUOTE] = ACTIONS(398), + [anon_sym_u8_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [sym_true] = ACTIONS(401), + [sym_false] = ACTIONS(401), + [anon_sym_NULL] = ACTIONS(404), + [anon_sym_nullptr] = ACTIONS(404), [sym_comment] = ACTIONS(3), }, [27] = { @@ -20073,24 +20248,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(27), [sym_preproc_ifdef] = STATE(27), [sym_function_definition] = STATE(27), - [sym__old_style_function_definition] = STATE(224), + [sym__old_style_function_definition] = STATE(240), [sym_declaration] = STATE(27), [sym_type_definition] = STATE(27), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1479), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1504), [sym_linkage_specification] = STATE(27), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(864), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(889), [sym_compound_statement] = STATE(27), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1123), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1158), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(27), [sym_labeled_statement] = STATE(27), [sym_expression_statement] = STATE(27), @@ -20106,93 +20281,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(27), [sym_seh_try_statement] = STATE(27), [sym_seh_leave_statement] = STATE(27), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(27), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(27), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(407), [aux_sym_preproc_include_token1] = ACTIONS(410), [aux_sym_preproc_def_token1] = ACTIONS(413), [aux_sym_preproc_if_token1] = ACTIONS(416), - [aux_sym_preproc_if_token2] = ACTIONS(243), + [aux_sym_preproc_if_token2] = ACTIONS(267), [aux_sym_preproc_ifdef_token1] = ACTIONS(419), [aux_sym_preproc_ifdef_token2] = ACTIONS(419), - [aux_sym_preproc_else_token1] = ACTIONS(243), - [aux_sym_preproc_elif_token1] = ACTIONS(243), + [aux_sym_preproc_else_token1] = ACTIONS(267), + [aux_sym_preproc_elif_token1] = ACTIONS(267), [sym_preproc_directive] = ACTIONS(422), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), [anon_sym_SEMI] = ACTIONS(425), [anon_sym___extension__] = ACTIONS(428), [anon_sym_typedef] = ACTIONS(431), [anon_sym_extern] = ACTIONS(434), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), + [anon_sym___attribute__] = ACTIONS(299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(302), + [anon_sym___declspec] = ACTIONS(305), + [anon_sym___cdecl] = ACTIONS(308), + [anon_sym___clrcall] = ACTIONS(308), + [anon_sym___stdcall] = ACTIONS(308), + [anon_sym___fastcall] = ACTIONS(308), + [anon_sym___thiscall] = ACTIONS(308), + [anon_sym___vectorcall] = ACTIONS(308), [anon_sym_LBRACE] = ACTIONS(437), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = 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), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), + [anon_sym_signed] = ACTIONS(314), + [anon_sym_unsigned] = ACTIONS(314), + [anon_sym_long] = ACTIONS(314), + [anon_sym_short] = ACTIONS(314), + [anon_sym_static] = ACTIONS(317), + [anon_sym_auto] = ACTIONS(317), + [anon_sym_register] = ACTIONS(317), + [anon_sym_inline] = ACTIONS(317), + [anon_sym___inline] = ACTIONS(317), + [anon_sym___inline__] = ACTIONS(317), + [anon_sym___forceinline] = ACTIONS(317), + [anon_sym_thread_local] = ACTIONS(317), + [anon_sym___thread] = ACTIONS(317), + [anon_sym_const] = ACTIONS(320), + [anon_sym_constexpr] = ACTIONS(320), + [anon_sym_volatile] = ACTIONS(320), + [anon_sym_restrict] = ACTIONS(320), + [anon_sym___restrict__] = ACTIONS(320), + [anon_sym__Atomic] = ACTIONS(320), + [anon_sym__Noreturn] = ACTIONS(320), + [anon_sym_noreturn] = ACTIONS(320), + [sym_primitive_type] = ACTIONS(323), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(329), + [anon_sym_union] = ACTIONS(332), [anon_sym_if] = ACTIONS(440), [anon_sym_switch] = ACTIONS(443), [anon_sym_case] = ACTIONS(446), @@ -20206,107 +20381,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_goto] = ACTIONS(470), [anon_sym___try] = ACTIONS(473), [anon_sym___leave] = ACTIONS(476), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), + [anon_sym_DASH_DASH] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(374), + [anon_sym_sizeof] = ACTIONS(377), + [anon_sym___alignof__] = ACTIONS(380), + [anon_sym___alignof] = ACTIONS(380), + [anon_sym__alignof] = ACTIONS(380), + [anon_sym_alignof] = ACTIONS(380), + [anon_sym__Alignof] = ACTIONS(380), + [anon_sym_offsetof] = ACTIONS(383), + [anon_sym__Generic] = ACTIONS(386), + [anon_sym_asm] = ACTIONS(389), + [anon_sym___asm__] = ACTIONS(389), + [sym_number_literal] = ACTIONS(392), + [anon_sym_L_SQUOTE] = ACTIONS(395), + [anon_sym_u_SQUOTE] = ACTIONS(395), + [anon_sym_U_SQUOTE] = ACTIONS(395), + [anon_sym_u8_SQUOTE] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_L_DQUOTE] = ACTIONS(398), + [anon_sym_u_DQUOTE] = ACTIONS(398), + [anon_sym_U_DQUOTE] = ACTIONS(398), + [anon_sym_u8_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [sym_true] = ACTIONS(401), + [sym_false] = ACTIONS(401), + [anon_sym_NULL] = ACTIONS(404), + [anon_sym_nullptr] = ACTIONS(404), [sym_comment] = ACTIONS(3), }, [28] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(41), - [sym_type_definition] = STATE(41), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(41), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(41), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(41), - [sym_seh_leave_statement] = STATE(41), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(41), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(41), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(36), + [sym_seh_leave_statement] = STATE(36), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(36), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20404,174 +20579,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [29] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(32), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(32), - [sym_seh_leave_statement] = STATE(32), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(32), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(32), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(39), - [anon_sym___clrcall] = ACTIONS(39), - [anon_sym___stdcall] = ACTIONS(39), - [anon_sym___fastcall] = ACTIONS(39), - [anon_sym___thiscall] = ACTIONS(39), - [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(529), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [30] = { [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), [sym_preproc_function_def] = STATE(35), @@ -20579,24 +20586,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(35), [sym_preproc_ifdef] = STATE(35), [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(428), + [sym__old_style_function_definition] = STATE(471), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1476), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1509), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(865), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(880), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1157), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -20612,45 +20619,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(35), [sym_seh_try_statement] = STATE(35), [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(533), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [aux_sym_preproc_if_token2] = ACTIONS(539), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(543), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(529), + [aux_sym_preproc_include_token1] = ACTIONS(531), + [aux_sym_preproc_def_token1] = ACTIONS(533), + [aux_sym_preproc_if_token1] = ACTIONS(535), + [aux_sym_preproc_if_token2] = ACTIONS(537), + [aux_sym_preproc_ifdef_token1] = ACTIONS(539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(539), + [sym_preproc_directive] = ACTIONS(541), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20658,10 +20665,10 @@ 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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym___extension__] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(547), + [anon_sym_extern] = ACTIONS(549), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -20671,7 +20678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20697,19 +20704,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -20739,78 +20746,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [31] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [30] = { + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -20839,7 +20846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(579), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -20907,85 +20914,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [32] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(479), - [aux_sym_preproc_include_token1] = ACTIONS(481), - [aux_sym_preproc_def_token1] = ACTIONS(483), - [aux_sym_preproc_if_token1] = ACTIONS(485), - [aux_sym_preproc_ifdef_token1] = ACTIONS(487), - [aux_sym_preproc_ifdef_token2] = ACTIONS(487), - [sym_preproc_directive] = ACTIONS(489), + [31] = { + [sym_preproc_include] = STATE(29), + [sym_preproc_def] = STATE(29), + [sym_preproc_function_def] = STATE(29), + [sym_preproc_call] = STATE(29), + [sym_preproc_if] = STATE(29), + [sym_preproc_ifdef] = STATE(29), + [sym_function_definition] = STATE(29), + [sym__old_style_function_definition] = STATE(471), + [sym_declaration] = STATE(29), + [sym_type_definition] = STATE(29), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1509), + [sym_linkage_specification] = STATE(29), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(880), + [sym_compound_statement] = STATE(29), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1157), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_case_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_goto_statement] = STATE(29), + [sym_seh_try_statement] = STATE(29), + [sym_seh_leave_statement] = STATE(29), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(29), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(29), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(529), + [aux_sym_preproc_include_token1] = ACTIONS(531), + [aux_sym_preproc_def_token1] = ACTIONS(533), + [aux_sym_preproc_if_token1] = ACTIONS(535), + [aux_sym_preproc_if_token2] = ACTIONS(581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(539), + [aux_sym_preproc_ifdef_token2] = ACTIONS(539), + [sym_preproc_directive] = ACTIONS(541), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -20993,10 +21001,10 @@ 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(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), - [anon_sym_extern] = ACTIONS(497), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym___extension__] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(547), + [anon_sym_extern] = ACTIONS(549), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -21006,8 +21014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(583), + [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21033,19 +21040,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -21075,79 +21082,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [33] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(479), + [32] = { + [sym_preproc_include] = STATE(30), + [sym_preproc_def] = STATE(30), + [sym_preproc_function_def] = STATE(30), + [sym_preproc_call] = STATE(30), + [sym_preproc_if] = STATE(30), + [sym_preproc_ifdef] = STATE(30), + [sym_function_definition] = STATE(30), + [sym__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(30), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_case_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_goto_statement] = STATE(30), + [sym_seh_try_statement] = STATE(30), + [sym_seh_leave_statement] = STATE(30), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(30), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), [aux_sym_preproc_if_token1] = ACTIONS(485), @@ -21175,7 +21182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(583), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21243,78 +21250,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [34] = { - [sym_preproc_include] = STATE(38), - [sym_preproc_def] = STATE(38), - [sym_preproc_function_def] = STATE(38), - [sym_preproc_call] = STATE(38), - [sym_preproc_if] = STATE(38), - [sym_preproc_ifdef] = STATE(38), - [sym_function_definition] = STATE(38), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_seh_try_statement] = STATE(38), - [sym_seh_leave_statement] = STATE(38), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(38), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(37), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(37), + [sym_seh_leave_statement] = STATE(37), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(37), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21343,7 +21350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(587), + [anon_sym_RBRACE] = ACTIONS(585), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21411,6 +21418,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, + [34] = { + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(587), + [aux_sym_preproc_include_token1] = ACTIONS(590), + [aux_sym_preproc_def_token1] = ACTIONS(593), + [aux_sym_preproc_if_token1] = ACTIONS(596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(599), + [aux_sym_preproc_ifdef_token2] = ACTIONS(599), + [sym_preproc_directive] = ACTIONS(602), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(605), + [anon_sym___extension__] = ACTIONS(608), + [anon_sym_typedef] = ACTIONS(611), + [anon_sym_extern] = ACTIONS(614), + [anon_sym___attribute__] = ACTIONS(299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(302), + [anon_sym___declspec] = ACTIONS(305), + [anon_sym___cdecl] = ACTIONS(308), + [anon_sym___clrcall] = ACTIONS(308), + [anon_sym___stdcall] = ACTIONS(308), + [anon_sym___fastcall] = ACTIONS(308), + [anon_sym___thiscall] = ACTIONS(308), + [anon_sym___vectorcall] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_signed] = ACTIONS(314), + [anon_sym_unsigned] = ACTIONS(314), + [anon_sym_long] = ACTIONS(314), + [anon_sym_short] = ACTIONS(314), + [anon_sym_static] = ACTIONS(317), + [anon_sym_auto] = ACTIONS(317), + [anon_sym_register] = ACTIONS(317), + [anon_sym_inline] = ACTIONS(317), + [anon_sym___inline] = ACTIONS(317), + [anon_sym___inline__] = ACTIONS(317), + [anon_sym___forceinline] = ACTIONS(317), + [anon_sym_thread_local] = ACTIONS(317), + [anon_sym___thread] = ACTIONS(317), + [anon_sym_const] = ACTIONS(320), + [anon_sym_constexpr] = ACTIONS(320), + [anon_sym_volatile] = ACTIONS(320), + [anon_sym_restrict] = ACTIONS(320), + [anon_sym___restrict__] = ACTIONS(320), + [anon_sym__Atomic] = ACTIONS(320), + [anon_sym__Noreturn] = ACTIONS(320), + [anon_sym_noreturn] = ACTIONS(320), + [sym_primitive_type] = ACTIONS(323), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(329), + [anon_sym_union] = ACTIONS(332), + [anon_sym_if] = ACTIONS(622), + [anon_sym_switch] = ACTIONS(625), + [anon_sym_case] = ACTIONS(628), + [anon_sym_default] = ACTIONS(631), + [anon_sym_while] = ACTIONS(634), + [anon_sym_do] = ACTIONS(637), + [anon_sym_for] = ACTIONS(640), + [anon_sym_return] = ACTIONS(643), + [anon_sym_break] = ACTIONS(646), + [anon_sym_continue] = ACTIONS(649), + [anon_sym_goto] = ACTIONS(652), + [anon_sym___try] = ACTIONS(655), + [anon_sym___leave] = ACTIONS(658), + [anon_sym_DASH_DASH] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(374), + [anon_sym_sizeof] = ACTIONS(377), + [anon_sym___alignof__] = ACTIONS(380), + [anon_sym___alignof] = ACTIONS(380), + [anon_sym__alignof] = ACTIONS(380), + [anon_sym_alignof] = ACTIONS(380), + [anon_sym__Alignof] = ACTIONS(380), + [anon_sym_offsetof] = ACTIONS(383), + [anon_sym__Generic] = ACTIONS(386), + [anon_sym_asm] = ACTIONS(389), + [anon_sym___asm__] = ACTIONS(389), + [sym_number_literal] = ACTIONS(392), + [anon_sym_L_SQUOTE] = ACTIONS(395), + [anon_sym_u_SQUOTE] = ACTIONS(395), + [anon_sym_U_SQUOTE] = ACTIONS(395), + [anon_sym_u8_SQUOTE] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_L_DQUOTE] = ACTIONS(398), + [anon_sym_u_DQUOTE] = ACTIONS(398), + [anon_sym_U_DQUOTE] = ACTIONS(398), + [anon_sym_u8_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [sym_true] = ACTIONS(401), + [sym_false] = ACTIONS(401), + [anon_sym_NULL] = ACTIONS(404), + [anon_sym_nullptr] = ACTIONS(404), + [sym_comment] = ACTIONS(3), + }, [35] = { [sym_preproc_include] = STATE(35), [sym_preproc_def] = STATE(35), @@ -21419,24 +21594,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(35), [sym_preproc_ifdef] = STATE(35), [sym_function_definition] = STATE(35), - [sym__old_style_function_definition] = STATE(428), + [sym__old_style_function_definition] = STATE(471), [sym_declaration] = STATE(35), [sym_type_definition] = STATE(35), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1476), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1509), [sym_linkage_specification] = STATE(35), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(865), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(880), [sym_compound_statement] = STATE(35), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1157), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym_expression_statement] = STATE(35), @@ -21452,205 +21627,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(35), [sym_seh_try_statement] = STATE(35), [sym_seh_leave_statement] = STATE(35), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [sym__empty_declaration] = STATE(35), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_preproc_if_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(589), - [aux_sym_preproc_include_token1] = ACTIONS(592), - [aux_sym_preproc_def_token1] = ACTIONS(595), - [aux_sym_preproc_if_token1] = ACTIONS(598), - [aux_sym_preproc_if_token2] = ACTIONS(243), - [aux_sym_preproc_ifdef_token1] = ACTIONS(601), - [aux_sym_preproc_ifdef_token2] = ACTIONS(601), - [sym_preproc_directive] = ACTIONS(604), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym___extension__] = ACTIONS(610), - [anon_sym_typedef] = ACTIONS(613), - [anon_sym_extern] = ACTIONS(616), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(619), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = 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), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(622), - [anon_sym_switch] = ACTIONS(625), - [anon_sym_case] = ACTIONS(628), - [anon_sym_default] = ACTIONS(631), - [anon_sym_while] = ACTIONS(634), - [anon_sym_do] = ACTIONS(637), - [anon_sym_for] = ACTIONS(640), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(646), - [anon_sym_continue] = ACTIONS(649), - [anon_sym_goto] = ACTIONS(652), - [anon_sym___try] = ACTIONS(655), - [anon_sym___leave] = ACTIONS(658), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(661), + [aux_sym_preproc_include_token1] = ACTIONS(664), + [aux_sym_preproc_def_token1] = ACTIONS(667), + [aux_sym_preproc_if_token1] = ACTIONS(670), + [aux_sym_preproc_if_token2] = ACTIONS(267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(673), + [aux_sym_preproc_ifdef_token2] = ACTIONS(673), + [sym_preproc_directive] = ACTIONS(676), + [anon_sym_LPAREN2] = ACTIONS(275), + [anon_sym_BANG] = ACTIONS(278), + [anon_sym_TILDE] = ACTIONS(278), + [anon_sym_DASH] = ACTIONS(281), + [anon_sym_PLUS] = ACTIONS(281), + [anon_sym_STAR] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(284), + [anon_sym_SEMI] = ACTIONS(679), + [anon_sym___extension__] = ACTIONS(682), + [anon_sym_typedef] = ACTIONS(685), + [anon_sym_extern] = ACTIONS(688), + [anon_sym___attribute__] = ACTIONS(299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(302), + [anon_sym___declspec] = ACTIONS(305), + [anon_sym___cdecl] = ACTIONS(308), + [anon_sym___clrcall] = ACTIONS(308), + [anon_sym___stdcall] = ACTIONS(308), + [anon_sym___fastcall] = ACTIONS(308), + [anon_sym___thiscall] = ACTIONS(308), + [anon_sym___vectorcall] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(691), + [anon_sym_signed] = ACTIONS(314), + [anon_sym_unsigned] = ACTIONS(314), + [anon_sym_long] = ACTIONS(314), + [anon_sym_short] = ACTIONS(314), + [anon_sym_static] = ACTIONS(317), + [anon_sym_auto] = ACTIONS(317), + [anon_sym_register] = ACTIONS(317), + [anon_sym_inline] = ACTIONS(317), + [anon_sym___inline] = ACTIONS(317), + [anon_sym___inline__] = ACTIONS(317), + [anon_sym___forceinline] = ACTIONS(317), + [anon_sym_thread_local] = ACTIONS(317), + [anon_sym___thread] = ACTIONS(317), + [anon_sym_const] = ACTIONS(320), + [anon_sym_constexpr] = ACTIONS(320), + [anon_sym_volatile] = ACTIONS(320), + [anon_sym_restrict] = ACTIONS(320), + [anon_sym___restrict__] = ACTIONS(320), + [anon_sym__Atomic] = ACTIONS(320), + [anon_sym__Noreturn] = ACTIONS(320), + [anon_sym_noreturn] = ACTIONS(320), + [sym_primitive_type] = ACTIONS(323), + [anon_sym_enum] = ACTIONS(326), + [anon_sym_struct] = ACTIONS(329), + [anon_sym_union] = ACTIONS(332), + [anon_sym_if] = ACTIONS(694), + [anon_sym_switch] = ACTIONS(697), + [anon_sym_case] = ACTIONS(700), + [anon_sym_default] = ACTIONS(703), + [anon_sym_while] = ACTIONS(706), + [anon_sym_do] = ACTIONS(709), + [anon_sym_for] = ACTIONS(712), + [anon_sym_return] = ACTIONS(715), + [anon_sym_break] = ACTIONS(718), + [anon_sym_continue] = ACTIONS(721), + [anon_sym_goto] = ACTIONS(724), + [anon_sym___try] = ACTIONS(727), + [anon_sym___leave] = ACTIONS(730), + [anon_sym_DASH_DASH] = ACTIONS(374), + [anon_sym_PLUS_PLUS] = ACTIONS(374), + [anon_sym_sizeof] = ACTIONS(377), + [anon_sym___alignof__] = ACTIONS(380), + [anon_sym___alignof] = ACTIONS(380), + [anon_sym__alignof] = ACTIONS(380), + [anon_sym_alignof] = ACTIONS(380), + [anon_sym__Alignof] = ACTIONS(380), + [anon_sym_offsetof] = ACTIONS(383), + [anon_sym__Generic] = ACTIONS(386), + [anon_sym_asm] = ACTIONS(389), + [anon_sym___asm__] = ACTIONS(389), + [sym_number_literal] = ACTIONS(392), + [anon_sym_L_SQUOTE] = ACTIONS(395), + [anon_sym_u_SQUOTE] = ACTIONS(395), + [anon_sym_U_SQUOTE] = ACTIONS(395), + [anon_sym_u8_SQUOTE] = ACTIONS(395), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_L_DQUOTE] = ACTIONS(398), + [anon_sym_u_DQUOTE] = ACTIONS(398), + [anon_sym_U_DQUOTE] = ACTIONS(398), + [anon_sym_u8_DQUOTE] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(398), + [sym_true] = ACTIONS(401), + [sym_false] = ACTIONS(401), + [anon_sym_NULL] = ACTIONS(404), + [anon_sym_nullptr] = ACTIONS(404), [sym_comment] = ACTIONS(3), }, [36] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21679,7 +21854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(661), + [anon_sym_RBRACE] = ACTIONS(733), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21748,77 +21923,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [37] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(36), - [sym_seh_leave_statement] = STATE(36), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(36), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -21847,7 +22022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(663), + [anon_sym_RBRACE] = ACTIONS(735), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -21916,77 +22091,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [38] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(39), + [sym_seh_leave_statement] = STATE(39), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(39), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22015,7 +22190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(665), + [anon_sym_RBRACE] = ACTIONS(737), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22084,77 +22259,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [39] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22183,7 +22358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_RBRACE] = ACTIONS(739), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22252,77 +22427,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(31), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(31), - [sym_seh_leave_statement] = STATE(31), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(31), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(50), + [sym_seh_leave_statement] = STATE(50), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(50), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22351,7 +22526,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(741), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22420,77 +22595,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [41] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22519,7 +22694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(743), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22588,77 +22763,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [42] = { - [sym_preproc_include] = STATE(43), - [sym_preproc_def] = STATE(43), - [sym_preproc_function_def] = STATE(43), - [sym_preproc_call] = STATE(43), - [sym_preproc_if] = STATE(43), - [sym_preproc_ifdef] = STATE(43), - [sym_function_definition] = STATE(43), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(43), - [sym_type_definition] = STATE(43), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(43), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(43), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(43), - [sym_seh_leave_statement] = STATE(43), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(43), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(43), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22687,7 +22862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(673), + [anon_sym_RBRACE] = ACTIONS(745), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22756,77 +22931,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [43] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(47), + [sym_seh_leave_statement] = STATE(47), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(47), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -22855,7 +23030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(675), + [anon_sym_RBRACE] = ACTIONS(747), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -22924,77 +23099,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [44] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(45), - [sym_seh_leave_statement] = STATE(45), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(45), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(42), + [sym_type_definition] = STATE(42), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(42), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(42), + [sym_seh_leave_statement] = STATE(42), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(42), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23023,7 +23198,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(677), + [anon_sym_RBRACE] = ACTIONS(749), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23092,77 +23267,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [45] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(48), + [sym_seh_leave_statement] = STATE(48), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(48), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23191,7 +23366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(679), + [anon_sym_RBRACE] = ACTIONS(751), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23260,245 +23435,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [46] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(681), - [aux_sym_preproc_include_token1] = ACTIONS(684), - [aux_sym_preproc_def_token1] = ACTIONS(687), - [aux_sym_preproc_if_token1] = ACTIONS(690), - [aux_sym_preproc_ifdef_token1] = ACTIONS(693), - [aux_sym_preproc_ifdef_token2] = ACTIONS(693), - [sym_preproc_directive] = ACTIONS(696), - [anon_sym_LPAREN2] = ACTIONS(251), - [anon_sym_BANG] = ACTIONS(254), - [anon_sym_TILDE] = ACTIONS(254), - [anon_sym_DASH] = ACTIONS(257), - [anon_sym_PLUS] = ACTIONS(257), - [anon_sym_STAR] = ACTIONS(260), - [anon_sym_AMP] = ACTIONS(260), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym___extension__] = ACTIONS(702), - [anon_sym_typedef] = ACTIONS(705), - [anon_sym_extern] = ACTIONS(708), - [anon_sym___attribute__] = ACTIONS(275), - [anon_sym_LBRACK_LBRACK] = ACTIONS(278), - [anon_sym___declspec] = ACTIONS(281), - [anon_sym___cdecl] = ACTIONS(284), - [anon_sym___clrcall] = ACTIONS(284), - [anon_sym___stdcall] = ACTIONS(284), - [anon_sym___fastcall] = ACTIONS(284), - [anon_sym___thiscall] = ACTIONS(284), - [anon_sym___vectorcall] = ACTIONS(284), - [anon_sym_LBRACE] = ACTIONS(711), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_signed] = ACTIONS(290), - [anon_sym_unsigned] = ACTIONS(290), - [anon_sym_long] = ACTIONS(290), - [anon_sym_short] = ACTIONS(290), - [anon_sym_static] = ACTIONS(293), - [anon_sym_auto] = ACTIONS(293), - [anon_sym_register] = ACTIONS(293), - [anon_sym_inline] = ACTIONS(293), - [anon_sym___inline] = ACTIONS(293), - [anon_sym___inline__] = ACTIONS(293), - [anon_sym___forceinline] = ACTIONS(293), - [anon_sym_thread_local] = ACTIONS(293), - [anon_sym___thread] = 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), - [sym_primitive_type] = ACTIONS(299), - [anon_sym_enum] = ACTIONS(302), - [anon_sym_struct] = ACTIONS(305), - [anon_sym_union] = ACTIONS(308), - [anon_sym_if] = ACTIONS(716), - [anon_sym_switch] = ACTIONS(719), - [anon_sym_case] = ACTIONS(722), - [anon_sym_default] = ACTIONS(725), - [anon_sym_while] = ACTIONS(728), - [anon_sym_do] = ACTIONS(731), - [anon_sym_for] = ACTIONS(734), - [anon_sym_return] = ACTIONS(737), - [anon_sym_break] = ACTIONS(740), - [anon_sym_continue] = ACTIONS(743), - [anon_sym_goto] = ACTIONS(746), - [anon_sym___try] = ACTIONS(749), - [anon_sym___leave] = ACTIONS(752), - [anon_sym_DASH_DASH] = ACTIONS(350), - [anon_sym_PLUS_PLUS] = ACTIONS(350), - [anon_sym_sizeof] = ACTIONS(353), - [anon_sym___alignof__] = ACTIONS(356), - [anon_sym___alignof] = ACTIONS(356), - [anon_sym__alignof] = ACTIONS(356), - [anon_sym_alignof] = ACTIONS(356), - [anon_sym__Alignof] = ACTIONS(356), - [anon_sym_offsetof] = ACTIONS(359), - [anon_sym__Generic] = ACTIONS(362), - [anon_sym_asm] = ACTIONS(365), - [anon_sym___asm__] = ACTIONS(365), - [sym_number_literal] = ACTIONS(368), - [anon_sym_L_SQUOTE] = ACTIONS(371), - [anon_sym_u_SQUOTE] = ACTIONS(371), - [anon_sym_U_SQUOTE] = ACTIONS(371), - [anon_sym_u8_SQUOTE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), - [anon_sym_L_DQUOTE] = ACTIONS(374), - [anon_sym_u_DQUOTE] = ACTIONS(374), - [anon_sym_U_DQUOTE] = ACTIONS(374), - [anon_sym_u8_DQUOTE] = ACTIONS(374), - [anon_sym_DQUOTE] = ACTIONS(374), - [sym_true] = ACTIONS(377), - [sym_false] = ACTIONS(377), - [anon_sym_NULL] = ACTIONS(380), - [anon_sym_nullptr] = ACTIONS(380), - [sym_comment] = ACTIONS(3), - }, - [47] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(49), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(49), - [sym_seh_leave_statement] = STATE(49), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(49), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(49), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(41), + [sym_type_definition] = STATE(41), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(41), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(41), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(41), + [sym_seh_leave_statement] = STATE(41), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(41), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(41), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23527,7 +23534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(753), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23595,86 +23602,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [48] = { - [sym_preproc_include] = STATE(30), - [sym_preproc_def] = STATE(30), - [sym_preproc_function_def] = STATE(30), - [sym_preproc_call] = STATE(30), - [sym_preproc_if] = STATE(30), - [sym_preproc_ifdef] = STATE(30), - [sym_function_definition] = STATE(30), - [sym__old_style_function_definition] = STATE(428), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1476), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(865), - [sym_compound_statement] = STATE(30), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1126), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(30), - [sym_labeled_statement] = STATE(30), - [sym_expression_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_switch_statement] = STATE(30), - [sym_case_statement] = STATE(30), - [sym_while_statement] = STATE(30), - [sym_do_statement] = STATE(30), - [sym_for_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_break_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_goto_statement] = STATE(30), - [sym_seh_try_statement] = STATE(30), - [sym_seh_leave_statement] = STATE(30), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(30), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(30), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(531), - [aux_sym_preproc_include_token1] = ACTIONS(533), - [aux_sym_preproc_def_token1] = ACTIONS(535), - [aux_sym_preproc_if_token1] = ACTIONS(537), - [aux_sym_preproc_if_token2] = ACTIONS(757), - [aux_sym_preproc_ifdef_token1] = ACTIONS(541), - [aux_sym_preproc_ifdef_token2] = ACTIONS(541), - [sym_preproc_directive] = ACTIONS(543), + [47] = { + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -23682,10 +23688,10 @@ 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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), - [anon_sym_extern] = ACTIONS(551), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), @@ -23695,7 +23701,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(39), [anon_sym___thiscall] = ACTIONS(39), [anon_sym___vectorcall] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(755), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -23721,19 +23728,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(479), + [aux_sym_preproc_include_token1] = ACTIONS(481), + [aux_sym_preproc_def_token1] = ACTIONS(483), + [aux_sym_preproc_if_token1] = ACTIONS(485), + [aux_sym_preproc_ifdef_token1] = ACTIONS(487), + [aux_sym_preproc_ifdef_token2] = ACTIONS(487), + [sym_preproc_directive] = ACTIONS(489), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), + [anon_sym_extern] = ACTIONS(497), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(39), + [anon_sym___clrcall] = ACTIONS(39), + [anon_sym___stdcall] = ACTIONS(39), + [anon_sym___fastcall] = ACTIONS(39), + [anon_sym___thiscall] = ACTIONS(39), + [anon_sym___vectorcall] = ACTIONS(39), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(757), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -23764,77 +23939,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [49] = { - [sym_preproc_include] = STATE(46), - [sym_preproc_def] = STATE(46), - [sym_preproc_function_def] = STATE(46), - [sym_preproc_call] = STATE(46), - [sym_preproc_if] = STATE(46), - [sym_preproc_ifdef] = STATE(46), - [sym_function_definition] = STATE(46), - [sym__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(46), - [sym_type_definition] = STATE(46), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(46), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(46), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(46), - [sym_labeled_statement] = STATE(46), - [sym_expression_statement] = STATE(46), - [sym_if_statement] = STATE(46), - [sym_switch_statement] = STATE(46), - [sym_case_statement] = STATE(46), - [sym_while_statement] = STATE(46), - [sym_do_statement] = STATE(46), - [sym_for_statement] = STATE(46), - [sym_return_statement] = STATE(46), - [sym_break_statement] = STATE(46), - [sym_continue_statement] = STATE(46), - [sym_goto_statement] = STATE(46), - [sym_seh_try_statement] = STATE(46), - [sym_seh_leave_statement] = STATE(46), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(46), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(46), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -23932,77 +24107,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [50] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(39), - [sym_seh_leave_statement] = STATE(39), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(39), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(34), + [sym_type_definition] = STATE(34), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(34), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(34), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(34), + [sym_seh_leave_statement] = STATE(34), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(34), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(34), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24100,77 +24275,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [51] = { - [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__old_style_function_definition] = STATE(434), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1475), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(857), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1129), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(33), - [sym_seh_leave_statement] = STATE(33), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym__empty_declaration] = STATE(33), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [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__old_style_function_definition] = STATE(424), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1500), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(879), + [sym_compound_statement] = STATE(49), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(49), + [sym_seh_leave_statement] = STATE(49), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym__empty_declaration] = STATE(49), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(479), [aux_sym_preproc_include_token1] = ACTIONS(481), [aux_sym_preproc_def_token1] = ACTIONS(483), @@ -24275,24 +24450,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(472), + [sym__old_style_function_definition] = STATE(485), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1477), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1506), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(856), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(884), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1124), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1156), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -24306,36 +24481,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1306), - [sym__expression_not_binary] = STATE(1303), - [sym__string] = STATE(1303), - [sym_conditional_expression] = STATE(1303), - [sym_assignment_expression] = STATE(1303), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(1303), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(1303), - [sym_cast_expression] = STATE(1303), - [sym_sizeof_expression] = STATE(1303), - [sym_alignof_expression] = STATE(1303), - [sym_offsetof_expression] = STATE(1303), - [sym_generic_expression] = STATE(1303), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(1303), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(1303), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(1303), - [sym_concatenated_string] = STATE(1303), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(1303), + [sym__expression] = STATE(1344), + [sym__expression_not_binary] = STATE(1342), + [sym__string] = STATE(1342), + [sym_conditional_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1342), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(1342), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(1342), + [sym_cast_expression] = STATE(1342), + [sym_sizeof_expression] = STATE(1342), + [sym_alignof_expression] = STATE(1342), + [sym_offsetof_expression] = STATE(1342), + [sym_generic_expression] = STATE(1342), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(1342), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(1342), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(1342), + [sym_concatenated_string] = STATE(1342), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(1342), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [ts_builtin_sym_end] = ACTIONS(765), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -24437,24 +24612,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_if] = STATE(53), [sym_preproc_ifdef] = STATE(53), [sym_function_definition] = STATE(53), - [sym__old_style_function_definition] = STATE(472), + [sym__old_style_function_definition] = STATE(485), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1477), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1506), [sym_linkage_specification] = STATE(53), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_call_modifier] = STATE(856), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_call_modifier] = STATE(884), [sym_compound_statement] = STATE(53), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1124), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1156), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(53), [sym_labeled_statement] = STATE(53), [sym__top_level_expression_statement] = STATE(53), @@ -24468,36 +24643,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(53), [sym_continue_statement] = STATE(53), [sym_goto_statement] = STATE(53), - [sym__expression] = STATE(1306), - [sym__expression_not_binary] = STATE(1303), - [sym__string] = STATE(1303), - [sym_conditional_expression] = STATE(1303), - [sym_assignment_expression] = STATE(1303), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(1303), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(1303), - [sym_cast_expression] = STATE(1303), - [sym_sizeof_expression] = STATE(1303), - [sym_alignof_expression] = STATE(1303), - [sym_offsetof_expression] = STATE(1303), - [sym_generic_expression] = STATE(1303), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(1303), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(1303), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(1303), - [sym_concatenated_string] = STATE(1303), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(1303), + [sym__expression] = STATE(1344), + [sym__expression_not_binary] = STATE(1342), + [sym__string] = STATE(1342), + [sym_conditional_expression] = STATE(1342), + [sym_assignment_expression] = STATE(1342), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(1342), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(1342), + [sym_cast_expression] = STATE(1342), + [sym_sizeof_expression] = STATE(1342), + [sym_alignof_expression] = STATE(1342), + [sym_offsetof_expression] = STATE(1342), + [sym_generic_expression] = STATE(1342), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(1342), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(1342), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(1342), + [sym_concatenated_string] = STATE(1342), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(1342), [sym__empty_declaration] = STATE(53), - [sym_macro_type_specifier] = STATE(1083), + [sym_macro_type_specifier] = STATE(1137), [aux_sym_translation_unit_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [ts_builtin_sym_end] = ACTIONS(767), [sym_identifier] = ACTIONS(769), [aux_sym_preproc_include_token1] = ACTIONS(772), @@ -24592,238 +24767,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [54] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1500), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(54), + [sym_declaration] = STATE(57), + [sym_type_definition] = STATE(57), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1513), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(57), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(57), + [sym_seh_leave_statement] = STATE(57), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(57), [sym_identifier] = ACTIONS(910), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_if_token2] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [aux_sym_preproc_else_token1] = ACTIONS(913), - [aux_sym_preproc_elif_token1] = ACTIONS(913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(913), - [aux_sym_preproc_elifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(927), - [anon_sym___extension__] = ACTIONS(930), - [anon_sym_typedef] = ACTIONS(933), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(948), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(969), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(975), - [anon_sym_do] = ACTIONS(978), - [anon_sym_for] = ACTIONS(981), - [anon_sym_return] = ACTIONS(984), - [anon_sym_break] = ACTIONS(987), - [anon_sym_continue] = ACTIONS(990), - [anon_sym_goto] = ACTIONS(993), - [anon_sym___try] = ACTIONS(996), - [anon_sym___leave] = ACTIONS(999), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token1] = ACTIONS(912), + [aux_sym_preproc_elifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym___extension__] = ACTIONS(123), + [anon_sym_typedef] = ACTIONS(125), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(131), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, [55] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1500), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token2] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [aux_sym_preproc_else_token1] = ACTIONS(1037), - [aux_sym_preproc_elif_token1] = ACTIONS(1037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1513), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [aux_sym_preproc_else_token1] = ACTIONS(914), + [aux_sym_preproc_elif_token1] = ACTIONS(914), + [aux_sym_preproc_elifdef_token1] = ACTIONS(914), + [aux_sym_preproc_elifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24838,12 +25013,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -24871,10 +25046,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -24914,77 +25089,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [56] = { - [sym_declaration] = STATE(54), - [sym_type_definition] = STATE(54), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1500), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(54), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(54), - [sym_seh_leave_statement] = STATE(54), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(54), - [sym_identifier] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [aux_sym_preproc_else_token1] = ACTIONS(1039), - [aux_sym_preproc_elif_token1] = ACTIONS(1039), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1513), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(55), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(55), + [sym_seh_leave_statement] = STATE(55), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(55), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [aux_sym_preproc_else_token1] = ACTIONS(916), + [aux_sym_preproc_elif_token1] = ACTIONS(916), + [aux_sym_preproc_elifdef_token1] = ACTIONS(916), + [aux_sym_preproc_elifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -24999,12 +25174,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25032,10 +25207,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -25075,77 +25250,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [57] = { - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1500), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(55), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(55), - [sym_seh_leave_statement] = STATE(55), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(55), - [sym_identifier] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [aux_sym_preproc_else_token1] = ACTIONS(1041), - [aux_sym_preproc_elif_token1] = ACTIONS(1041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1513), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(910), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [aux_sym_preproc_else_token1] = ACTIONS(918), + [aux_sym_preproc_elif_token1] = ACTIONS(918), + [aux_sym_preproc_elifdef_token1] = ACTIONS(918), + [aux_sym_preproc_elifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25160,12 +25335,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25193,10 +25368,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(918), [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), [anon_sym_while] = ACTIONS(139), [anon_sym_do] = ACTIONS(141), [anon_sym_for] = ACTIONS(143), @@ -25236,182 +25411,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [58] = { - [sym_declaration] = STATE(56), - [sym_type_definition] = STATE(56), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1500), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(56), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(56), - [sym_seh_leave_statement] = STATE(56), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(56), - [sym_identifier] = ACTIONS(1035), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [aux_sym_preproc_else_token1] = ACTIONS(1043), - [aux_sym_preproc_elif_token1] = ACTIONS(1043), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym___extension__] = ACTIONS(123), - [anon_sym_typedef] = ACTIONS(125), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(131), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_declaration] = STATE(58), + [sym_type_definition] = STATE(58), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1513), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(58), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(58), + [sym_seh_leave_statement] = STATE(58), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(58), + [sym_identifier] = ACTIONS(920), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_if_token2] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [aux_sym_preproc_else_token1] = ACTIONS(923), + [aux_sym_preproc_elif_token1] = ACTIONS(923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym___extension__] = ACTIONS(940), + [anon_sym_typedef] = ACTIONS(943), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(952), + [anon_sym___declspec] = ACTIONS(955), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym___inline] = ACTIONS(946), + [anon_sym___inline__] = ACTIONS(946), + [anon_sym___forceinline] = ACTIONS(946), + [anon_sym_thread_local] = ACTIONS(946), + [anon_sym___thread] = ACTIONS(946), + [anon_sym_const] = ACTIONS(964), + [anon_sym_constexpr] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_noreturn] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(979), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(982), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_while] = ACTIONS(985), + [anon_sym_do] = ACTIONS(988), + [anon_sym_for] = ACTIONS(991), + [anon_sym_return] = ACTIONS(994), + [anon_sym_break] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(1000), + [anon_sym_goto] = ACTIONS(1003), + [anon_sym___try] = ACTIONS(1006), + [anon_sym___leave] = ACTIONS(1009), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1015), + [anon_sym___alignof__] = ACTIONS(1018), + [anon_sym___alignof] = ACTIONS(1018), + [anon_sym__alignof] = ACTIONS(1018), + [anon_sym_alignof] = ACTIONS(1018), + [anon_sym__Alignof] = ACTIONS(1018), + [anon_sym_offsetof] = ACTIONS(1021), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1027), + [anon_sym___asm__] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_u_SQUOTE] = ACTIONS(1033), + [anon_sym_U_SQUOTE] = ACTIONS(1033), + [anon_sym_u8_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [anon_sym_NULL] = ACTIONS(1042), + [anon_sym_nullptr] = ACTIONS(1042), [sym_comment] = ACTIONS(3), }, [59] = { [sym_declaration] = STATE(62), [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1488), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1520), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), [sym_compound_statement] = STATE(62), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(62), [sym_labeled_statement] = STATE(62), [sym_expression_statement] = STATE(62), @@ -25426,46 +25601,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(62), [sym_seh_try_statement] = STATE(62), [sym_seh_leave_statement] = STATE(62), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [aux_sym_case_statement_repeat1] = STATE(62), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [aux_sym_preproc_else_token1] = ACTIONS(1043), - [aux_sym_preproc_elif_token1] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [aux_sym_preproc_else_token1] = ACTIONS(916), + [aux_sym_preproc_elif_token1] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25480,12 +25655,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25513,10 +25688,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -25556,75 +25731,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [60] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1488), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(63), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1520), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(60), + [sym_seh_leave_statement] = STATE(60), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(60), + [sym_identifier] = ACTIONS(1047), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_if_token2] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [aux_sym_preproc_else_token1] = ACTIONS(923), + [aux_sym_preproc_elif_token1] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym___extension__] = ACTIONS(1053), + [anon_sym_typedef] = ACTIONS(1056), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(952), + [anon_sym___declspec] = ACTIONS(955), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1059), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym___inline] = ACTIONS(946), + [anon_sym___inline__] = ACTIONS(946), + [anon_sym___forceinline] = ACTIONS(946), + [anon_sym_thread_local] = ACTIONS(946), + [anon_sym___thread] = ACTIONS(946), + [anon_sym_const] = ACTIONS(964), + [anon_sym_constexpr] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_noreturn] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(1065), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_while] = ACTIONS(1068), + [anon_sym_do] = ACTIONS(1071), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1077), + [anon_sym_break] = ACTIONS(1080), + [anon_sym_continue] = ACTIONS(1083), + [anon_sym_goto] = ACTIONS(1086), + [anon_sym___try] = ACTIONS(1089), + [anon_sym___leave] = ACTIONS(1092), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1015), + [anon_sym___alignof__] = ACTIONS(1018), + [anon_sym___alignof] = ACTIONS(1018), + [anon_sym__alignof] = ACTIONS(1018), + [anon_sym_alignof] = ACTIONS(1018), + [anon_sym__Alignof] = ACTIONS(1018), + [anon_sym_offsetof] = ACTIONS(1021), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1027), + [anon_sym___asm__] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_u_SQUOTE] = ACTIONS(1033), + [anon_sym_U_SQUOTE] = ACTIONS(1033), + [anon_sym_u8_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [anon_sym_NULL] = ACTIONS(1042), + [anon_sym_nullptr] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + }, + [61] = { + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1520), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(60), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(60), + [sym_seh_leave_statement] = STATE(60), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(60), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token2] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [aux_sym_preproc_else_token1] = ACTIONS(1037), - [aux_sym_preproc_elif_token1] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [aux_sym_preproc_else_token1] = ACTIONS(918), + [aux_sym_preproc_elif_token1] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25639,12 +25973,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25672,10 +26006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1037), + [anon_sym_else] = ACTIONS(918), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -25714,22 +26048,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [61] = { + [62] = { [sym_declaration] = STATE(60), [sym_type_definition] = STATE(60), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1488), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1520), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), [sym_compound_statement] = STATE(60), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(60), [sym_labeled_statement] = STATE(60), [sym_expression_statement] = STATE(60), @@ -25744,46 +26078,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(60), [sym_seh_try_statement] = STATE(60), [sym_seh_leave_statement] = STATE(60), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [aux_sym_case_statement_repeat1] = STATE(60), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [aux_sym_preproc_else_token1] = ACTIONS(1041), - [aux_sym_preproc_elif_token1] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [aux_sym_preproc_else_token1] = ACTIONS(914), + [aux_sym_preproc_elif_token1] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25798,12 +26132,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25831,10 +26165,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -25873,76 +26207,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [62] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1488), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(63), + [63] = { + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1520), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(61), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(61), + [sym_seh_leave_statement] = STATE(61), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(61), [sym_identifier] = ACTIONS(1045), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [aux_sym_preproc_else_token1] = ACTIONS(1039), - [aux_sym_preproc_elif_token1] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [aux_sym_preproc_else_token1] = ACTIONS(912), + [aux_sym_preproc_elif_token1] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -25957,12 +26291,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), @@ -25990,10 +26324,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(203), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), [anon_sym_while] = ACTIONS(211), [anon_sym_do] = ACTIONS(213), [anon_sym_for] = ACTIONS(215), @@ -26032,233 +26366,545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [63] = { - [sym_declaration] = STATE(63), - [sym_type_definition] = STATE(63), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1488), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(63), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(63), - [sym_labeled_statement] = STATE(63), - [sym_expression_statement] = STATE(63), - [sym_if_statement] = STATE(63), - [sym_switch_statement] = STATE(63), - [sym_while_statement] = STATE(63), - [sym_do_statement] = STATE(63), - [sym_for_statement] = STATE(63), - [sym_return_statement] = STATE(63), - [sym_break_statement] = STATE(63), - [sym_continue_statement] = STATE(63), - [sym_goto_statement] = STATE(63), - [sym_seh_try_statement] = STATE(63), - [sym_seh_leave_statement] = STATE(63), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(63), - [sym_identifier] = ACTIONS(1047), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_if_token2] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [aux_sym_preproc_else_token1] = ACTIONS(913), - [aux_sym_preproc_elif_token1] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1050), - [anon_sym___extension__] = ACTIONS(1053), - [anon_sym_typedef] = ACTIONS(1056), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1059), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1065), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1068), - [anon_sym_do] = ACTIONS(1071), - [anon_sym_for] = ACTIONS(1074), - [anon_sym_return] = ACTIONS(1077), - [anon_sym_break] = ACTIONS(1080), - [anon_sym_continue] = ACTIONS(1083), - [anon_sym_goto] = ACTIONS(1086), - [anon_sym___try] = ACTIONS(1089), - [anon_sym___leave] = ACTIONS(1092), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), + [64] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1514), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1095), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym___extension__] = ACTIONS(1101), + [anon_sym_typedef] = ACTIONS(1104), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(952), + [anon_sym___declspec] = ACTIONS(955), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym___inline] = ACTIONS(946), + [anon_sym___inline__] = ACTIONS(946), + [anon_sym___forceinline] = ACTIONS(946), + [anon_sym_thread_local] = ACTIONS(946), + [anon_sym___thread] = ACTIONS(946), + [anon_sym_const] = ACTIONS(964), + [anon_sym_constexpr] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_noreturn] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(1112), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(1115), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_while] = ACTIONS(1118), + [anon_sym_do] = ACTIONS(1121), + [anon_sym_for] = ACTIONS(1124), + [anon_sym_return] = ACTIONS(1127), + [anon_sym_break] = ACTIONS(1130), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_goto] = ACTIONS(1136), + [anon_sym___try] = ACTIONS(1139), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1015), + [anon_sym___alignof__] = ACTIONS(1018), + [anon_sym___alignof] = ACTIONS(1018), + [anon_sym__alignof] = ACTIONS(1018), + [anon_sym_alignof] = ACTIONS(1018), + [anon_sym__Alignof] = ACTIONS(1018), + [anon_sym_offsetof] = ACTIONS(1021), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1027), + [anon_sym___asm__] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_u_SQUOTE] = ACTIONS(1033), + [anon_sym_U_SQUOTE] = ACTIONS(1033), + [anon_sym_u8_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [anon_sym_NULL] = ACTIONS(1042), + [anon_sym_nullptr] = ACTIONS(1042), [sym_comment] = ACTIONS(3), }, - [64] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(1095), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [65] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1110), + [sym_identifier] = ACTIONS(1145), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(952), + [anon_sym___declspec] = ACTIONS(955), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym___inline] = ACTIONS(946), + [anon_sym___inline__] = ACTIONS(946), + [anon_sym___forceinline] = ACTIONS(946), + [anon_sym_thread_local] = ACTIONS(946), + [anon_sym___thread] = ACTIONS(946), + [anon_sym_const] = ACTIONS(964), + [anon_sym_constexpr] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_noreturn] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(1160), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_while] = ACTIONS(1166), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1172), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1184), + [anon_sym___try] = ACTIONS(1187), + [anon_sym___leave] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1015), + [anon_sym___alignof__] = ACTIONS(1018), + [anon_sym___alignof] = ACTIONS(1018), + [anon_sym__alignof] = ACTIONS(1018), + [anon_sym_alignof] = ACTIONS(1018), + [anon_sym__Alignof] = ACTIONS(1018), + [anon_sym_offsetof] = ACTIONS(1021), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1027), + [anon_sym___asm__] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_u_SQUOTE] = ACTIONS(1033), + [anon_sym_U_SQUOTE] = ACTIONS(1033), + [anon_sym_u8_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [anon_sym_NULL] = ACTIONS(1042), + [anon_sym_nullptr] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + }, + [66] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1519), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1193), + [aux_sym_preproc_include_token1] = ACTIONS(923), + [aux_sym_preproc_def_token1] = ACTIONS(923), + [aux_sym_preproc_if_token1] = ACTIONS(923), + [aux_sym_preproc_if_token2] = ACTIONS(923), + [aux_sym_preproc_ifdef_token1] = ACTIONS(923), + [aux_sym_preproc_ifdef_token2] = ACTIONS(923), + [sym_preproc_directive] = ACTIONS(923), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym___extension__] = ACTIONS(1199), + [anon_sym_typedef] = ACTIONS(1202), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(952), + [anon_sym___declspec] = ACTIONS(955), + [anon_sym___cdecl] = ACTIONS(923), + [anon_sym___clrcall] = ACTIONS(923), + [anon_sym___stdcall] = ACTIONS(923), + [anon_sym___fastcall] = ACTIONS(923), + [anon_sym___thiscall] = ACTIONS(923), + [anon_sym___vectorcall] = ACTIONS(923), + [anon_sym_LBRACE] = ACTIONS(1205), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym___inline] = ACTIONS(946), + [anon_sym___inline__] = ACTIONS(946), + [anon_sym___forceinline] = ACTIONS(946), + [anon_sym_thread_local] = ACTIONS(946), + [anon_sym___thread] = ACTIONS(946), + [anon_sym_const] = ACTIONS(964), + [anon_sym_constexpr] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_noreturn] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(1211), + [anon_sym_case] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_while] = ACTIONS(1214), + [anon_sym_do] = ACTIONS(1217), + [anon_sym_for] = ACTIONS(1220), + [anon_sym_return] = ACTIONS(1223), + [anon_sym_break] = ACTIONS(1226), + [anon_sym_continue] = ACTIONS(1229), + [anon_sym_goto] = ACTIONS(1232), + [anon_sym___try] = ACTIONS(1235), + [anon_sym___leave] = ACTIONS(1238), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1015), + [anon_sym___alignof__] = ACTIONS(1018), + [anon_sym___alignof] = ACTIONS(1018), + [anon_sym__alignof] = ACTIONS(1018), + [anon_sym_alignof] = ACTIONS(1018), + [anon_sym__Alignof] = ACTIONS(1018), + [anon_sym_offsetof] = ACTIONS(1021), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1027), + [anon_sym___asm__] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_u_SQUOTE] = ACTIONS(1033), + [anon_sym_U_SQUOTE] = ACTIONS(1033), + [anon_sym_u8_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [anon_sym_NULL] = ACTIONS(1042), + [anon_sym_nullptr] = ACTIONS(1042), + [sym_comment] = ACTIONS(3), + }, + [67] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1519), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_if_token2] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26266,20 +26912,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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym___extension__] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(547), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26305,20 +26951,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(553), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26348,22 +26994,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [65] = { + [68] = { [sym_declaration] = STATE(74), [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1490), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), [sym_compound_statement] = STATE(74), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(74), [sym_labeled_statement] = STATE(74), [sym_expression_statement] = STATE(74), @@ -26378,44 +27024,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(74), [sym_seh_try_statement] = STATE(74), [sym_seh_leave_statement] = STATE(74), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [aux_sym_case_statement_repeat1] = STATE(74), - [sym_identifier] = ACTIONS(1105), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token2] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [ts_builtin_sym_end] = ACTIONS(1243), + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26423,20 +27069,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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26462,20 +27108,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -26505,73 +27151,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [66] = { - [sym_declaration] = STATE(73), - [sym_type_definition] = STATE(73), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(73), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(73), - [sym_seh_leave_statement] = STATE(73), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(73), - [sym_identifier] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [69] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1514), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -26586,14 +27232,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1109), + [anon_sym_RBRACE] = ACTIONS(1255), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -26620,10 +27266,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1043), + [anon_sym_else] = ACTIONS(918), [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), [anon_sym_while] = ACTIONS(511), [anon_sym_do] = ACTIONS(513), [anon_sym_for] = ACTIONS(515), @@ -26662,388 +27308,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [67] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1490), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1111), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_if_token2] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1114), - [anon_sym___extension__] = ACTIONS(1117), - [anon_sym_typedef] = ACTIONS(1120), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1123), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1126), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1129), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1132), - [anon_sym_do] = ACTIONS(1135), - [anon_sym_for] = ACTIONS(1138), - [anon_sym_return] = ACTIONS(1141), - [anon_sym_break] = ACTIONS(1144), - [anon_sym_continue] = ACTIONS(1147), - [anon_sym_goto] = ACTIONS(1150), - [anon_sym___try] = ACTIONS(1153), - [anon_sym___leave] = ACTIONS(1156), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [68] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(1159), - [sym_identifier] = ACTIONS(1161), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1164), - [anon_sym___extension__] = ACTIONS(1167), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1176), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1182), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1188), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1203), - [anon_sym___leave] = ACTIONS(1206), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [69] = { - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1490), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(72), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(72), - [sym_seh_leave_statement] = STATE(72), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(1105), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token2] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [70] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1255), + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(918), + [aux_sym_preproc_def_token1] = ACTIONS(918), + [aux_sym_preproc_if_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token1] = ACTIONS(918), + [aux_sym_preproc_ifdef_token2] = ACTIONS(918), + [sym_preproc_directive] = ACTIONS(918), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27051,20 +27383,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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym___cdecl] = ACTIONS(918), + [anon_sym___clrcall] = ACTIONS(918), + [anon_sym___stdcall] = ACTIONS(918), + [anon_sym___fastcall] = ACTIONS(918), + [anon_sym___thiscall] = ACTIONS(918), + [anon_sym___vectorcall] = ACTIONS(918), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27090,20 +27422,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(918), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27133,74 +27465,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [70] = { - [sym_declaration] = STATE(75), - [sym_type_definition] = STATE(75), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(75), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(75), - [sym_seh_leave_statement] = STATE(75), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(75), - [ts_builtin_sym_end] = ACTIONS(1209), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [71] = { + [sym_declaration] = STATE(66), + [sym_type_definition] = STATE(66), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1519), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(66), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(66), + [sym_seh_leave_statement] = STATE(66), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(66), + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_if_token2] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27208,20 +27540,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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym___extension__] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(547), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27247,20 +27579,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1041), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(553), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27290,73 +27622,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [71] = { - [sym_declaration] = STATE(78), - [sym_type_definition] = STATE(78), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(78), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(78), - [sym_seh_leave_statement] = STATE(78), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(78), - [sym_identifier] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(1041), - [aux_sym_preproc_def_token1] = ACTIONS(1041), - [aux_sym_preproc_if_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1041), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1041), - [sym_preproc_directive] = ACTIONS(1041), + [72] = { + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1514), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(64), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(64), + [sym_seh_leave_statement] = STATE(64), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(64), + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27371,14 +27703,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1041), - [anon_sym___clrcall] = ACTIONS(1041), - [anon_sym___stdcall] = ACTIONS(1041), - [anon_sym___fastcall] = ACTIONS(1041), - [anon_sym___thiscall] = ACTIONS(1041), - [anon_sym___vectorcall] = ACTIONS(1041), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_RBRACE] = ACTIONS(1257), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27405,10 +27737,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_else] = ACTIONS(914), [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1041), - [anon_sym_default] = ACTIONS(1041), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), [anon_sym_while] = ACTIONS(511), [anon_sym_do] = ACTIONS(513), [anon_sym_for] = ACTIONS(515), @@ -27447,74 +27779,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [72] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1490), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1105), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token2] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [73] = { + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(70), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(70), + [sym_labeled_statement] = STATE(70), + [sym_expression_statement] = STATE(70), + [sym_if_statement] = STATE(70), + [sym_switch_statement] = STATE(70), + [sym_while_statement] = STATE(70), + [sym_do_statement] = STATE(70), + [sym_for_statement] = STATE(70), + [sym_return_statement] = STATE(70), + [sym_break_statement] = STATE(70), + [sym_continue_statement] = STATE(70), + [sym_goto_statement] = STATE(70), + [sym_seh_try_statement] = STATE(70), + [sym_seh_leave_statement] = STATE(70), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(70), + [ts_builtin_sym_end] = ACTIONS(1259), + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27522,20 +27854,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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27561,20 +27893,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27604,73 +27936,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [73] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), + [74] = { + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(65), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(65), + [sym_seh_leave_statement] = STATE(65), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(1039), - [aux_sym_preproc_def_token1] = ACTIONS(1039), - [aux_sym_preproc_if_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1039), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1039), - [sym_preproc_directive] = ACTIONS(1039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(65), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1245), + [aux_sym_preproc_include_token1] = ACTIONS(914), + [aux_sym_preproc_def_token1] = ACTIONS(914), + [aux_sym_preproc_if_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token1] = ACTIONS(914), + [aux_sym_preproc_ifdef_token2] = ACTIONS(914), + [sym_preproc_directive] = ACTIONS(914), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27678,21 +28011,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(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1039), - [anon_sym___clrcall] = ACTIONS(1039), - [anon_sym___stdcall] = ACTIONS(1039), - [anon_sym___fastcall] = ACTIONS(1039), - [anon_sym___thiscall] = ACTIONS(1039), - [anon_sym___vectorcall] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1095), + [anon_sym___cdecl] = ACTIONS(914), + [anon_sym___clrcall] = ACTIONS(914), + [anon_sym___stdcall] = ACTIONS(914), + [anon_sym___fastcall] = ACTIONS(914), + [anon_sym___thiscall] = ACTIONS(914), + [anon_sym___vectorcall] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27718,20 +28050,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1039), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1039), - [anon_sym_default] = ACTIONS(1039), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(57), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27761,74 +28093,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [74] = { - [sym_declaration] = STATE(67), - [sym_type_definition] = STATE(67), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1490), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(67), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(67), - [sym_labeled_statement] = STATE(67), - [sym_expression_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_switch_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_do_statement] = STATE(67), - [sym_for_statement] = STATE(67), - [sym_return_statement] = STATE(67), - [sym_break_statement] = STATE(67), - [sym_continue_statement] = STATE(67), - [sym_goto_statement] = STATE(67), - [sym_seh_try_statement] = STATE(67), - [sym_seh_leave_statement] = STATE(67), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(67), - [sym_identifier] = ACTIONS(1105), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token2] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [75] = { + [sym_declaration] = STATE(72), + [sym_type_definition] = STATE(72), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1514), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(72), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(72), + [sym_seh_leave_statement] = STATE(72), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(72), + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27836,20 +28167,21 @@ 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(545), - [anon_sym___extension__] = ACTIONS(547), - [anon_sym_typedef] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(553), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -27875,20 +28207,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(555), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -27918,74 +28250,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [75] = { - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(68), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(68), - [sym_seh_leave_statement] = STATE(68), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(68), - [ts_builtin_sym_end] = ACTIONS(1211), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [76] = { + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1514), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(69), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(69), + [sym_seh_leave_statement] = STATE(69), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(69), + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -27993,20 +28324,21 @@ 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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(493), + [anon_sym_typedef] = ACTIONS(495), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_RBRACE] = ACTIONS(1259), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28032,20 +28364,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(503), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28075,231 +28407,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [76] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1213), - [aux_sym_preproc_include_token1] = ACTIONS(913), - [aux_sym_preproc_def_token1] = ACTIONS(913), - [aux_sym_preproc_if_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token1] = ACTIONS(913), - [aux_sym_preproc_ifdef_token2] = ACTIONS(913), - [sym_preproc_directive] = ACTIONS(913), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1219), - [anon_sym_typedef] = ACTIONS(1222), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym___cdecl] = ACTIONS(913), - [anon_sym___clrcall] = ACTIONS(913), - [anon_sym___stdcall] = ACTIONS(913), - [anon_sym___fastcall] = ACTIONS(913), - [anon_sym___thiscall] = ACTIONS(913), - [anon_sym___vectorcall] = ACTIONS(913), - [anon_sym_LBRACE] = ACTIONS(1225), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1231), - [anon_sym_case] = ACTIONS(913), - [anon_sym_default] = ACTIONS(913), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_do] = ACTIONS(1237), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1243), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1249), - [anon_sym_goto] = ACTIONS(1252), - [anon_sym___try] = ACTIONS(1255), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, [77] = { - [sym_declaration] = STATE(64), - [sym_type_definition] = STATE(64), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(64), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(64), - [sym_seh_leave_statement] = STATE(64), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(64), - [ts_builtin_sym_end] = ACTIONS(1109), - [sym_identifier] = ACTIONS(1097), - [aux_sym_preproc_include_token1] = ACTIONS(1043), - [aux_sym_preproc_def_token1] = ACTIONS(1043), - [aux_sym_preproc_if_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1043), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1043), - [sym_preproc_directive] = ACTIONS(1043), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1519), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(71), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(71), + [sym_seh_leave_statement] = STATE(71), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(71), + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(916), + [aux_sym_preproc_def_token1] = ACTIONS(916), + [aux_sym_preproc_if_token1] = ACTIONS(916), + [aux_sym_preproc_if_token2] = ACTIONS(916), + [aux_sym_preproc_ifdef_token1] = ACTIONS(916), + [aux_sym_preproc_ifdef_token2] = ACTIONS(916), + [sym_preproc_directive] = ACTIONS(916), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28307,20 +28482,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(1099), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym___extension__] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(547), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1043), - [anon_sym___clrcall] = ACTIONS(1043), - [anon_sym___stdcall] = ACTIONS(1043), - [anon_sym___fastcall] = ACTIONS(1043), - [anon_sym___thiscall] = ACTIONS(1043), - [anon_sym___vectorcall] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym___cdecl] = ACTIONS(916), + [anon_sym___clrcall] = ACTIONS(916), + [anon_sym___stdcall] = ACTIONS(916), + [anon_sym___fastcall] = ACTIONS(916), + [anon_sym___thiscall] = ACTIONS(916), + [anon_sym___vectorcall] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28346,20 +28521,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1043), - [anon_sym_default] = ACTIONS(1043), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_if] = ACTIONS(553), + [anon_sym_else] = ACTIONS(916), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(916), + [anon_sym_default] = ACTIONS(916), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28390,72 +28565,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [78] = { - [sym_declaration] = STATE(76), - [sym_type_definition] = STATE(76), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1503), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(76), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(76), - [sym_seh_leave_statement] = STATE(76), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(1107), - [aux_sym_preproc_include_token1] = ACTIONS(1037), - [aux_sym_preproc_def_token1] = ACTIONS(1037), - [aux_sym_preproc_if_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1037), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1037), - [sym_preproc_directive] = ACTIONS(1037), + [sym_declaration] = STATE(67), + [sym_type_definition] = STATE(67), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1519), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(67), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(67), + [sym_labeled_statement] = STATE(67), + [sym_expression_statement] = STATE(67), + [sym_if_statement] = STATE(67), + [sym_switch_statement] = STATE(67), + [sym_while_statement] = STATE(67), + [sym_do_statement] = STATE(67), + [sym_for_statement] = STATE(67), + [sym_return_statement] = STATE(67), + [sym_break_statement] = STATE(67), + [sym_continue_statement] = STATE(67), + [sym_goto_statement] = STATE(67), + [sym_seh_try_statement] = STATE(67), + [sym_seh_leave_statement] = STATE(67), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(67), + [sym_identifier] = ACTIONS(1241), + [aux_sym_preproc_include_token1] = ACTIONS(912), + [aux_sym_preproc_def_token1] = ACTIONS(912), + [aux_sym_preproc_if_token1] = ACTIONS(912), + [aux_sym_preproc_if_token2] = ACTIONS(912), + [aux_sym_preproc_ifdef_token1] = ACTIONS(912), + [aux_sym_preproc_ifdef_token2] = ACTIONS(912), + [sym_preproc_directive] = ACTIONS(912), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28463,21 +28639,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(491), - [anon_sym___extension__] = ACTIONS(493), - [anon_sym_typedef] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym___extension__] = ACTIONS(545), + [anon_sym_typedef] = ACTIONS(547), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___cdecl] = ACTIONS(1037), - [anon_sym___clrcall] = ACTIONS(1037), - [anon_sym___stdcall] = ACTIONS(1037), - [anon_sym___fastcall] = ACTIONS(1037), - [anon_sym___thiscall] = ACTIONS(1037), - [anon_sym___vectorcall] = ACTIONS(1037), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym___cdecl] = ACTIONS(912), + [anon_sym___clrcall] = ACTIONS(912), + [anon_sym___stdcall] = ACTIONS(912), + [anon_sym___fastcall] = ACTIONS(912), + [anon_sym___thiscall] = ACTIONS(912), + [anon_sym___vectorcall] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(551), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -28503,20 +28678,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(503), - [anon_sym_else] = ACTIONS(1037), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(1037), - [anon_sym_default] = ACTIONS(1037), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_if] = ACTIONS(553), + [anon_sym_else] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(912), + [anon_sym_default] = ACTIONS(912), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -28547,208 +28722,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [79] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(79), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(81), [sym_identifier] = ACTIONS(1261), - [anon_sym_LPAREN2] = ACTIONS(915), - [anon_sym_BANG] = ACTIONS(918), - [anon_sym_TILDE] = ACTIONS(918), - [anon_sym_DASH] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(921), - [anon_sym_STAR] = ACTIONS(924), - [anon_sym_AMP] = ACTIONS(924), - [anon_sym_SEMI] = ACTIONS(1216), - [anon_sym___extension__] = ACTIONS(1167), - [anon_sym_typedef] = ACTIONS(1170), - [anon_sym_extern] = ACTIONS(936), - [anon_sym___attribute__] = ACTIONS(939), - [anon_sym_LBRACK_LBRACK] = ACTIONS(942), - [anon_sym___declspec] = ACTIONS(945), - [anon_sym_LBRACE] = ACTIONS(1173), - [anon_sym_signed] = ACTIONS(951), - [anon_sym_unsigned] = ACTIONS(951), - [anon_sym_long] = ACTIONS(951), - [anon_sym_short] = ACTIONS(951), - [anon_sym_static] = ACTIONS(936), - [anon_sym_auto] = ACTIONS(936), - [anon_sym_register] = ACTIONS(936), - [anon_sym_inline] = ACTIONS(936), - [anon_sym___inline] = ACTIONS(936), - [anon_sym___inline__] = ACTIONS(936), - [anon_sym___forceinline] = ACTIONS(936), - [anon_sym_thread_local] = ACTIONS(936), - [anon_sym___thread] = ACTIONS(936), - [anon_sym_const] = ACTIONS(954), - [anon_sym_constexpr] = ACTIONS(954), - [anon_sym_volatile] = ACTIONS(954), - [anon_sym_restrict] = ACTIONS(954), - [anon_sym___restrict__] = ACTIONS(954), - [anon_sym__Atomic] = ACTIONS(954), - [anon_sym__Noreturn] = ACTIONS(954), - [anon_sym_noreturn] = ACTIONS(954), - [sym_primitive_type] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(960), - [anon_sym_struct] = ACTIONS(963), - [anon_sym_union] = ACTIONS(966), - [anon_sym_if] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(913), - [anon_sym_switch] = ACTIONS(1179), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1191), - [anon_sym_break] = ACTIONS(1194), - [anon_sym_continue] = ACTIONS(1197), - [anon_sym_goto] = ACTIONS(1200), - [anon_sym___try] = ACTIONS(1273), - [anon_sym___leave] = ACTIONS(1258), - [anon_sym_DASH_DASH] = ACTIONS(1002), - [anon_sym_PLUS_PLUS] = ACTIONS(1002), - [anon_sym_sizeof] = ACTIONS(1005), - [anon_sym___alignof__] = ACTIONS(1008), - [anon_sym___alignof] = ACTIONS(1008), - [anon_sym__alignof] = ACTIONS(1008), - [anon_sym_alignof] = ACTIONS(1008), - [anon_sym__Alignof] = ACTIONS(1008), - [anon_sym_offsetof] = ACTIONS(1011), - [anon_sym__Generic] = ACTIONS(1014), - [anon_sym_asm] = ACTIONS(1017), - [anon_sym___asm__] = ACTIONS(1017), - [sym_number_literal] = ACTIONS(1020), - [anon_sym_L_SQUOTE] = ACTIONS(1023), - [anon_sym_u_SQUOTE] = ACTIONS(1023), - [anon_sym_U_SQUOTE] = ACTIONS(1023), - [anon_sym_u8_SQUOTE] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_L_DQUOTE] = ACTIONS(1026), - [anon_sym_u_DQUOTE] = ACTIONS(1026), - [anon_sym_U_DQUOTE] = ACTIONS(1026), - [anon_sym_u8_DQUOTE] = ACTIONS(1026), - [anon_sym_DQUOTE] = ACTIONS(1026), - [sym_true] = ACTIONS(1029), - [sym_false] = ACTIONS(1029), - [anon_sym_NULL] = ACTIONS(1032), - [anon_sym_nullptr] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - }, - [80] = { - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(83), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_attributed_statement] = STATE(83), - [sym_labeled_statement] = STATE(83), - [sym_expression_statement] = STATE(83), - [sym_if_statement] = STATE(83), - [sym_switch_statement] = STATE(83), - [sym_while_statement] = STATE(83), - [sym_do_statement] = STATE(83), - [sym_for_statement] = STATE(83), - [sym_return_statement] = STATE(83), - [sym_break_statement] = STATE(83), - [sym_continue_statement] = STATE(83), - [sym_goto_statement] = STATE(83), - [sym_seh_try_statement] = STATE(83), - [sym_seh_leave_statement] = STATE(83), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(1276), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28789,17 +28822,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1041), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(918), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym___try] = ACTIONS(1269), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28830,67 +28863,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [81] = { - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), - [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [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_seh_try_statement] = STATE(79), - [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1276), + [80] = { + [sym_declaration] = STATE(83), + [sym_type_definition] = STATE(83), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(83), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_attributed_statement] = STATE(83), + [sym_labeled_statement] = STATE(83), + [sym_expression_statement] = STATE(83), + [sym_if_statement] = STATE(83), + [sym_switch_statement] = STATE(83), + [sym_while_statement] = STATE(83), + [sym_do_statement] = STATE(83), + [sym_for_statement] = STATE(83), + [sym_return_statement] = STATE(83), + [sym_break_statement] = STATE(83), + [sym_continue_statement] = STATE(83), + [sym_goto_statement] = STATE(83), + [sym_seh_try_statement] = STATE(83), + [sym_seh_leave_statement] = STATE(83), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -28931,17 +28964,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1039), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(916), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym___try] = ACTIONS(1269), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -28972,22 +29005,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [82] = { + [81] = { [sym_declaration] = STATE(81), [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), [sym_compound_statement] = STATE(81), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(81), [sym_labeled_statement] = STATE(81), [sym_expression_statement] = STATE(81), @@ -29002,134 +29035,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(81), [sym_seh_try_statement] = STATE(81), [sym_seh_leave_statement] = STATE(81), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [aux_sym_case_statement_repeat1] = STATE(81), - [sym_identifier] = ACTIONS(1276), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym___extension__] = ACTIONS(27), - [anon_sym_typedef] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(45), - [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym___declspec] = ACTIONS(37), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_signed] = ACTIONS(43), - [anon_sym_unsigned] = ACTIONS(43), - [anon_sym_long] = ACTIONS(43), - [anon_sym_short] = ACTIONS(43), - [anon_sym_static] = ACTIONS(45), - [anon_sym_auto] = ACTIONS(45), - [anon_sym_register] = ACTIONS(45), - [anon_sym_inline] = ACTIONS(45), - [anon_sym___inline] = ACTIONS(45), - [anon_sym___inline__] = ACTIONS(45), - [anon_sym___forceinline] = ACTIONS(45), - [anon_sym_thread_local] = ACTIONS(45), - [anon_sym___thread] = ACTIONS(45), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [sym_identifier] = ACTIONS(1271), + [anon_sym_LPAREN2] = ACTIONS(925), + [anon_sym_BANG] = ACTIONS(928), + [anon_sym_TILDE] = ACTIONS(928), + [anon_sym_DASH] = ACTIONS(931), + [anon_sym_PLUS] = ACTIONS(931), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AMP] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(1098), + [anon_sym___extension__] = ACTIONS(1151), + [anon_sym_typedef] = ACTIONS(1154), + [anon_sym_extern] = ACTIONS(946), + [anon_sym___attribute__] = ACTIONS(949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(952), + [anon_sym___declspec] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(1157), + [anon_sym_signed] = ACTIONS(961), + [anon_sym_unsigned] = ACTIONS(961), + [anon_sym_long] = ACTIONS(961), + [anon_sym_short] = ACTIONS(961), + [anon_sym_static] = ACTIONS(946), + [anon_sym_auto] = ACTIONS(946), + [anon_sym_register] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(946), + [anon_sym___inline] = ACTIONS(946), + [anon_sym___inline__] = ACTIONS(946), + [anon_sym___forceinline] = ACTIONS(946), + [anon_sym_thread_local] = ACTIONS(946), + [anon_sym___thread] = ACTIONS(946), + [anon_sym_const] = ACTIONS(964), + [anon_sym_constexpr] = ACTIONS(964), + [anon_sym_volatile] = ACTIONS(964), + [anon_sym_restrict] = ACTIONS(964), + [anon_sym___restrict__] = ACTIONS(964), + [anon_sym__Atomic] = ACTIONS(964), + [anon_sym__Noreturn] = ACTIONS(964), + [anon_sym_noreturn] = ACTIONS(964), + [sym_primitive_type] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(973), + [anon_sym_union] = ACTIONS(976), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(923), + [anon_sym_switch] = ACTIONS(1163), + [anon_sym_while] = ACTIONS(1277), + [anon_sym_do] = ACTIONS(1169), + [anon_sym_for] = ACTIONS(1280), + [anon_sym_return] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1178), + [anon_sym_continue] = ACTIONS(1181), + [anon_sym_goto] = ACTIONS(1184), + [anon_sym___try] = ACTIONS(1283), + [anon_sym___leave] = ACTIONS(1142), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_sizeof] = ACTIONS(1015), + [anon_sym___alignof__] = ACTIONS(1018), + [anon_sym___alignof] = ACTIONS(1018), + [anon_sym__alignof] = ACTIONS(1018), + [anon_sym_alignof] = ACTIONS(1018), + [anon_sym__Alignof] = ACTIONS(1018), + [anon_sym_offsetof] = ACTIONS(1021), + [anon_sym__Generic] = ACTIONS(1024), + [anon_sym_asm] = ACTIONS(1027), + [anon_sym___asm__] = ACTIONS(1027), + [sym_number_literal] = ACTIONS(1030), + [anon_sym_L_SQUOTE] = ACTIONS(1033), + [anon_sym_u_SQUOTE] = ACTIONS(1033), + [anon_sym_U_SQUOTE] = ACTIONS(1033), + [anon_sym_u8_SQUOTE] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_L_DQUOTE] = ACTIONS(1036), + [anon_sym_u_DQUOTE] = ACTIONS(1036), + [anon_sym_U_DQUOTE] = ACTIONS(1036), + [anon_sym_u8_DQUOTE] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_true] = ACTIONS(1039), + [sym_false] = ACTIONS(1039), + [anon_sym_NULL] = ACTIONS(1042), + [anon_sym_nullptr] = ACTIONS(1042), [sym_comment] = ACTIONS(3), }, - [83] = { + [82] = { [sym_declaration] = STATE(79), [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1499), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(505), - [sym_ms_declspec_modifier] = STATE(869), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), [sym_compound_statement] = STATE(79), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), [sym_attributed_statement] = STATE(79), [sym_labeled_statement] = STATE(79), [sym_expression_statement] = STATE(79), @@ -29144,37 +29177,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(79), [sym_seh_try_statement] = STATE(79), [sym_seh_leave_statement] = STATE(79), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [aux_sym_case_statement_repeat1] = STATE(79), - [sym_identifier] = ACTIONS(1276), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29215,17 +29248,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_else] = ACTIONS(1037), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(912), [anon_sym_switch] = ACTIONS(59), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym___try] = ACTIONS(1269), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -29256,50 +29289,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [84] = { - [sym_declaration] = STATE(585), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1495), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__for_statement_body] = STATE(2079), - [sym__expression] = STATE(1257), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2050), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(1286), + [83] = { + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1523), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(530), + [sym_ms_declspec_modifier] = STATE(893), + [sym_compound_statement] = STATE(81), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [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_seh_try_statement] = STATE(81), + [sym_seh_leave_statement] = STATE(81), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [aux_sym_case_statement_repeat1] = STATE(81), + [sym_identifier] = ACTIONS(1261), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -29307,12 +29357,14 @@ 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(1288), - [anon_sym___extension__] = ACTIONS(47), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym___extension__] = ACTIONS(27), + [anon_sym_typedef] = ACTIONS(29), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), [anon_sym___declspec] = ACTIONS(37), + [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), @@ -29338,6 +29390,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(51), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(914), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -29367,49 +29431,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [85] = { - [sym_declaration] = STATE(585), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1495), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__for_statement_body] = STATE(2024), - [sym__expression] = STATE(1257), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2050), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [84] = { + [sym_declaration] = STATE(587), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1518), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__for_statement_body] = STATE(2257), + [sym__expression] = STATE(1254), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(1286), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(1288), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_extern] = ACTIONS(45), + [anon_sym___attribute__] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), + [anon_sym___declspec] = ACTIONS(37), + [anon_sym_signed] = ACTIONS(43), + [anon_sym_unsigned] = ACTIONS(43), + [anon_sym_long] = ACTIONS(43), + [anon_sym_short] = ACTIONS(43), + [anon_sym_static] = ACTIONS(45), + [anon_sym_auto] = ACTIONS(45), + [anon_sym_register] = ACTIONS(45), + [anon_sym_inline] = ACTIONS(45), + [anon_sym___inline] = ACTIONS(45), + [anon_sym___inline__] = ACTIONS(45), + [anon_sym___forceinline] = ACTIONS(45), + [anon_sym_thread_local] = ACTIONS(45), + [anon_sym___thread] = ACTIONS(45), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [85] = { + [sym_declaration] = STATE(587), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1518), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__for_statement_body] = STATE(2202), + [sym__expression] = STATE(1254), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29479,48 +29654,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [86] = { - [sym_declaration] = STATE(585), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1495), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__for_statement_body] = STATE(2047), - [sym__expression] = STATE(1257), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2050), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_declaration] = STATE(587), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1518), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__for_statement_body] = STATE(2176), + [sym__expression] = STATE(1254), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29590,48 +29765,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [87] = { - [sym_declaration] = STATE(585), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1495), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__for_statement_body] = STATE(2128), - [sym__expression] = STATE(1257), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2050), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_declaration] = STATE(587), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1518), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__for_statement_body] = STATE(2122), + [sym__expression] = STATE(1254), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29701,48 +29876,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [88] = { - [sym_declaration] = STATE(585), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1495), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__for_statement_body] = STATE(2102), - [sym__expression] = STATE(1257), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2050), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_declaration] = STATE(587), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1518), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__for_statement_body] = STATE(2276), + [sym__expression] = STATE(1254), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29812,48 +29987,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [89] = { - [sym_declaration] = STATE(585), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1495), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__for_statement_body] = STATE(2048), - [sym__expression] = STATE(1257), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2050), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), + [sym_declaration] = STATE(587), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1518), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__for_statement_body] = STATE(2058), + [sym__expression] = STATE(1254), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2039), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), [sym_identifier] = ACTIONS(1286), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), @@ -29923,7 +30098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [90] = { - [sym_else_clause] = STATE(104), + [sym_else_clause] = STATE(115), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -30128,207 +30303,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [92] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_identifier] = ACTIONS(1304), - [aux_sym_preproc_include_token1] = ACTIONS(1304), - [aux_sym_preproc_def_token1] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1302), - [anon_sym_RPAREN] = ACTIONS(1302), - [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(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [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(1302), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___except] = ACTIONS(1304), - [anon_sym___finally] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [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(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [94] = { @@ -30434,4069 +30609,4172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [95] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [96] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [97] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [anon_sym_COMMA] = ACTIONS(1310), + [anon_sym_RPAREN] = ACTIONS(1310), + [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(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [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(1310), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym___try] = ACTIONS(1312), + [anon_sym___except] = ACTIONS(1312), + [anon_sym___finally] = ACTIONS(1312), + [anon_sym___leave] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [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(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, [98] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [aux_sym_preproc_else_token1] = ACTIONS(1322), - [aux_sym_preproc_elif_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [99] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [99] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [100] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [101] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [102] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [103] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [aux_sym_preproc_else_token1] = ACTIONS(1338), - [aux_sym_preproc_elif_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - }, - [104] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [105] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [104] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [106] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [105] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [107] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [106] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [107] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, [108] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [aux_sym_preproc_else_token1] = ACTIONS(1322), + [aux_sym_preproc_elif_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, [109] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, [110] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, [111] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [112] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [113] = { - [ts_builtin_sym_end] = ACTIONS(1312), - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___except] = ACTIONS(1310), - [anon_sym___finally] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [112] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [114] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [113] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [115] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [114] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [115] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, [116] = { - [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___extension__] = ACTIONS(1370), - [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_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = 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_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, [117] = { - [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___extension__] = ACTIONS(1374), - [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_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = 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(1350), + [sym_identifier] = ACTIONS(1352), + [aux_sym_preproc_include_token1] = ACTIONS(1352), + [aux_sym_preproc_def_token1] = ACTIONS(1352), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_RPAREN] = ACTIONS(1350), + [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(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [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(1350), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___except] = ACTIONS(1352), + [anon_sym___finally] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [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(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, [118] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [aux_sym_preproc_else_token1] = ACTIONS(1354), + [aux_sym_preproc_elif_token1] = ACTIONS(1354), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, [119] = { - [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___extension__] = ACTIONS(1378), - [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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = 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_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [120] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [121] = { - [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___extension__] = ACTIONS(1382), - [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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = 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_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [122] = { - [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___extension__] = ACTIONS(1386), - [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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = 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), + [121] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [123] = { - [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(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [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(1302), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [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(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [122] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [124] = { - [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___extension__] = ACTIONS(1390), - [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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = 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), + [123] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + }, + [124] = { + [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___extension__] = ACTIONS(1370), + [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_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = 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), }, [125] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [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___extension__] = ACTIONS(1374), + [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_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = 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), }, [126] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [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___extension__] = ACTIONS(1378), + [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_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = 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), }, [127] = { - [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___extension__] = ACTIONS(1394), - [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_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = 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_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [128] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [129] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [130] = { - [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___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = 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___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = 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), + [129] = { + [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(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [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(1350), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [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(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [131] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [130] = { + [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___extension__] = ACTIONS(1382), + [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_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = 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), }, - [132] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [131] = { + [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___extension__] = ACTIONS(1386), + [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_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = 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), + }, + [132] = { + [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___extension__] = ACTIONS(1390), + [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_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = 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), }, [133] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [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___extension__] = ACTIONS(1394), + [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_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = 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), }, [134] = { - [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___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = 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), + [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___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = 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___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = 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), + }, + [135] = { + [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___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = 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___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = 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), @@ -34512,7 +34790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1402), [sym_comment] = ACTIONS(3), }, - [135] = { + [136] = { [sym_identifier] = ACTIONS(1406), [aux_sym_preproc_include_token1] = ACTIONS(1406), [aux_sym_preproc_def_token1] = ACTIONS(1406), @@ -34572,6 +34850,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1406), [anon_sym_union] = ACTIONS(1406), [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = ACTIONS(1406), [anon_sym_switch] = ACTIONS(1406), [anon_sym_case] = ACTIONS(1406), [anon_sym_default] = ACTIONS(1406), @@ -34613,7 +34892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1406), [sym_comment] = ACTIONS(3), }, - [136] = { + [137] = { [sym_identifier] = ACTIONS(1410), [aux_sym_preproc_include_token1] = ACTIONS(1410), [aux_sym_preproc_def_token1] = ACTIONS(1410), @@ -34673,6 +34952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1410), [anon_sym_union] = ACTIONS(1410), [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = ACTIONS(1410), [anon_sym_switch] = ACTIONS(1410), [anon_sym_case] = ACTIONS(1410), [anon_sym_default] = ACTIONS(1410), @@ -34714,7 +34994,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1410), [sym_comment] = ACTIONS(3), }, - [137] = { + [138] = { + [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(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [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(1310), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym___try] = ACTIONS(1312), + [anon_sym___leave] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [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(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), + [sym_comment] = ACTIONS(3), + }, + [139] = { [sym_identifier] = ACTIONS(1414), [aux_sym_preproc_include_token1] = ACTIONS(1414), [aux_sym_preproc_def_token1] = ACTIONS(1414), @@ -34815,7 +35197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1414), [sym_comment] = ACTIONS(3), }, - [138] = { + [140] = { [sym_identifier] = ACTIONS(1418), [aux_sym_preproc_include_token1] = ACTIONS(1418), [aux_sym_preproc_def_token1] = ACTIONS(1418), @@ -34916,8 +35298,1725 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1418), [sym_comment] = ACTIONS(3), }, - [139] = { - [sym_else_clause] = STATE(195), + [141] = { + [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___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = 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), + }, + [142] = { + [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___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = 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), + }, + [143] = { + [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___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = 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), + }, + [144] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [145] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [146] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [147] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [148] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [149] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [150] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [151] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [152] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [153] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [aux_sym_preproc_else_token1] = ACTIONS(1470), + [aux_sym_preproc_elif_token1] = ACTIONS(1470), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + }, + [154] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [aux_sym_preproc_else_token1] = ACTIONS(1474), + [aux_sym_preproc_elif_token1] = ACTIONS(1474), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [155] = { + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [aux_sym_preproc_else_token1] = ACTIONS(1478), + [aux_sym_preproc_elif_token1] = ACTIONS(1478), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), + [sym_comment] = ACTIONS(3), + }, + [156] = { + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [aux_sym_preproc_else_token1] = ACTIONS(1482), + [aux_sym_preproc_elif_token1] = ACTIONS(1482), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(3), + }, + [157] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [aux_sym_preproc_else_token1] = ACTIONS(1486), + [aux_sym_preproc_elif_token1] = ACTIONS(1486), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [158] = { + [sym_else_clause] = STATE(196), [sym_identifier] = ACTIONS(1292), [aux_sym_preproc_include_token1] = ACTIONS(1292), [aux_sym_preproc_def_token1] = ACTIONS(1292), @@ -34975,7 +37074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1422), + [anon_sym_else] = ACTIONS(1490), [anon_sym_switch] = ACTIONS(1292), [anon_sym_case] = ACTIONS(1292), [anon_sym_default] = ACTIONS(1292), @@ -35017,1724 +37116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [140] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(1424), - [aux_sym_preproc_elif_token1] = ACTIONS(1424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - }, - [141] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [aux_sym_preproc_else_token1] = ACTIONS(1428), - [aux_sym_preproc_elif_token1] = ACTIONS(1428), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - }, - [142] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, - [143] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [aux_sym_preproc_else_token1] = ACTIONS(1436), - [aux_sym_preproc_elif_token1] = ACTIONS(1436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - }, - [144] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [aux_sym_preproc_else_token1] = ACTIONS(1440), - [aux_sym_preproc_elif_token1] = ACTIONS(1440), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - }, - [145] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_else_token1] = ACTIONS(1444), - [aux_sym_preproc_elif_token1] = ACTIONS(1444), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), - [sym_comment] = ACTIONS(3), - }, - [146] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [aux_sym_preproc_else_token1] = ACTIONS(1448), - [aux_sym_preproc_elif_token1] = ACTIONS(1448), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - }, - [147] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [148] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, - [149] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [150] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - }, - [151] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [152] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [153] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [154] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - }, - [155] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [156] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [aux_sym_preproc_else_token1] = ACTIONS(1488), - [aux_sym_preproc_elif_token1] = ACTIONS(1488), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [157] = { + [159] = { [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), [aux_sym_preproc_def_token1] = ACTIONS(1492), @@ -36835,7 +37217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [158] = { + [160] = { [sym_identifier] = ACTIONS(1496), [aux_sym_preproc_include_token1] = ACTIONS(1496), [aux_sym_preproc_def_token1] = ACTIONS(1496), @@ -36936,7 +37318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [159] = { + [161] = { [sym_identifier] = ACTIONS(1500), [aux_sym_preproc_include_token1] = ACTIONS(1500), [aux_sym_preproc_def_token1] = ACTIONS(1500), @@ -37037,7 +37419,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [160] = { + [162] = { [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), [aux_sym_preproc_def_token1] = ACTIONS(1504), @@ -37138,504 +37520,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [161] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [aux_sym_preproc_else_token1] = ACTIONS(1314), - [aux_sym_preproc_elif_token1] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [162] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [aux_sym_preproc_else_token1] = ACTIONS(1334), - [aux_sym_preproc_elif_token1] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, [163] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [aux_sym_preproc_else_token1] = ACTIONS(1350), - [aux_sym_preproc_elif_token1] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, [164] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [aux_sym_preproc_else_token1] = ACTIONS(1354), - [aux_sym_preproc_elif_token1] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, [165] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [aux_sym_preproc_else_token1] = ACTIONS(1358), - [aux_sym_preproc_elif_token1] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, [166] = { @@ -37739,506 +37924,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [167] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [168] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [169] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [170] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [171] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [172] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), @@ -38338,1307 +38023,407 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [173] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [174] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [aux_sym_preproc_else_token1] = ACTIONS(1310), - [aux_sym_preproc_elif_token1] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [175] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [168] = { + [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___extension__] = ACTIONS(1390), + [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_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = 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), }, - [176] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [169] = { + [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___extension__] = ACTIONS(1382), + [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_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = 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), }, - [177] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [aux_sym_preproc_else_token1] = ACTIONS(1346), - [aux_sym_preproc_elif_token1] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [170] = { + [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(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [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(1350), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [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(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [178] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [aux_sym_preproc_else_token1] = ACTIONS(1326), - [aux_sym_preproc_elif_token1] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [179] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [aux_sym_preproc_else_token1] = ACTIONS(1330), - [aux_sym_preproc_elif_token1] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - }, - [180] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [181] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [aux_sym_preproc_else_token1] = ACTIONS(1362), - [aux_sym_preproc_elif_token1] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - }, - [182] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [183] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [184] = { - [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___extension__] = ACTIONS(1370), - [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_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = 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), - }, - [185] = { - [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___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = 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___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = 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), + [171] = { + [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___extension__] = ACTIONS(1378), + [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_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = 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), }, - [186] = { + [172] = { [sym_identifier] = ACTIONS(1374), [aux_sym_preproc_include_token1] = ACTIONS(1374), [aux_sym_preproc_def_token1] = ACTIONS(1374), @@ -39738,507 +38523,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1374), [sym_comment] = ACTIONS(3), }, - [187] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [188] = { - [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___extension__] = ACTIONS(1390), - [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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = 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), - }, - [189] = { - [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(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [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(1302), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [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(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [190] = { - [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___extension__] = ACTIONS(1394), - [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_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = 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), - }, - [191] = { - [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___extension__] = ACTIONS(1382), - [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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = 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), + [173] = { + [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___extension__] = ACTIONS(1370), + [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_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = 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), }, - [192] = { + [174] = { [sym_identifier] = ACTIONS(1386), [aux_sym_preproc_include_token1] = ACTIONS(1386), [aux_sym_preproc_def_token1] = ACTIONS(1386), @@ -40338,107 +38723,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, - [193] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [175] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token2] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [aux_sym_preproc_else_token1] = ACTIONS(1366), + [aux_sym_preproc_elif_token1] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), + [sym_comment] = ACTIONS(3), + }, + [176] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [aux_sym_preproc_else_token1] = ACTIONS(1362), + [aux_sym_preproc_elif_token1] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [177] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [178] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [179] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [180] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [aux_sym_preproc_else_token1] = ACTIONS(1338), + [aux_sym_preproc_elif_token1] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [194] = { + [181] = { [sym_identifier] = ACTIONS(1338), [aux_sym_preproc_include_token1] = ACTIONS(1338), [aux_sym_preproc_def_token1] = ACTIONS(1338), @@ -40538,507 +39423,1107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [195] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [aux_sym_preproc_else_token1] = ACTIONS(1342), - [aux_sym_preproc_elif_token1] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [182] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [aux_sym_preproc_else_token1] = ACTIONS(1302), + [aux_sym_preproc_elif_token1] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), + [sym_comment] = ACTIONS(3), + }, + [183] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [184] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [aux_sym_preproc_else_token1] = ACTIONS(1358), + [aux_sym_preproc_elif_token1] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [185] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [186] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [196] = { - [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___extension__] = ACTIONS(1378), - [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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = 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), + [187] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [197] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [aux_sym_preproc_else_token1] = ACTIONS(1318), - [aux_sym_preproc_elif_token1] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [188] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [198] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [189] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [aux_sym_preproc_else_token1] = ACTIONS(1330), + [aux_sym_preproc_elif_token1] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [199] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token2] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [aux_sym_preproc_else_token1] = ACTIONS(1366), - [aux_sym_preproc_elif_token1] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [190] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [191] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [200] = { + [192] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [aux_sym_preproc_else_token1] = ACTIONS(1354), + [aux_sym_preproc_elif_token1] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), + [sym_comment] = ACTIONS(3), + }, + [193] = { [sym_identifier] = ACTIONS(1322), [aux_sym_preproc_include_token1] = ACTIONS(1322), [aux_sym_preproc_def_token1] = ACTIONS(1322), @@ -41138,1790 +40623,1906 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [201] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [aux_sym_preproc_else_token1] = ACTIONS(1298), - [aux_sym_preproc_elif_token1] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [194] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [aux_sym_preproc_else_token1] = ACTIONS(1346), + [aux_sym_preproc_elif_token1] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [202] = { - [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___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = 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), + [195] = { + [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___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = 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___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = 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), }, - [203] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [aux_sym_preproc_else_token1] = ACTIONS(1480), - [aux_sym_preproc_elif_token1] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [196] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [aux_sym_preproc_else_token1] = ACTIONS(1342), + [aux_sym_preproc_elif_token1] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [204] = { - [sym_else_clause] = STATE(296), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1508), - [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___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__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), + [197] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [205] = { - [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___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = 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), + [198] = { + [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___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = 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___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = 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), }, - [206] = { - [sym_identifier] = ACTIONS(1492), - [aux_sym_preproc_include_token1] = ACTIONS(1492), - [aux_sym_preproc_def_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token1] = ACTIONS(1492), - [aux_sym_preproc_if_token2] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), - [aux_sym_preproc_else_token1] = ACTIONS(1492), - [aux_sym_preproc_elif_token1] = ACTIONS(1492), - [sym_preproc_directive] = ACTIONS(1492), - [anon_sym_LPAREN2] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1494), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1494), - [anon_sym___extension__] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym___attribute__] = ACTIONS(1492), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), - [anon_sym___declspec] = ACTIONS(1492), - [anon_sym___cdecl] = ACTIONS(1492), - [anon_sym___clrcall] = ACTIONS(1492), - [anon_sym___stdcall] = ACTIONS(1492), - [anon_sym___fastcall] = ACTIONS(1492), - [anon_sym___thiscall] = ACTIONS(1492), - [anon_sym___vectorcall] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_signed] = ACTIONS(1492), - [anon_sym_unsigned] = ACTIONS(1492), - [anon_sym_long] = ACTIONS(1492), - [anon_sym_short] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_auto] = ACTIONS(1492), - [anon_sym_register] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym___inline] = ACTIONS(1492), - [anon_sym___inline__] = ACTIONS(1492), - [anon_sym___forceinline] = ACTIONS(1492), - [anon_sym_thread_local] = ACTIONS(1492), - [anon_sym___thread] = ACTIONS(1492), - [anon_sym_const] = ACTIONS(1492), - [anon_sym_constexpr] = ACTIONS(1492), - [anon_sym_volatile] = ACTIONS(1492), - [anon_sym_restrict] = ACTIONS(1492), - [anon_sym___restrict__] = ACTIONS(1492), - [anon_sym__Atomic] = ACTIONS(1492), - [anon_sym__Noreturn] = ACTIONS(1492), - [anon_sym_noreturn] = ACTIONS(1492), - [sym_primitive_type] = ACTIONS(1492), - [anon_sym_enum] = ACTIONS(1492), - [anon_sym_struct] = ACTIONS(1492), - [anon_sym_union] = ACTIONS(1492), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_while] = ACTIONS(1492), - [anon_sym_do] = ACTIONS(1492), - [anon_sym_for] = ACTIONS(1492), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_goto] = ACTIONS(1492), - [anon_sym___try] = ACTIONS(1492), - [anon_sym___leave] = ACTIONS(1492), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_sizeof] = ACTIONS(1492), - [anon_sym___alignof__] = ACTIONS(1492), - [anon_sym___alignof] = ACTIONS(1492), - [anon_sym__alignof] = ACTIONS(1492), - [anon_sym_alignof] = ACTIONS(1492), - [anon_sym__Alignof] = ACTIONS(1492), - [anon_sym_offsetof] = ACTIONS(1492), - [anon_sym__Generic] = ACTIONS(1492), - [anon_sym_asm] = ACTIONS(1492), - [anon_sym___asm__] = ACTIONS(1492), - [sym_number_literal] = ACTIONS(1494), - [anon_sym_L_SQUOTE] = ACTIONS(1494), - [anon_sym_u_SQUOTE] = ACTIONS(1494), - [anon_sym_U_SQUOTE] = ACTIONS(1494), - [anon_sym_u8_SQUOTE] = ACTIONS(1494), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_L_DQUOTE] = ACTIONS(1494), - [anon_sym_u_DQUOTE] = ACTIONS(1494), - [anon_sym_U_DQUOTE] = ACTIONS(1494), - [anon_sym_u8_DQUOTE] = ACTIONS(1494), - [anon_sym_DQUOTE] = ACTIONS(1494), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [anon_sym_NULL] = ACTIONS(1492), - [anon_sym_nullptr] = ACTIONS(1492), + [199] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [207] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [aux_sym_preproc_else_token1] = ACTIONS(1488), - [aux_sym_preproc_elif_token1] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [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___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = 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___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = 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), }, - [208] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [aux_sym_preproc_else_token1] = ACTIONS(1440), - [aux_sym_preproc_elif_token1] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [201] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), - }, - [209] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [aux_sym_preproc_else_token1] = ACTIONS(1496), - [aux_sym_preproc_elif_token1] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + }, + [202] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [210] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [aux_sym_preproc_else_token1] = ACTIONS(1456), - [aux_sym_preproc_elif_token1] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [203] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [211] = { - [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___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = 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), + [204] = { + [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___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = 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___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = 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), }, - [212] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(814), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(814), - [sym_call_expression] = STATE(814), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(814), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(814), - [sym_initializer_list] = STATE(813), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_identifier] = ACTIONS(1510), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1514), - [anon_sym_TILDE] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_COLON] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1522), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [205] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [aux_sym_preproc_else_token1] = ACTIONS(1314), + [aux_sym_preproc_elif_token1] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [213] = { - [sym_else_clause] = STATE(310), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token2] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1524), - [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___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__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), + [206] = { + [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___extension__] = ACTIONS(1394), + [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_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = 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), }, - [214] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [aux_sym_preproc_else_token1] = ACTIONS(1448), - [aux_sym_preproc_elif_token1] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), + [207] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [aux_sym_preproc_else_token1] = ACTIONS(1318), + [aux_sym_preproc_elif_token1] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [215] = { - [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___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = 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), + [208] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [aux_sym_preproc_else_token1] = ACTIONS(1306), + [aux_sym_preproc_elif_token1] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [209] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [aux_sym_preproc_else_token1] = ACTIONS(1326), + [aux_sym_preproc_elif_token1] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [216] = { - [sym_else_clause] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(1294), - [sym_identifier] = ACTIONS(1292), - [aux_sym_preproc_include_token1] = ACTIONS(1292), - [aux_sym_preproc_def_token1] = ACTIONS(1292), - [aux_sym_preproc_if_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), - [sym_preproc_directive] = ACTIONS(1292), - [anon_sym_LPAREN2] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1294), - [anon_sym_TILDE] = ACTIONS(1294), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym___extension__] = ACTIONS(1292), - [anon_sym_typedef] = ACTIONS(1292), - [anon_sym_extern] = ACTIONS(1292), - [anon_sym___attribute__] = ACTIONS(1292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), - [anon_sym___declspec] = ACTIONS(1292), - [anon_sym___cdecl] = ACTIONS(1292), - [anon_sym___clrcall] = ACTIONS(1292), - [anon_sym___stdcall] = ACTIONS(1292), - [anon_sym___fastcall] = ACTIONS(1292), - [anon_sym___thiscall] = ACTIONS(1292), - [anon_sym___vectorcall] = ACTIONS(1292), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_signed] = ACTIONS(1292), - [anon_sym_unsigned] = ACTIONS(1292), - [anon_sym_long] = ACTIONS(1292), - [anon_sym_short] = ACTIONS(1292), - [anon_sym_static] = ACTIONS(1292), - [anon_sym_auto] = ACTIONS(1292), - [anon_sym_register] = ACTIONS(1292), - [anon_sym_inline] = ACTIONS(1292), - [anon_sym___inline] = ACTIONS(1292), - [anon_sym___inline__] = ACTIONS(1292), - [anon_sym___forceinline] = ACTIONS(1292), - [anon_sym_thread_local] = ACTIONS(1292), - [anon_sym___thread] = ACTIONS(1292), - [anon_sym_const] = ACTIONS(1292), - [anon_sym_constexpr] = ACTIONS(1292), - [anon_sym_volatile] = ACTIONS(1292), - [anon_sym_restrict] = ACTIONS(1292), - [anon_sym___restrict__] = ACTIONS(1292), - [anon_sym__Atomic] = ACTIONS(1292), - [anon_sym__Noreturn] = ACTIONS(1292), - [anon_sym_noreturn] = ACTIONS(1292), - [sym_primitive_type] = ACTIONS(1292), - [anon_sym_enum] = ACTIONS(1292), - [anon_sym_struct] = ACTIONS(1292), - [anon_sym_union] = ACTIONS(1292), - [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1526), - [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___try] = ACTIONS(1292), - [anon_sym___leave] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1294), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_sizeof] = ACTIONS(1292), - [anon_sym___alignof__] = ACTIONS(1292), - [anon_sym___alignof] = ACTIONS(1292), - [anon_sym__alignof] = ACTIONS(1292), - [anon_sym_alignof] = ACTIONS(1292), - [anon_sym__Alignof] = ACTIONS(1292), - [anon_sym_offsetof] = ACTIONS(1292), - [anon_sym__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), + [210] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [aux_sym_preproc_else_token1] = ACTIONS(1334), + [aux_sym_preproc_elif_token1] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [217] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(814), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(814), - [sym_call_expression] = STATE(814), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(814), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(814), - [sym_initializer_list] = STATE(813), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(840), - [sym_null] = STATE(814), - [sym_identifier] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_else_token1] = ACTIONS(1512), - [aux_sym_preproc_elif_token1] = ACTIONS(1518), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1532), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [211] = { + [sym_identifier] = ACTIONS(1312), + [aux_sym_preproc_include_token1] = ACTIONS(1312), + [aux_sym_preproc_def_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token1] = ACTIONS(1312), + [aux_sym_preproc_if_token2] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1312), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1312), + [aux_sym_preproc_else_token1] = ACTIONS(1312), + [aux_sym_preproc_elif_token1] = ACTIONS(1312), + [sym_preproc_directive] = ACTIONS(1312), + [anon_sym_LPAREN2] = ACTIONS(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [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(1310), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym___try] = ACTIONS(1312), + [anon_sym___leave] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [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(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [218] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [aux_sym_preproc_else_token1] = ACTIONS(1464), - [aux_sym_preproc_elif_token1] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [212] = { + [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___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = 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), }, - [219] = { + [213] = { [sym_identifier] = ACTIONS(1500), [aux_sym_preproc_include_token1] = ACTIONS(1500), [aux_sym_preproc_def_token1] = ACTIONS(1500), @@ -43020,700 +42621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [220] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [aux_sym_preproc_else_token1] = ACTIONS(1468), - [aux_sym_preproc_elif_token1] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [221] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [aux_sym_preproc_else_token1] = ACTIONS(1472), - [aux_sym_preproc_elif_token1] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [222] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [aux_sym_preproc_else_token1] = ACTIONS(1460), - [aux_sym_preproc_elif_token1] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [223] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [aux_sym_preproc_else_token1] = ACTIONS(1444), - [aux_sym_preproc_elif_token1] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), - [sym_comment] = ACTIONS(3), - }, - [224] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [aux_sym_preproc_else_token1] = ACTIONS(1428), - [aux_sym_preproc_elif_token1] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - }, - [225] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [aux_sym_preproc_else_token1] = ACTIONS(1476), - [aux_sym_preproc_elif_token1] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [226] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [aux_sym_preproc_else_token1] = ACTIONS(1452), - [aux_sym_preproc_elif_token1] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [227] = { + [214] = { [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), [aux_sym_preproc_def_token1] = ACTIONS(1504), @@ -43733,3521 +42641,4622 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1506), [anon_sym_SEMI] = ACTIONS(1506), [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), - [sym_comment] = ACTIONS(3), - }, - [228] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [aux_sym_preproc_else_token1] = ACTIONS(1436), - [aux_sym_preproc_elif_token1] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - }, - [229] = { - [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___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = 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_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [230] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [aux_sym_preproc_else_token1] = ACTIONS(1484), - [aux_sym_preproc_elif_token1] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [215] = { + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [aux_sym_preproc_else_token1] = ACTIONS(1512), + [aux_sym_preproc_elif_token1] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, - [231] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [aux_sym_preproc_else_token1] = ACTIONS(1432), - [aux_sym_preproc_elif_token1] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), + [216] = { + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [aux_sym_preproc_else_token1] = ACTIONS(1508), + [aux_sym_preproc_elif_token1] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, - [232] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [aux_sym_preproc_else_token1] = ACTIONS(1424), - [aux_sym_preproc_elif_token1] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [217] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [aux_sym_preproc_else_token1] = ACTIONS(1454), + [aux_sym_preproc_elif_token1] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [233] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token2] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [218] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [aux_sym_preproc_else_token1] = ACTIONS(1496), + [aux_sym_preproc_elif_token1] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [234] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [219] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [aux_sym_preproc_else_token1] = ACTIONS(1466), + [aux_sym_preproc_elif_token1] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [235] = { - [ts_builtin_sym_end] = ACTIONS(1316), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [220] = { + [sym_identifier] = ACTIONS(1492), + [aux_sym_preproc_include_token1] = ACTIONS(1492), + [aux_sym_preproc_def_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token1] = ACTIONS(1492), + [aux_sym_preproc_if_token2] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1492), + [aux_sym_preproc_else_token1] = ACTIONS(1492), + [aux_sym_preproc_elif_token1] = ACTIONS(1492), + [sym_preproc_directive] = ACTIONS(1492), + [anon_sym_LPAREN2] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1494), + [anon_sym_TILDE] = ACTIONS(1494), + [anon_sym_DASH] = ACTIONS(1492), + [anon_sym_PLUS] = ACTIONS(1492), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_AMP] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1494), + [anon_sym___extension__] = ACTIONS(1492), + [anon_sym_typedef] = ACTIONS(1492), + [anon_sym_extern] = ACTIONS(1492), + [anon_sym___attribute__] = ACTIONS(1492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1494), + [anon_sym___declspec] = ACTIONS(1492), + [anon_sym___cdecl] = ACTIONS(1492), + [anon_sym___clrcall] = ACTIONS(1492), + [anon_sym___stdcall] = ACTIONS(1492), + [anon_sym___fastcall] = ACTIONS(1492), + [anon_sym___thiscall] = ACTIONS(1492), + [anon_sym___vectorcall] = ACTIONS(1492), + [anon_sym_LBRACE] = ACTIONS(1494), + [anon_sym_signed] = ACTIONS(1492), + [anon_sym_unsigned] = ACTIONS(1492), + [anon_sym_long] = ACTIONS(1492), + [anon_sym_short] = ACTIONS(1492), + [anon_sym_static] = ACTIONS(1492), + [anon_sym_auto] = ACTIONS(1492), + [anon_sym_register] = ACTIONS(1492), + [anon_sym_inline] = ACTIONS(1492), + [anon_sym___inline] = ACTIONS(1492), + [anon_sym___inline__] = ACTIONS(1492), + [anon_sym___forceinline] = ACTIONS(1492), + [anon_sym_thread_local] = ACTIONS(1492), + [anon_sym___thread] = ACTIONS(1492), + [anon_sym_const] = ACTIONS(1492), + [anon_sym_constexpr] = ACTIONS(1492), + [anon_sym_volatile] = ACTIONS(1492), + [anon_sym_restrict] = ACTIONS(1492), + [anon_sym___restrict__] = ACTIONS(1492), + [anon_sym__Atomic] = ACTIONS(1492), + [anon_sym__Noreturn] = ACTIONS(1492), + [anon_sym_noreturn] = ACTIONS(1492), + [sym_primitive_type] = ACTIONS(1492), + [anon_sym_enum] = ACTIONS(1492), + [anon_sym_struct] = ACTIONS(1492), + [anon_sym_union] = ACTIONS(1492), + [anon_sym_if] = ACTIONS(1492), + [anon_sym_switch] = ACTIONS(1492), + [anon_sym_case] = ACTIONS(1492), + [anon_sym_default] = ACTIONS(1492), + [anon_sym_while] = ACTIONS(1492), + [anon_sym_do] = ACTIONS(1492), + [anon_sym_for] = ACTIONS(1492), + [anon_sym_return] = ACTIONS(1492), + [anon_sym_break] = ACTIONS(1492), + [anon_sym_continue] = ACTIONS(1492), + [anon_sym_goto] = ACTIONS(1492), + [anon_sym___try] = ACTIONS(1492), + [anon_sym___leave] = ACTIONS(1492), + [anon_sym_DASH_DASH] = ACTIONS(1494), + [anon_sym_PLUS_PLUS] = ACTIONS(1494), + [anon_sym_sizeof] = ACTIONS(1492), + [anon_sym___alignof__] = ACTIONS(1492), + [anon_sym___alignof] = ACTIONS(1492), + [anon_sym__alignof] = ACTIONS(1492), + [anon_sym_alignof] = ACTIONS(1492), + [anon_sym__Alignof] = ACTIONS(1492), + [anon_sym_offsetof] = ACTIONS(1492), + [anon_sym__Generic] = ACTIONS(1492), + [anon_sym_asm] = ACTIONS(1492), + [anon_sym___asm__] = ACTIONS(1492), + [sym_number_literal] = ACTIONS(1494), + [anon_sym_L_SQUOTE] = ACTIONS(1494), + [anon_sym_u_SQUOTE] = ACTIONS(1494), + [anon_sym_U_SQUOTE] = ACTIONS(1494), + [anon_sym_u8_SQUOTE] = ACTIONS(1494), + [anon_sym_SQUOTE] = ACTIONS(1494), + [anon_sym_L_DQUOTE] = ACTIONS(1494), + [anon_sym_u_DQUOTE] = ACTIONS(1494), + [anon_sym_U_DQUOTE] = ACTIONS(1494), + [anon_sym_u8_DQUOTE] = ACTIONS(1494), + [anon_sym_DQUOTE] = ACTIONS(1494), + [sym_true] = ACTIONS(1492), + [sym_false] = ACTIONS(1492), + [anon_sym_NULL] = ACTIONS(1492), + [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [236] = { - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_RBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [221] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [aux_sym_preproc_else_token1] = ACTIONS(1470), + [aux_sym_preproc_elif_token1] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [237] = { - [ts_builtin_sym_end] = ACTIONS(1360), - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [222] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [aux_sym_preproc_else_token1] = ACTIONS(1426), + [aux_sym_preproc_elif_token1] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = 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), }, - [238] = { - [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___extension__] = ACTIONS(1382), - [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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = 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), + [223] = { + [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___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = 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), }, - [239] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_RBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [224] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [aux_sym_preproc_else_token1] = ACTIONS(1450), + [aux_sym_preproc_elif_token1] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [225] = { + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [aux_sym_preproc_else_token1] = ACTIONS(1482), + [aux_sym_preproc_elif_token1] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(3), + }, + [226] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [aux_sym_preproc_else_token1] = ACTIONS(1458), + [aux_sym_preproc_elif_token1] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [227] = { + [sym__expression] = STATE(868), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_initializer_list] = STATE(827), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(867), + [sym_null] = STATE(843), + [sym_identifier] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1524), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1530), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [228] = { + [sym__expression] = STATE(868), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_initializer_list] = STATE(827), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_identifier] = ACTIONS(1532), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1534), + [anon_sym_TILDE] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_COLON] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1538), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [229] = { + [sym_else_clause] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(1294), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1540), + [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___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__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), }, - [240] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [230] = { + [sym_else_clause] = STATE(244), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token2] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1542), + [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___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__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), }, - [241] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [231] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [aux_sym_preproc_else_token1] = ACTIONS(1434), + [aux_sym_preproc_elif_token1] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [242] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [232] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [aux_sym_preproc_else_token1] = ACTIONS(1474), + [aux_sym_preproc_elif_token1] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [233] = { + [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___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = 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), }, - [243] = { - [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_SEMI] = ACTIONS(1376), - [anon_sym___extension__] = ACTIONS(1374), - [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_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = 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), + [234] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [aux_sym_preproc_else_token1] = ACTIONS(1438), + [aux_sym_preproc_elif_token1] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [244] = { - [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_SEMI] = ACTIONS(1372), - [anon_sym___extension__] = ACTIONS(1370), - [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_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = 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), + [235] = { + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [aux_sym_preproc_else_token1] = ACTIONS(1516), + [aux_sym_preproc_elif_token1] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [245] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [236] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [aux_sym_preproc_else_token1] = ACTIONS(1462), + [aux_sym_preproc_elif_token1] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [246] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [237] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [aux_sym_preproc_else_token1] = ACTIONS(1442), + [aux_sym_preproc_elif_token1] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [238] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [aux_sym_preproc_else_token1] = ACTIONS(1446), + [aux_sym_preproc_elif_token1] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [239] = { + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [aux_sym_preproc_else_token1] = ACTIONS(1478), + [aux_sym_preproc_elif_token1] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), + [sym_comment] = ACTIONS(3), + }, + [240] = { + [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___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = 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), }, - [247] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_identifier] = ACTIONS(1306), - [aux_sym_preproc_include_token1] = ACTIONS(1306), - [aux_sym_preproc_def_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), - [sym_preproc_directive] = ACTIONS(1306), - [anon_sym_LPAREN2] = ACTIONS(1308), - [anon_sym_BANG] = ACTIONS(1308), - [anon_sym_TILDE] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1306), - [anon_sym_PLUS] = ACTIONS(1306), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym___extension__] = ACTIONS(1306), - [anon_sym_typedef] = ACTIONS(1306), - [anon_sym_extern] = ACTIONS(1306), - [anon_sym___attribute__] = ACTIONS(1306), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), - [anon_sym___declspec] = ACTIONS(1306), - [anon_sym___cdecl] = ACTIONS(1306), - [anon_sym___clrcall] = ACTIONS(1306), - [anon_sym___stdcall] = ACTIONS(1306), - [anon_sym___fastcall] = ACTIONS(1306), - [anon_sym___thiscall] = ACTIONS(1306), - [anon_sym___vectorcall] = ACTIONS(1306), - [anon_sym_LBRACE] = ACTIONS(1308), - [anon_sym_signed] = ACTIONS(1306), - [anon_sym_unsigned] = ACTIONS(1306), - [anon_sym_long] = ACTIONS(1306), - [anon_sym_short] = ACTIONS(1306), - [anon_sym_static] = ACTIONS(1306), - [anon_sym_auto] = ACTIONS(1306), - [anon_sym_register] = ACTIONS(1306), - [anon_sym_inline] = ACTIONS(1306), - [anon_sym___inline] = ACTIONS(1306), - [anon_sym___inline__] = ACTIONS(1306), - [anon_sym___forceinline] = ACTIONS(1306), - [anon_sym_thread_local] = ACTIONS(1306), - [anon_sym___thread] = ACTIONS(1306), - [anon_sym_const] = ACTIONS(1306), - [anon_sym_constexpr] = ACTIONS(1306), - [anon_sym_volatile] = ACTIONS(1306), - [anon_sym_restrict] = ACTIONS(1306), - [anon_sym___restrict__] = ACTIONS(1306), - [anon_sym__Atomic] = ACTIONS(1306), - [anon_sym__Noreturn] = ACTIONS(1306), - [anon_sym_noreturn] = ACTIONS(1306), - [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), + [241] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [aux_sym_preproc_else_token1] = ACTIONS(1486), + [aux_sym_preproc_elif_token1] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), [sym_comment] = ACTIONS(3), }, - [248] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [242] = { + [sym_else_clause] = STATE(249), + [sym_identifier] = ACTIONS(1292), + [aux_sym_preproc_include_token1] = ACTIONS(1292), + [aux_sym_preproc_def_token1] = ACTIONS(1292), + [aux_sym_preproc_if_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1292), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1292), + [sym_preproc_directive] = ACTIONS(1292), + [anon_sym_LPAREN2] = ACTIONS(1294), + [anon_sym_BANG] = ACTIONS(1294), + [anon_sym_TILDE] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_PLUS] = ACTIONS(1292), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym___extension__] = ACTIONS(1292), + [anon_sym_typedef] = ACTIONS(1292), + [anon_sym_extern] = ACTIONS(1292), + [anon_sym___attribute__] = ACTIONS(1292), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1294), + [anon_sym___declspec] = ACTIONS(1292), + [anon_sym___cdecl] = ACTIONS(1292), + [anon_sym___clrcall] = ACTIONS(1292), + [anon_sym___stdcall] = ACTIONS(1292), + [anon_sym___fastcall] = ACTIONS(1292), + [anon_sym___thiscall] = ACTIONS(1292), + [anon_sym___vectorcall] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_RBRACE] = ACTIONS(1294), + [anon_sym_signed] = ACTIONS(1292), + [anon_sym_unsigned] = ACTIONS(1292), + [anon_sym_long] = ACTIONS(1292), + [anon_sym_short] = ACTIONS(1292), + [anon_sym_static] = ACTIONS(1292), + [anon_sym_auto] = ACTIONS(1292), + [anon_sym_register] = ACTIONS(1292), + [anon_sym_inline] = ACTIONS(1292), + [anon_sym___inline] = ACTIONS(1292), + [anon_sym___inline__] = ACTIONS(1292), + [anon_sym___forceinline] = ACTIONS(1292), + [anon_sym_thread_local] = ACTIONS(1292), + [anon_sym___thread] = ACTIONS(1292), + [anon_sym_const] = ACTIONS(1292), + [anon_sym_constexpr] = ACTIONS(1292), + [anon_sym_volatile] = ACTIONS(1292), + [anon_sym_restrict] = ACTIONS(1292), + [anon_sym___restrict__] = ACTIONS(1292), + [anon_sym__Atomic] = ACTIONS(1292), + [anon_sym__Noreturn] = ACTIONS(1292), + [anon_sym_noreturn] = ACTIONS(1292), + [sym_primitive_type] = ACTIONS(1292), + [anon_sym_enum] = ACTIONS(1292), + [anon_sym_struct] = ACTIONS(1292), + [anon_sym_union] = ACTIONS(1292), + [anon_sym_if] = ACTIONS(1292), + [anon_sym_else] = ACTIONS(1544), + [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___try] = ACTIONS(1292), + [anon_sym___leave] = ACTIONS(1292), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_sizeof] = ACTIONS(1292), + [anon_sym___alignof__] = ACTIONS(1292), + [anon_sym___alignof] = ACTIONS(1292), + [anon_sym__alignof] = ACTIONS(1292), + [anon_sym_alignof] = ACTIONS(1292), + [anon_sym__Alignof] = ACTIONS(1292), + [anon_sym_offsetof] = ACTIONS(1292), + [anon_sym__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), }, - [249] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [243] = { + [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___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = 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___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = 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), }, - [250] = { - [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___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = 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___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = 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), + [244] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token2] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [251] = { - [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___extension__] = ACTIONS(1390), - [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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = 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), + [245] = { + [ts_builtin_sym_end] = ACTIONS(1332), + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [252] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [246] = { + [ts_builtin_sym_end] = ACTIONS(1336), + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [253] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [247] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [254] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [248] = { + [ts_builtin_sym_end] = ACTIONS(1348), + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [249] = { + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [255] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [250] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [256] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [251] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [252] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [253] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [257] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [254] = { + [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___extension__] = ACTIONS(1390), + [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_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = 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), }, - [258] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [255] = { + [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___extension__] = ACTIONS(1382), + [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_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = 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), }, - [259] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [256] = { + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token2] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [260] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [257] = { + [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(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [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(1310), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym___try] = ACTIONS(1312), + [anon_sym___leave] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [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(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [261] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [258] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [262] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [259] = { + [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___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = 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___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = 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), }, - [263] = { + [260] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), + [sym_comment] = ACTIONS(3), + }, + [261] = { [ts_builtin_sym_end] = ACTIONS(1388), [sym_identifier] = ACTIONS(1386), [aux_sym_preproc_include_token1] = ACTIONS(1386), @@ -47345,105 +47354,399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1386), [sym_comment] = ACTIONS(3), }, + [262] = { + [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___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = 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___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = 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), + }, + [263] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, [264] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, [265] = { + [ts_builtin_sym_end] = ACTIONS(1328), + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), + [sym_comment] = ACTIONS(3), + }, + [266] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -47541,306 +47844,795 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [266] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [267] = { + [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___extension__] = ACTIONS(1394), + [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_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = 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), + }, + [268] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [269] = { + [ts_builtin_sym_end] = ACTIONS(1340), + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [270] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [271] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [267] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [272] = { + [ts_builtin_sym_end] = ACTIONS(1304), + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [268] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [273] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [274] = { + [ts_builtin_sym_end] = ACTIONS(1404), + [sym_identifier] = ACTIONS(1402), + [aux_sym_preproc_include_token1] = ACTIONS(1402), + [aux_sym_preproc_def_token1] = ACTIONS(1402), + [aux_sym_preproc_if_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(1402), + [anon_sym_LPAREN2] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_TILDE] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1402), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = 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___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = 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), }, - [269] = { + [275] = { [sym_identifier] = ACTIONS(1306), [aux_sym_preproc_include_token1] = ACTIONS(1306), [aux_sym_preproc_def_token1] = ACTIONS(1306), [aux_sym_preproc_if_token1] = ACTIONS(1306), - [aux_sym_preproc_if_token2] = ACTIONS(1306), [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), [sym_preproc_directive] = ACTIONS(1306), @@ -47865,6 +48657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1306), [anon_sym___vectorcall] = ACTIONS(1306), [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), [anon_sym_signed] = ACTIONS(1306), [anon_sym_unsigned] = ACTIONS(1306), [anon_sym_long] = ACTIONS(1306), @@ -47887,837 +48680,445 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(1306), [anon_sym_noreturn] = ACTIONS(1306), [sym_primitive_type] = ACTIONS(1306), - [anon_sym_enum] = ACTIONS(1306), - [anon_sym_struct] = ACTIONS(1306), - [anon_sym_union] = ACTIONS(1306), - [anon_sym_if] = ACTIONS(1306), - [anon_sym_else] = ACTIONS(1306), - [anon_sym_switch] = ACTIONS(1306), - [anon_sym_case] = ACTIONS(1306), - [anon_sym_default] = ACTIONS(1306), - [anon_sym_while] = ACTIONS(1306), - [anon_sym_do] = ACTIONS(1306), - [anon_sym_for] = ACTIONS(1306), - [anon_sym_return] = ACTIONS(1306), - [anon_sym_break] = ACTIONS(1306), - [anon_sym_continue] = ACTIONS(1306), - [anon_sym_goto] = ACTIONS(1306), - [anon_sym___try] = ACTIONS(1306), - [anon_sym___leave] = ACTIONS(1306), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_sizeof] = ACTIONS(1306), - [anon_sym___alignof__] = ACTIONS(1306), - [anon_sym___alignof] = ACTIONS(1306), - [anon_sym__alignof] = ACTIONS(1306), - [anon_sym_alignof] = ACTIONS(1306), - [anon_sym__Alignof] = ACTIONS(1306), - [anon_sym_offsetof] = ACTIONS(1306), - [anon_sym__Generic] = ACTIONS(1306), - [anon_sym_asm] = ACTIONS(1306), - [anon_sym___asm__] = ACTIONS(1306), - [sym_number_literal] = ACTIONS(1308), - [anon_sym_L_SQUOTE] = ACTIONS(1308), - [anon_sym_u_SQUOTE] = ACTIONS(1308), - [anon_sym_U_SQUOTE] = ACTIONS(1308), - [anon_sym_u8_SQUOTE] = ACTIONS(1308), - [anon_sym_SQUOTE] = ACTIONS(1308), - [anon_sym_L_DQUOTE] = ACTIONS(1308), - [anon_sym_u_DQUOTE] = ACTIONS(1308), - [anon_sym_U_DQUOTE] = ACTIONS(1308), - [anon_sym_u8_DQUOTE] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [anon_sym_NULL] = ACTIONS(1306), - [anon_sym_nullptr] = ACTIONS(1306), - [sym_comment] = ACTIONS(3), - }, - [270] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token2] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), - [sym_comment] = ACTIONS(3), - }, - [271] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [272] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [273] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token2] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - }, - [274] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token2] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [275] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [276] = { + [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___extension__] = ACTIONS(1390), + [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_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = 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), }, - [276] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [277] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [278] = { + [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___extension__] = ACTIONS(1382), + [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_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = 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), }, - [277] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [279] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_RBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [278] = { + [280] = { [ts_builtin_sym_end] = ACTIONS(1380), [sym_identifier] = ACTIONS(1378), [aux_sym_preproc_include_token1] = ACTIONS(1378), @@ -48815,886 +49216,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1378), [sym_comment] = ACTIONS(3), }, - [279] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_RBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), - [sym_comment] = ACTIONS(3), - }, - [280] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token2] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - }, [281] = { - [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___extension__] = ACTIONS(1386), - [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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = 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_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [283] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [284] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [285] = { - [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___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = 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___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = 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), + [284] = { + [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_SEMI] = ACTIONS(1376), + [anon_sym___extension__] = ACTIONS(1374), + [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_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = 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), }, - [286] = { - [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___extension__] = ACTIONS(1390), - [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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = 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), + [285] = { + [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(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [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(1350), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [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(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [287] = { - [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_SEMI] = ACTIONS(1384), - [anon_sym___extension__] = ACTIONS(1382), - [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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = 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), + [286] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [287] = { + [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___extension__] = ACTIONS(1378), + [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_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = 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), }, [288] = { @@ -49702,6 +49907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -49726,7 +49932,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1374), [anon_sym___vectorcall] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(1376), - [anon_sym_RBRACE] = ACTIONS(1376), [anon_sym_signed] = ACTIONS(1374), [anon_sym_unsigned] = ACTIONS(1374), [anon_sym_long] = ACTIONS(1374), @@ -49796,398 +50001,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(1336), - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), - [sym_comment] = ACTIONS(3), - }, - [291] = { - [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(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [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(1302), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [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(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), - [sym_comment] = ACTIONS(3), - }, - [292] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [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___extension__] = ACTIONS(1370), + [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_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = 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), }, - [293] = { + [291] = { + [ts_builtin_sym_end] = ACTIONS(1372), [sym_identifier] = ACTIONS(1370), [aux_sym_preproc_include_token1] = ACTIONS(1370), [aux_sym_preproc_def_token1] = ACTIONS(1370), @@ -50216,7 +50226,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1370), [anon_sym___vectorcall] = ACTIONS(1370), [anon_sym_LBRACE] = ACTIONS(1372), - [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_signed] = ACTIONS(1370), [anon_sym_unsigned] = ACTIONS(1370), [anon_sym_long] = ACTIONS(1370), @@ -50285,399 +50294,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1370), [sym_comment] = ACTIONS(3), }, - [294] = { - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - }, - [295] = { - [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___extension__] = ACTIONS(1378), - [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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = 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), - }, - [296] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), - [sym_comment] = ACTIONS(3), - }, - [297] = { - [ts_builtin_sym_end] = ACTIONS(1340), - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [292] = { + [ts_builtin_sym_end] = ACTIONS(1368), + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [298] = { + [293] = { [sym_identifier] = ACTIONS(1366), [aux_sym_preproc_include_token1] = ACTIONS(1366), [aux_sym_preproc_def_token1] = ACTIONS(1366), @@ -50775,1187 +50490,1482 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [299] = { - [sym_identifier] = ACTIONS(1322), - [aux_sym_preproc_include_token1] = ACTIONS(1322), - [aux_sym_preproc_def_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token1] = ACTIONS(1322), - [aux_sym_preproc_if_token2] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), - [sym_preproc_directive] = ACTIONS(1322), - [anon_sym_LPAREN2] = ACTIONS(1324), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym___extension__] = ACTIONS(1322), - [anon_sym_typedef] = ACTIONS(1322), - [anon_sym_extern] = ACTIONS(1322), - [anon_sym___attribute__] = ACTIONS(1322), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), - [anon_sym___declspec] = ACTIONS(1322), - [anon_sym___cdecl] = ACTIONS(1322), - [anon_sym___clrcall] = ACTIONS(1322), - [anon_sym___stdcall] = ACTIONS(1322), - [anon_sym___fastcall] = ACTIONS(1322), - [anon_sym___thiscall] = ACTIONS(1322), - [anon_sym___vectorcall] = ACTIONS(1322), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_signed] = ACTIONS(1322), - [anon_sym_unsigned] = ACTIONS(1322), - [anon_sym_long] = ACTIONS(1322), - [anon_sym_short] = ACTIONS(1322), - [anon_sym_static] = ACTIONS(1322), - [anon_sym_auto] = ACTIONS(1322), - [anon_sym_register] = ACTIONS(1322), - [anon_sym_inline] = ACTIONS(1322), - [anon_sym___inline] = ACTIONS(1322), - [anon_sym___inline__] = ACTIONS(1322), - [anon_sym___forceinline] = ACTIONS(1322), - [anon_sym_thread_local] = ACTIONS(1322), - [anon_sym___thread] = ACTIONS(1322), - [anon_sym_const] = ACTIONS(1322), - [anon_sym_constexpr] = ACTIONS(1322), - [anon_sym_volatile] = ACTIONS(1322), - [anon_sym_restrict] = ACTIONS(1322), - [anon_sym___restrict__] = ACTIONS(1322), - [anon_sym__Atomic] = ACTIONS(1322), - [anon_sym__Noreturn] = ACTIONS(1322), - [anon_sym_noreturn] = ACTIONS(1322), - [sym_primitive_type] = ACTIONS(1322), - [anon_sym_enum] = ACTIONS(1322), - [anon_sym_struct] = ACTIONS(1322), - [anon_sym_union] = ACTIONS(1322), - [anon_sym_if] = ACTIONS(1322), - [anon_sym_else] = ACTIONS(1322), - [anon_sym_switch] = ACTIONS(1322), - [anon_sym_case] = ACTIONS(1322), - [anon_sym_default] = ACTIONS(1322), - [anon_sym_while] = ACTIONS(1322), - [anon_sym_do] = ACTIONS(1322), - [anon_sym_for] = ACTIONS(1322), - [anon_sym_return] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1322), - [anon_sym_continue] = ACTIONS(1322), - [anon_sym_goto] = ACTIONS(1322), - [anon_sym___try] = ACTIONS(1322), - [anon_sym___leave] = ACTIONS(1322), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_sizeof] = ACTIONS(1322), - [anon_sym___alignof__] = ACTIONS(1322), - [anon_sym___alignof] = ACTIONS(1322), - [anon_sym__alignof] = ACTIONS(1322), - [anon_sym_alignof] = ACTIONS(1322), - [anon_sym__Alignof] = ACTIONS(1322), - [anon_sym_offsetof] = ACTIONS(1322), - [anon_sym__Generic] = ACTIONS(1322), - [anon_sym_asm] = ACTIONS(1322), - [anon_sym___asm__] = ACTIONS(1322), - [sym_number_literal] = ACTIONS(1324), - [anon_sym_L_SQUOTE] = ACTIONS(1324), - [anon_sym_u_SQUOTE] = ACTIONS(1324), - [anon_sym_U_SQUOTE] = ACTIONS(1324), - [anon_sym_u8_SQUOTE] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1324), - [anon_sym_L_DQUOTE] = ACTIONS(1324), - [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), + [294] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token2] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [300] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token2] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [295] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [296] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [301] = { - [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___extension__] = ACTIONS(1394), - [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_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = 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), + [297] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [302] = { - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token2] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [298] = { + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), [sym_comment] = ACTIONS(3), }, - [303] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_RBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [299] = { + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token2] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [304] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [300] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [305] = { - [ts_builtin_sym_end] = ACTIONS(1348), - [sym_identifier] = ACTIONS(1346), - [aux_sym_preproc_include_token1] = ACTIONS(1346), - [aux_sym_preproc_def_token1] = ACTIONS(1346), - [aux_sym_preproc_if_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), - [sym_preproc_directive] = ACTIONS(1346), - [anon_sym_LPAREN2] = ACTIONS(1348), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_TILDE] = ACTIONS(1348), - [anon_sym_DASH] = ACTIONS(1346), - [anon_sym_PLUS] = ACTIONS(1346), - [anon_sym_STAR] = ACTIONS(1348), - [anon_sym_AMP] = ACTIONS(1348), - [anon_sym_SEMI] = ACTIONS(1348), - [anon_sym___extension__] = ACTIONS(1346), - [anon_sym_typedef] = ACTIONS(1346), - [anon_sym_extern] = ACTIONS(1346), - [anon_sym___attribute__] = ACTIONS(1346), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), - [anon_sym___declspec] = ACTIONS(1346), - [anon_sym___cdecl] = ACTIONS(1346), - [anon_sym___clrcall] = ACTIONS(1346), - [anon_sym___stdcall] = ACTIONS(1346), - [anon_sym___fastcall] = ACTIONS(1346), - [anon_sym___thiscall] = ACTIONS(1346), - [anon_sym___vectorcall] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_signed] = ACTIONS(1346), - [anon_sym_unsigned] = ACTIONS(1346), - [anon_sym_long] = ACTIONS(1346), - [anon_sym_short] = ACTIONS(1346), - [anon_sym_static] = ACTIONS(1346), - [anon_sym_auto] = ACTIONS(1346), - [anon_sym_register] = ACTIONS(1346), - [anon_sym_inline] = ACTIONS(1346), - [anon_sym___inline] = ACTIONS(1346), - [anon_sym___inline__] = ACTIONS(1346), - [anon_sym___forceinline] = ACTIONS(1346), - [anon_sym_thread_local] = ACTIONS(1346), - [anon_sym___thread] = ACTIONS(1346), - [anon_sym_const] = ACTIONS(1346), - [anon_sym_constexpr] = ACTIONS(1346), - [anon_sym_volatile] = ACTIONS(1346), - [anon_sym_restrict] = ACTIONS(1346), - [anon_sym___restrict__] = ACTIONS(1346), - [anon_sym__Atomic] = ACTIONS(1346), - [anon_sym__Noreturn] = ACTIONS(1346), - [anon_sym_noreturn] = ACTIONS(1346), - [sym_primitive_type] = ACTIONS(1346), - [anon_sym_enum] = ACTIONS(1346), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_union] = ACTIONS(1346), - [anon_sym_if] = ACTIONS(1346), - [anon_sym_else] = ACTIONS(1346), - [anon_sym_switch] = ACTIONS(1346), - [anon_sym_case] = ACTIONS(1346), - [anon_sym_default] = ACTIONS(1346), - [anon_sym_while] = ACTIONS(1346), - [anon_sym_do] = ACTIONS(1346), - [anon_sym_for] = ACTIONS(1346), - [anon_sym_return] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1346), - [anon_sym_continue] = ACTIONS(1346), - [anon_sym_goto] = ACTIONS(1346), - [anon_sym___try] = ACTIONS(1346), - [anon_sym___leave] = ACTIONS(1346), - [anon_sym_DASH_DASH] = ACTIONS(1348), - [anon_sym_PLUS_PLUS] = ACTIONS(1348), - [anon_sym_sizeof] = ACTIONS(1346), - [anon_sym___alignof__] = ACTIONS(1346), - [anon_sym___alignof] = ACTIONS(1346), - [anon_sym__alignof] = ACTIONS(1346), - [anon_sym_alignof] = ACTIONS(1346), - [anon_sym__Alignof] = ACTIONS(1346), - [anon_sym_offsetof] = ACTIONS(1346), - [anon_sym__Generic] = ACTIONS(1346), - [anon_sym_asm] = ACTIONS(1346), - [anon_sym___asm__] = ACTIONS(1346), - [sym_number_literal] = ACTIONS(1348), - [anon_sym_L_SQUOTE] = ACTIONS(1348), - [anon_sym_u_SQUOTE] = ACTIONS(1348), - [anon_sym_U_SQUOTE] = ACTIONS(1348), - [anon_sym_u8_SQUOTE] = ACTIONS(1348), - [anon_sym_SQUOTE] = ACTIONS(1348), - [anon_sym_L_DQUOTE] = ACTIONS(1348), - [anon_sym_u_DQUOTE] = ACTIONS(1348), - [anon_sym_U_DQUOTE] = ACTIONS(1348), - [anon_sym_u8_DQUOTE] = ACTIONS(1348), - [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_true] = ACTIONS(1346), - [sym_false] = ACTIONS(1346), - [anon_sym_NULL] = ACTIONS(1346), - [anon_sym_nullptr] = ACTIONS(1346), + [301] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [306] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [302] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [307] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [303] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [308] = { - [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___extension__] = ACTIONS(1394), - [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_signed] = ACTIONS(1394), - [anon_sym_unsigned] = ACTIONS(1394), - [anon_sym_long] = ACTIONS(1394), - [anon_sym_short] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_auto] = ACTIONS(1394), - [anon_sym_register] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym___inline] = ACTIONS(1394), - [anon_sym___inline__] = ACTIONS(1394), - [anon_sym___forceinline] = ACTIONS(1394), - [anon_sym_thread_local] = ACTIONS(1394), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1394), - [anon_sym___leave] = ACTIONS(1394), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_sizeof] = ACTIONS(1394), - [anon_sym___alignof__] = ACTIONS(1394), - [anon_sym___alignof] = ACTIONS(1394), - [anon_sym__alignof] = ACTIONS(1394), - [anon_sym_alignof] = ACTIONS(1394), - [anon_sym__Alignof] = 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), + [304] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [305] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [309] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token2] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [306] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [310] = { - [sym_identifier] = ACTIONS(1342), - [aux_sym_preproc_include_token1] = ACTIONS(1342), - [aux_sym_preproc_def_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token1] = ACTIONS(1342), - [aux_sym_preproc_if_token2] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), - [sym_preproc_directive] = ACTIONS(1342), - [anon_sym_LPAREN2] = ACTIONS(1344), - [anon_sym_BANG] = ACTIONS(1344), - [anon_sym_TILDE] = ACTIONS(1344), - [anon_sym_DASH] = ACTIONS(1342), - [anon_sym_PLUS] = ACTIONS(1342), - [anon_sym_STAR] = ACTIONS(1344), - [anon_sym_AMP] = ACTIONS(1344), - [anon_sym_SEMI] = ACTIONS(1344), - [anon_sym___extension__] = ACTIONS(1342), - [anon_sym_typedef] = ACTIONS(1342), - [anon_sym_extern] = ACTIONS(1342), - [anon_sym___attribute__] = ACTIONS(1342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), - [anon_sym___declspec] = ACTIONS(1342), - [anon_sym___cdecl] = ACTIONS(1342), - [anon_sym___clrcall] = ACTIONS(1342), - [anon_sym___stdcall] = ACTIONS(1342), - [anon_sym___fastcall] = ACTIONS(1342), - [anon_sym___thiscall] = ACTIONS(1342), - [anon_sym___vectorcall] = ACTIONS(1342), - [anon_sym_LBRACE] = ACTIONS(1344), - [anon_sym_signed] = ACTIONS(1342), - [anon_sym_unsigned] = ACTIONS(1342), - [anon_sym_long] = ACTIONS(1342), - [anon_sym_short] = ACTIONS(1342), - [anon_sym_static] = ACTIONS(1342), - [anon_sym_auto] = ACTIONS(1342), - [anon_sym_register] = ACTIONS(1342), - [anon_sym_inline] = ACTIONS(1342), - [anon_sym___inline] = ACTIONS(1342), - [anon_sym___inline__] = ACTIONS(1342), - [anon_sym___forceinline] = ACTIONS(1342), - [anon_sym_thread_local] = ACTIONS(1342), - [anon_sym___thread] = ACTIONS(1342), - [anon_sym_const] = ACTIONS(1342), - [anon_sym_constexpr] = ACTIONS(1342), - [anon_sym_volatile] = ACTIONS(1342), - [anon_sym_restrict] = ACTIONS(1342), - [anon_sym___restrict__] = ACTIONS(1342), - [anon_sym__Atomic] = ACTIONS(1342), - [anon_sym__Noreturn] = ACTIONS(1342), - [anon_sym_noreturn] = ACTIONS(1342), - [sym_primitive_type] = ACTIONS(1342), - [anon_sym_enum] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1342), - [anon_sym_union] = ACTIONS(1342), - [anon_sym_if] = ACTIONS(1342), - [anon_sym_else] = ACTIONS(1342), - [anon_sym_switch] = ACTIONS(1342), - [anon_sym_case] = ACTIONS(1342), - [anon_sym_default] = ACTIONS(1342), - [anon_sym_while] = ACTIONS(1342), - [anon_sym_do] = ACTIONS(1342), - [anon_sym_for] = ACTIONS(1342), - [anon_sym_return] = ACTIONS(1342), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_goto] = ACTIONS(1342), - [anon_sym___try] = ACTIONS(1342), - [anon_sym___leave] = ACTIONS(1342), - [anon_sym_DASH_DASH] = ACTIONS(1344), - [anon_sym_PLUS_PLUS] = ACTIONS(1344), - [anon_sym_sizeof] = ACTIONS(1342), - [anon_sym___alignof__] = ACTIONS(1342), - [anon_sym___alignof] = ACTIONS(1342), - [anon_sym__alignof] = ACTIONS(1342), - [anon_sym_alignof] = ACTIONS(1342), - [anon_sym__Alignof] = ACTIONS(1342), - [anon_sym_offsetof] = ACTIONS(1342), - [anon_sym__Generic] = ACTIONS(1342), - [anon_sym_asm] = ACTIONS(1342), - [anon_sym___asm__] = ACTIONS(1342), - [sym_number_literal] = ACTIONS(1344), - [anon_sym_L_SQUOTE] = ACTIONS(1344), - [anon_sym_u_SQUOTE] = ACTIONS(1344), - [anon_sym_U_SQUOTE] = ACTIONS(1344), - [anon_sym_u8_SQUOTE] = ACTIONS(1344), - [anon_sym_SQUOTE] = ACTIONS(1344), - [anon_sym_L_DQUOTE] = ACTIONS(1344), - [anon_sym_u_DQUOTE] = ACTIONS(1344), - [anon_sym_U_DQUOTE] = ACTIONS(1344), - [anon_sym_u8_DQUOTE] = ACTIONS(1344), - [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_true] = ACTIONS(1342), - [sym_false] = ACTIONS(1342), - [anon_sym_NULL] = ACTIONS(1342), - [anon_sym_nullptr] = ACTIONS(1342), + [307] = { + [ts_builtin_sym_end] = ACTIONS(1364), + [sym_identifier] = ACTIONS(1362), + [aux_sym_preproc_include_token1] = ACTIONS(1362), + [aux_sym_preproc_def_token1] = ACTIONS(1362), + [aux_sym_preproc_if_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), + [sym_preproc_directive] = ACTIONS(1362), + [anon_sym_LPAREN2] = ACTIONS(1364), + [anon_sym_BANG] = ACTIONS(1364), + [anon_sym_TILDE] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1362), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym___extension__] = ACTIONS(1362), + [anon_sym_typedef] = ACTIONS(1362), + [anon_sym_extern] = ACTIONS(1362), + [anon_sym___attribute__] = ACTIONS(1362), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), + [anon_sym___declspec] = ACTIONS(1362), + [anon_sym___cdecl] = ACTIONS(1362), + [anon_sym___clrcall] = ACTIONS(1362), + [anon_sym___stdcall] = ACTIONS(1362), + [anon_sym___fastcall] = ACTIONS(1362), + [anon_sym___thiscall] = ACTIONS(1362), + [anon_sym___vectorcall] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1364), + [anon_sym_signed] = ACTIONS(1362), + [anon_sym_unsigned] = ACTIONS(1362), + [anon_sym_long] = ACTIONS(1362), + [anon_sym_short] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_auto] = ACTIONS(1362), + [anon_sym_register] = ACTIONS(1362), + [anon_sym_inline] = ACTIONS(1362), + [anon_sym___inline] = ACTIONS(1362), + [anon_sym___inline__] = ACTIONS(1362), + [anon_sym___forceinline] = ACTIONS(1362), + [anon_sym_thread_local] = ACTIONS(1362), + [anon_sym___thread] = ACTIONS(1362), + [anon_sym_const] = ACTIONS(1362), + [anon_sym_constexpr] = ACTIONS(1362), + [anon_sym_volatile] = ACTIONS(1362), + [anon_sym_restrict] = ACTIONS(1362), + [anon_sym___restrict__] = ACTIONS(1362), + [anon_sym__Atomic] = ACTIONS(1362), + [anon_sym__Noreturn] = ACTIONS(1362), + [anon_sym_noreturn] = ACTIONS(1362), + [sym_primitive_type] = ACTIONS(1362), + [anon_sym_enum] = ACTIONS(1362), + [anon_sym_struct] = ACTIONS(1362), + [anon_sym_union] = ACTIONS(1362), + [anon_sym_if] = ACTIONS(1362), + [anon_sym_else] = ACTIONS(1362), + [anon_sym_switch] = ACTIONS(1362), + [anon_sym_case] = ACTIONS(1362), + [anon_sym_default] = ACTIONS(1362), + [anon_sym_while] = ACTIONS(1362), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1362), + [anon_sym_return] = ACTIONS(1362), + [anon_sym_break] = ACTIONS(1362), + [anon_sym_continue] = ACTIONS(1362), + [anon_sym_goto] = ACTIONS(1362), + [anon_sym___try] = ACTIONS(1362), + [anon_sym___leave] = ACTIONS(1362), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_sizeof] = ACTIONS(1362), + [anon_sym___alignof__] = ACTIONS(1362), + [anon_sym___alignof] = ACTIONS(1362), + [anon_sym__alignof] = ACTIONS(1362), + [anon_sym_alignof] = ACTIONS(1362), + [anon_sym__Alignof] = ACTIONS(1362), + [anon_sym_offsetof] = ACTIONS(1362), + [anon_sym__Generic] = ACTIONS(1362), + [anon_sym_asm] = ACTIONS(1362), + [anon_sym___asm__] = ACTIONS(1362), + [sym_number_literal] = ACTIONS(1364), + [anon_sym_L_SQUOTE] = ACTIONS(1364), + [anon_sym_u_SQUOTE] = ACTIONS(1364), + [anon_sym_U_SQUOTE] = ACTIONS(1364), + [anon_sym_u8_SQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [anon_sym_L_DQUOTE] = ACTIONS(1364), + [anon_sym_u_DQUOTE] = ACTIONS(1364), + [anon_sym_U_DQUOTE] = ACTIONS(1364), + [anon_sym_u8_DQUOTE] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [sym_true] = ACTIONS(1362), + [sym_false] = ACTIONS(1362), + [anon_sym_NULL] = ACTIONS(1362), + [anon_sym_nullptr] = ACTIONS(1362), + [sym_comment] = ACTIONS(3), + }, + [308] = { + [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___extension__] = ACTIONS(1386), + [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_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = 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), }, - [311] = { + [309] = { [sym_identifier] = ACTIONS(1346), [aux_sym_preproc_include_token1] = ACTIONS(1346), [aux_sym_preproc_def_token1] = ACTIONS(1346), [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token2] = ACTIONS(1346), [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), [sym_preproc_directive] = ACTIONS(1346), @@ -51980,7 +51990,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1346), [anon_sym___vectorcall] = ACTIONS(1346), [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1348), [anon_sym_signed] = ACTIONS(1346), [anon_sym_unsigned] = ACTIONS(1346), [anon_sym_long] = ACTIONS(1346), @@ -52049,105 +52058,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1346), [sym_comment] = ACTIONS(3), }, - [312] = { - [sym_identifier] = ACTIONS(1334), - [aux_sym_preproc_include_token1] = ACTIONS(1334), - [aux_sym_preproc_def_token1] = ACTIONS(1334), - [aux_sym_preproc_if_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), - [sym_preproc_directive] = ACTIONS(1334), - [anon_sym_LPAREN2] = ACTIONS(1336), - [anon_sym_BANG] = ACTIONS(1336), - [anon_sym_TILDE] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_SEMI] = ACTIONS(1336), - [anon_sym___extension__] = ACTIONS(1334), - [anon_sym_typedef] = ACTIONS(1334), - [anon_sym_extern] = ACTIONS(1334), - [anon_sym___attribute__] = ACTIONS(1334), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), - [anon_sym___declspec] = ACTIONS(1334), - [anon_sym___cdecl] = ACTIONS(1334), - [anon_sym___clrcall] = ACTIONS(1334), - [anon_sym___stdcall] = ACTIONS(1334), - [anon_sym___fastcall] = ACTIONS(1334), - [anon_sym___thiscall] = ACTIONS(1334), - [anon_sym___vectorcall] = ACTIONS(1334), - [anon_sym_LBRACE] = ACTIONS(1336), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_signed] = ACTIONS(1334), - [anon_sym_unsigned] = ACTIONS(1334), - [anon_sym_long] = ACTIONS(1334), - [anon_sym_short] = ACTIONS(1334), - [anon_sym_static] = ACTIONS(1334), - [anon_sym_auto] = ACTIONS(1334), - [anon_sym_register] = ACTIONS(1334), - [anon_sym_inline] = ACTIONS(1334), - [anon_sym___inline] = ACTIONS(1334), - [anon_sym___inline__] = ACTIONS(1334), - [anon_sym___forceinline] = ACTIONS(1334), - [anon_sym_thread_local] = ACTIONS(1334), - [anon_sym___thread] = ACTIONS(1334), - [anon_sym_const] = ACTIONS(1334), - [anon_sym_constexpr] = ACTIONS(1334), - [anon_sym_volatile] = ACTIONS(1334), - [anon_sym_restrict] = ACTIONS(1334), - [anon_sym___restrict__] = ACTIONS(1334), - [anon_sym__Atomic] = ACTIONS(1334), - [anon_sym__Noreturn] = ACTIONS(1334), - [anon_sym_noreturn] = ACTIONS(1334), - [sym_primitive_type] = ACTIONS(1334), - [anon_sym_enum] = ACTIONS(1334), - [anon_sym_struct] = ACTIONS(1334), - [anon_sym_union] = ACTIONS(1334), - [anon_sym_if] = ACTIONS(1334), - [anon_sym_else] = ACTIONS(1334), - [anon_sym_switch] = ACTIONS(1334), - [anon_sym_case] = ACTIONS(1334), - [anon_sym_default] = ACTIONS(1334), - [anon_sym_while] = ACTIONS(1334), - [anon_sym_do] = ACTIONS(1334), - [anon_sym_for] = ACTIONS(1334), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_break] = ACTIONS(1334), - [anon_sym_continue] = ACTIONS(1334), - [anon_sym_goto] = ACTIONS(1334), - [anon_sym___try] = ACTIONS(1334), - [anon_sym___leave] = ACTIONS(1334), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_sizeof] = ACTIONS(1334), - [anon_sym___alignof__] = ACTIONS(1334), - [anon_sym___alignof] = ACTIONS(1334), - [anon_sym__alignof] = ACTIONS(1334), - [anon_sym_alignof] = ACTIONS(1334), - [anon_sym__Alignof] = ACTIONS(1334), - [anon_sym_offsetof] = ACTIONS(1334), - [anon_sym__Generic] = ACTIONS(1334), - [anon_sym_asm] = ACTIONS(1334), - [anon_sym___asm__] = ACTIONS(1334), - [sym_number_literal] = ACTIONS(1336), - [anon_sym_L_SQUOTE] = ACTIONS(1336), - [anon_sym_u_SQUOTE] = ACTIONS(1336), - [anon_sym_U_SQUOTE] = ACTIONS(1336), - [anon_sym_u8_SQUOTE] = ACTIONS(1336), - [anon_sym_SQUOTE] = ACTIONS(1336), - [anon_sym_L_DQUOTE] = ACTIONS(1336), - [anon_sym_u_DQUOTE] = ACTIONS(1336), - [anon_sym_U_DQUOTE] = ACTIONS(1336), - [anon_sym_u8_DQUOTE] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_true] = ACTIONS(1334), - [sym_false] = ACTIONS(1334), - [anon_sym_NULL] = ACTIONS(1334), - [anon_sym_nullptr] = ACTIONS(1334), + [310] = { + [ts_builtin_sym_end] = ACTIONS(1408), + [sym_identifier] = ACTIONS(1406), + [aux_sym_preproc_include_token1] = ACTIONS(1406), + [aux_sym_preproc_def_token1] = ACTIONS(1406), + [aux_sym_preproc_if_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), + [sym_preproc_directive] = ACTIONS(1406), + [anon_sym_LPAREN2] = ACTIONS(1408), + [anon_sym_BANG] = ACTIONS(1408), + [anon_sym_TILDE] = ACTIONS(1408), + [anon_sym_DASH] = ACTIONS(1406), + [anon_sym_PLUS] = ACTIONS(1406), + [anon_sym_STAR] = ACTIONS(1408), + [anon_sym_AMP] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1408), + [anon_sym___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = 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___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = 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), }, - [313] = { + [311] = { + [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___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_RBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = 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___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = 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), + }, + [312] = { + [ts_builtin_sym_end] = ACTIONS(1324), [sym_identifier] = ACTIONS(1322), [aux_sym_preproc_include_token1] = ACTIONS(1322), [aux_sym_preproc_def_token1] = ACTIONS(1322), @@ -52176,7 +52284,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(1322), [anon_sym___vectorcall] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), [anon_sym_signed] = ACTIONS(1322), [anon_sym_unsigned] = ACTIONS(1322), [anon_sym_long] = ACTIONS(1322), @@ -52236,800 +52343,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1324), [anon_sym_L_DQUOTE] = ACTIONS(1324), [anon_sym_u_DQUOTE] = ACTIONS(1324), - [anon_sym_U_DQUOTE] = ACTIONS(1324), - [anon_sym_u8_DQUOTE] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_true] = ACTIONS(1322), - [sym_false] = ACTIONS(1322), - [anon_sym_NULL] = ACTIONS(1322), - [anon_sym_nullptr] = ACTIONS(1322), - [sym_comment] = ACTIONS(3), - }, - [314] = { - [ts_builtin_sym_end] = ACTIONS(1352), - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - }, - [315] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [316] = { - [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___extension__] = ACTIONS(1370), - [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_signed] = ACTIONS(1370), - [anon_sym_unsigned] = ACTIONS(1370), - [anon_sym_long] = ACTIONS(1370), - [anon_sym_short] = ACTIONS(1370), - [anon_sym_static] = ACTIONS(1370), - [anon_sym_auto] = ACTIONS(1370), - [anon_sym_register] = ACTIONS(1370), - [anon_sym_inline] = ACTIONS(1370), - [anon_sym___inline] = ACTIONS(1370), - [anon_sym___inline__] = ACTIONS(1370), - [anon_sym___forceinline] = ACTIONS(1370), - [anon_sym_thread_local] = ACTIONS(1370), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1370), - [anon_sym___leave] = ACTIONS(1370), - [anon_sym_DASH_DASH] = ACTIONS(1372), - [anon_sym_PLUS_PLUS] = ACTIONS(1372), - [anon_sym_sizeof] = ACTIONS(1370), - [anon_sym___alignof__] = ACTIONS(1370), - [anon_sym___alignof] = ACTIONS(1370), - [anon_sym__alignof] = ACTIONS(1370), - [anon_sym_alignof] = ACTIONS(1370), - [anon_sym__Alignof] = 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), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [317] = { - [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___extension__] = ACTIONS(1374), - [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_signed] = ACTIONS(1374), - [anon_sym_unsigned] = ACTIONS(1374), - [anon_sym_long] = ACTIONS(1374), - [anon_sym_short] = ACTIONS(1374), - [anon_sym_static] = ACTIONS(1374), - [anon_sym_auto] = ACTIONS(1374), - [anon_sym_register] = ACTIONS(1374), - [anon_sym_inline] = ACTIONS(1374), - [anon_sym___inline] = ACTIONS(1374), - [anon_sym___inline__] = ACTIONS(1374), - [anon_sym___forceinline] = ACTIONS(1374), - [anon_sym_thread_local] = ACTIONS(1374), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1374), - [anon_sym___leave] = ACTIONS(1374), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_sizeof] = ACTIONS(1374), - [anon_sym___alignof__] = ACTIONS(1374), - [anon_sym___alignof] = ACTIONS(1374), - [anon_sym__alignof] = ACTIONS(1374), - [anon_sym_alignof] = ACTIONS(1374), - [anon_sym__Alignof] = 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), + [313] = { + [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_SEMI] = ACTIONS(1412), + [anon_sym___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = 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___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = 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), }, - [318] = { - [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___extension__] = ACTIONS(1382), - [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_signed] = ACTIONS(1382), - [anon_sym_unsigned] = ACTIONS(1382), - [anon_sym_long] = ACTIONS(1382), - [anon_sym_short] = ACTIONS(1382), - [anon_sym_static] = ACTIONS(1382), - [anon_sym_auto] = ACTIONS(1382), - [anon_sym_register] = ACTIONS(1382), - [anon_sym_inline] = ACTIONS(1382), - [anon_sym___inline] = ACTIONS(1382), - [anon_sym___inline__] = ACTIONS(1382), - [anon_sym___forceinline] = ACTIONS(1382), - [anon_sym_thread_local] = ACTIONS(1382), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1382), - [anon_sym___leave] = ACTIONS(1382), - [anon_sym_DASH_DASH] = ACTIONS(1384), - [anon_sym_PLUS_PLUS] = ACTIONS(1384), - [anon_sym_sizeof] = ACTIONS(1382), - [anon_sym___alignof__] = ACTIONS(1382), - [anon_sym___alignof] = ACTIONS(1382), - [anon_sym__alignof] = ACTIONS(1382), - [anon_sym_alignof] = ACTIONS(1382), - [anon_sym__Alignof] = 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), + [314] = { + [ts_builtin_sym_end] = ACTIONS(1344), + [sym_identifier] = ACTIONS(1342), + [aux_sym_preproc_include_token1] = ACTIONS(1342), + [aux_sym_preproc_def_token1] = ACTIONS(1342), + [aux_sym_preproc_if_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1342), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1342), + [sym_preproc_directive] = ACTIONS(1342), + [anon_sym_LPAREN2] = ACTIONS(1344), + [anon_sym_BANG] = ACTIONS(1344), + [anon_sym_TILDE] = ACTIONS(1344), + [anon_sym_DASH] = ACTIONS(1342), + [anon_sym_PLUS] = ACTIONS(1342), + [anon_sym_STAR] = ACTIONS(1344), + [anon_sym_AMP] = ACTIONS(1344), + [anon_sym_SEMI] = ACTIONS(1344), + [anon_sym___extension__] = ACTIONS(1342), + [anon_sym_typedef] = ACTIONS(1342), + [anon_sym_extern] = ACTIONS(1342), + [anon_sym___attribute__] = ACTIONS(1342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1344), + [anon_sym___declspec] = ACTIONS(1342), + [anon_sym___cdecl] = ACTIONS(1342), + [anon_sym___clrcall] = ACTIONS(1342), + [anon_sym___stdcall] = ACTIONS(1342), + [anon_sym___fastcall] = ACTIONS(1342), + [anon_sym___thiscall] = ACTIONS(1342), + [anon_sym___vectorcall] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_signed] = ACTIONS(1342), + [anon_sym_unsigned] = ACTIONS(1342), + [anon_sym_long] = ACTIONS(1342), + [anon_sym_short] = ACTIONS(1342), + [anon_sym_static] = ACTIONS(1342), + [anon_sym_auto] = ACTIONS(1342), + [anon_sym_register] = ACTIONS(1342), + [anon_sym_inline] = ACTIONS(1342), + [anon_sym___inline] = ACTIONS(1342), + [anon_sym___inline__] = ACTIONS(1342), + [anon_sym___forceinline] = ACTIONS(1342), + [anon_sym_thread_local] = ACTIONS(1342), + [anon_sym___thread] = ACTIONS(1342), + [anon_sym_const] = ACTIONS(1342), + [anon_sym_constexpr] = ACTIONS(1342), + [anon_sym_volatile] = ACTIONS(1342), + [anon_sym_restrict] = ACTIONS(1342), + [anon_sym___restrict__] = ACTIONS(1342), + [anon_sym__Atomic] = ACTIONS(1342), + [anon_sym__Noreturn] = ACTIONS(1342), + [anon_sym_noreturn] = ACTIONS(1342), + [sym_primitive_type] = ACTIONS(1342), + [anon_sym_enum] = ACTIONS(1342), + [anon_sym_struct] = ACTIONS(1342), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_if] = ACTIONS(1342), + [anon_sym_else] = ACTIONS(1342), + [anon_sym_switch] = ACTIONS(1342), + [anon_sym_case] = ACTIONS(1342), + [anon_sym_default] = ACTIONS(1342), + [anon_sym_while] = ACTIONS(1342), + [anon_sym_do] = ACTIONS(1342), + [anon_sym_for] = ACTIONS(1342), + [anon_sym_return] = ACTIONS(1342), + [anon_sym_break] = ACTIONS(1342), + [anon_sym_continue] = ACTIONS(1342), + [anon_sym_goto] = ACTIONS(1342), + [anon_sym___try] = ACTIONS(1342), + [anon_sym___leave] = ACTIONS(1342), + [anon_sym_DASH_DASH] = ACTIONS(1344), + [anon_sym_PLUS_PLUS] = ACTIONS(1344), + [anon_sym_sizeof] = ACTIONS(1342), + [anon_sym___alignof__] = ACTIONS(1342), + [anon_sym___alignof] = ACTIONS(1342), + [anon_sym__alignof] = ACTIONS(1342), + [anon_sym_alignof] = ACTIONS(1342), + [anon_sym__Alignof] = ACTIONS(1342), + [anon_sym_offsetof] = ACTIONS(1342), + [anon_sym__Generic] = ACTIONS(1342), + [anon_sym_asm] = ACTIONS(1342), + [anon_sym___asm__] = ACTIONS(1342), + [sym_number_literal] = ACTIONS(1344), + [anon_sym_L_SQUOTE] = ACTIONS(1344), + [anon_sym_u_SQUOTE] = ACTIONS(1344), + [anon_sym_U_SQUOTE] = ACTIONS(1344), + [anon_sym_u8_SQUOTE] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), + [anon_sym_L_DQUOTE] = ACTIONS(1344), + [anon_sym_u_DQUOTE] = ACTIONS(1344), + [anon_sym_U_DQUOTE] = ACTIONS(1344), + [anon_sym_u8_DQUOTE] = ACTIONS(1344), + [anon_sym_DQUOTE] = ACTIONS(1344), + [sym_true] = ACTIONS(1342), + [sym_false] = ACTIONS(1342), + [anon_sym_NULL] = ACTIONS(1342), + [anon_sym_nullptr] = ACTIONS(1342), [sym_comment] = ACTIONS(3), }, - [319] = { - [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___extension__] = ACTIONS(1386), - [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_signed] = ACTIONS(1386), - [anon_sym_unsigned] = ACTIONS(1386), - [anon_sym_long] = ACTIONS(1386), - [anon_sym_short] = ACTIONS(1386), - [anon_sym_static] = ACTIONS(1386), - [anon_sym_auto] = ACTIONS(1386), - [anon_sym_register] = ACTIONS(1386), - [anon_sym_inline] = ACTIONS(1386), - [anon_sym___inline] = ACTIONS(1386), - [anon_sym___inline__] = ACTIONS(1386), - [anon_sym___forceinline] = ACTIONS(1386), - [anon_sym_thread_local] = ACTIONS(1386), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1386), - [anon_sym___leave] = ACTIONS(1386), - [anon_sym_DASH_DASH] = ACTIONS(1388), - [anon_sym_PLUS_PLUS] = ACTIONS(1388), - [anon_sym_sizeof] = ACTIONS(1386), - [anon_sym___alignof__] = ACTIONS(1386), - [anon_sym___alignof] = ACTIONS(1386), - [anon_sym__alignof] = ACTIONS(1386), - [anon_sym_alignof] = ACTIONS(1386), - [anon_sym__Alignof] = 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), + [315] = { + [sym_identifier] = ACTIONS(1334), + [aux_sym_preproc_include_token1] = ACTIONS(1334), + [aux_sym_preproc_def_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token1] = ACTIONS(1334), + [aux_sym_preproc_if_token2] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1334), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1334), + [sym_preproc_directive] = ACTIONS(1334), + [anon_sym_LPAREN2] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1334), + [anon_sym_PLUS] = ACTIONS(1334), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym___extension__] = ACTIONS(1334), + [anon_sym_typedef] = ACTIONS(1334), + [anon_sym_extern] = ACTIONS(1334), + [anon_sym___attribute__] = ACTIONS(1334), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1336), + [anon_sym___declspec] = ACTIONS(1334), + [anon_sym___cdecl] = ACTIONS(1334), + [anon_sym___clrcall] = ACTIONS(1334), + [anon_sym___stdcall] = ACTIONS(1334), + [anon_sym___fastcall] = ACTIONS(1334), + [anon_sym___thiscall] = ACTIONS(1334), + [anon_sym___vectorcall] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_signed] = ACTIONS(1334), + [anon_sym_unsigned] = ACTIONS(1334), + [anon_sym_long] = ACTIONS(1334), + [anon_sym_short] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_auto] = ACTIONS(1334), + [anon_sym_register] = ACTIONS(1334), + [anon_sym_inline] = ACTIONS(1334), + [anon_sym___inline] = ACTIONS(1334), + [anon_sym___inline__] = ACTIONS(1334), + [anon_sym___forceinline] = ACTIONS(1334), + [anon_sym_thread_local] = ACTIONS(1334), + [anon_sym___thread] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_constexpr] = ACTIONS(1334), + [anon_sym_volatile] = ACTIONS(1334), + [anon_sym_restrict] = ACTIONS(1334), + [anon_sym___restrict__] = ACTIONS(1334), + [anon_sym__Atomic] = ACTIONS(1334), + [anon_sym__Noreturn] = ACTIONS(1334), + [anon_sym_noreturn] = ACTIONS(1334), + [sym_primitive_type] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_else] = ACTIONS(1334), + [anon_sym_switch] = ACTIONS(1334), + [anon_sym_case] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [anon_sym_do] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_goto] = ACTIONS(1334), + [anon_sym___try] = ACTIONS(1334), + [anon_sym___leave] = ACTIONS(1334), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_sizeof] = ACTIONS(1334), + [anon_sym___alignof__] = ACTIONS(1334), + [anon_sym___alignof] = ACTIONS(1334), + [anon_sym__alignof] = ACTIONS(1334), + [anon_sym_alignof] = ACTIONS(1334), + [anon_sym__Alignof] = ACTIONS(1334), + [anon_sym_offsetof] = ACTIONS(1334), + [anon_sym__Generic] = ACTIONS(1334), + [anon_sym_asm] = ACTIONS(1334), + [anon_sym___asm__] = ACTIONS(1334), + [sym_number_literal] = ACTIONS(1336), + [anon_sym_L_SQUOTE] = ACTIONS(1336), + [anon_sym_u_SQUOTE] = ACTIONS(1336), + [anon_sym_U_SQUOTE] = ACTIONS(1336), + [anon_sym_u8_SQUOTE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), + [anon_sym_L_DQUOTE] = ACTIONS(1336), + [anon_sym_u_DQUOTE] = ACTIONS(1336), + [anon_sym_U_DQUOTE] = ACTIONS(1336), + [anon_sym_u8_DQUOTE] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1336), + [sym_true] = ACTIONS(1334), + [sym_false] = ACTIONS(1334), + [anon_sym_NULL] = ACTIONS(1334), + [anon_sym_nullptr] = ACTIONS(1334), [sym_comment] = ACTIONS(3), }, - [320] = { - [sym_identifier] = ACTIONS(1318), - [aux_sym_preproc_include_token1] = ACTIONS(1318), - [aux_sym_preproc_def_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token1] = ACTIONS(1318), - [aux_sym_preproc_if_token2] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(1318), - [anon_sym_LPAREN2] = ACTIONS(1320), - [anon_sym_BANG] = ACTIONS(1320), - [anon_sym_TILDE] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1318), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1318), - [anon_sym_typedef] = ACTIONS(1318), - [anon_sym_extern] = ACTIONS(1318), - [anon_sym___attribute__] = ACTIONS(1318), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), - [anon_sym___declspec] = ACTIONS(1318), - [anon_sym___cdecl] = ACTIONS(1318), - [anon_sym___clrcall] = ACTIONS(1318), - [anon_sym___stdcall] = ACTIONS(1318), - [anon_sym___fastcall] = ACTIONS(1318), - [anon_sym___thiscall] = ACTIONS(1318), - [anon_sym___vectorcall] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_signed] = ACTIONS(1318), - [anon_sym_unsigned] = ACTIONS(1318), - [anon_sym_long] = ACTIONS(1318), - [anon_sym_short] = ACTIONS(1318), - [anon_sym_static] = ACTIONS(1318), - [anon_sym_auto] = ACTIONS(1318), - [anon_sym_register] = ACTIONS(1318), - [anon_sym_inline] = ACTIONS(1318), - [anon_sym___inline] = ACTIONS(1318), - [anon_sym___inline__] = ACTIONS(1318), - [anon_sym___forceinline] = ACTIONS(1318), - [anon_sym_thread_local] = ACTIONS(1318), - [anon_sym___thread] = ACTIONS(1318), - [anon_sym_const] = ACTIONS(1318), - [anon_sym_constexpr] = ACTIONS(1318), - [anon_sym_volatile] = ACTIONS(1318), - [anon_sym_restrict] = ACTIONS(1318), - [anon_sym___restrict__] = ACTIONS(1318), - [anon_sym__Atomic] = ACTIONS(1318), - [anon_sym__Noreturn] = ACTIONS(1318), - [anon_sym_noreturn] = ACTIONS(1318), - [sym_primitive_type] = ACTIONS(1318), - [anon_sym_enum] = ACTIONS(1318), - [anon_sym_struct] = ACTIONS(1318), - [anon_sym_union] = ACTIONS(1318), - [anon_sym_if] = ACTIONS(1318), - [anon_sym_else] = ACTIONS(1318), - [anon_sym_switch] = ACTIONS(1318), - [anon_sym_case] = ACTIONS(1318), - [anon_sym_default] = ACTIONS(1318), - [anon_sym_while] = ACTIONS(1318), - [anon_sym_do] = ACTIONS(1318), - [anon_sym_for] = ACTIONS(1318), - [anon_sym_return] = ACTIONS(1318), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_goto] = ACTIONS(1318), - [anon_sym___try] = ACTIONS(1318), - [anon_sym___leave] = ACTIONS(1318), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_sizeof] = ACTIONS(1318), - [anon_sym___alignof__] = ACTIONS(1318), - [anon_sym___alignof] = ACTIONS(1318), - [anon_sym__alignof] = ACTIONS(1318), - [anon_sym_alignof] = ACTIONS(1318), - [anon_sym__Alignof] = ACTIONS(1318), - [anon_sym_offsetof] = ACTIONS(1318), - [anon_sym__Generic] = ACTIONS(1318), - [anon_sym_asm] = ACTIONS(1318), - [anon_sym___asm__] = ACTIONS(1318), - [sym_number_literal] = ACTIONS(1320), - [anon_sym_L_SQUOTE] = ACTIONS(1320), - [anon_sym_u_SQUOTE] = ACTIONS(1320), - [anon_sym_U_SQUOTE] = ACTIONS(1320), - [anon_sym_u8_SQUOTE] = ACTIONS(1320), - [anon_sym_SQUOTE] = ACTIONS(1320), - [anon_sym_L_DQUOTE] = ACTIONS(1320), - [anon_sym_u_DQUOTE] = ACTIONS(1320), - [anon_sym_U_DQUOTE] = ACTIONS(1320), - [anon_sym_u8_DQUOTE] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_true] = ACTIONS(1318), - [sym_false] = ACTIONS(1318), - [anon_sym_NULL] = ACTIONS(1318), - [anon_sym_nullptr] = ACTIONS(1318), + [316] = { + [sym_identifier] = ACTIONS(1330), + [aux_sym_preproc_include_token1] = ACTIONS(1330), + [aux_sym_preproc_def_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token1] = ACTIONS(1330), + [aux_sym_preproc_if_token2] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), + [sym_preproc_directive] = ACTIONS(1330), + [anon_sym_LPAREN2] = ACTIONS(1332), + [anon_sym_BANG] = ACTIONS(1332), + [anon_sym_TILDE] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1330), + [anon_sym_PLUS] = ACTIONS(1330), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_SEMI] = ACTIONS(1332), + [anon_sym___extension__] = ACTIONS(1330), + [anon_sym_typedef] = ACTIONS(1330), + [anon_sym_extern] = ACTIONS(1330), + [anon_sym___attribute__] = ACTIONS(1330), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), + [anon_sym___declspec] = ACTIONS(1330), + [anon_sym___cdecl] = ACTIONS(1330), + [anon_sym___clrcall] = ACTIONS(1330), + [anon_sym___stdcall] = ACTIONS(1330), + [anon_sym___fastcall] = ACTIONS(1330), + [anon_sym___thiscall] = ACTIONS(1330), + [anon_sym___vectorcall] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1332), + [anon_sym_signed] = ACTIONS(1330), + [anon_sym_unsigned] = ACTIONS(1330), + [anon_sym_long] = ACTIONS(1330), + [anon_sym_short] = ACTIONS(1330), + [anon_sym_static] = ACTIONS(1330), + [anon_sym_auto] = ACTIONS(1330), + [anon_sym_register] = ACTIONS(1330), + [anon_sym_inline] = ACTIONS(1330), + [anon_sym___inline] = ACTIONS(1330), + [anon_sym___inline__] = ACTIONS(1330), + [anon_sym___forceinline] = ACTIONS(1330), + [anon_sym_thread_local] = ACTIONS(1330), + [anon_sym___thread] = ACTIONS(1330), + [anon_sym_const] = ACTIONS(1330), + [anon_sym_constexpr] = ACTIONS(1330), + [anon_sym_volatile] = ACTIONS(1330), + [anon_sym_restrict] = ACTIONS(1330), + [anon_sym___restrict__] = ACTIONS(1330), + [anon_sym__Atomic] = ACTIONS(1330), + [anon_sym__Noreturn] = ACTIONS(1330), + [anon_sym_noreturn] = ACTIONS(1330), + [sym_primitive_type] = ACTIONS(1330), + [anon_sym_enum] = ACTIONS(1330), + [anon_sym_struct] = ACTIONS(1330), + [anon_sym_union] = ACTIONS(1330), + [anon_sym_if] = ACTIONS(1330), + [anon_sym_else] = ACTIONS(1330), + [anon_sym_switch] = ACTIONS(1330), + [anon_sym_case] = ACTIONS(1330), + [anon_sym_default] = ACTIONS(1330), + [anon_sym_while] = ACTIONS(1330), + [anon_sym_do] = ACTIONS(1330), + [anon_sym_for] = ACTIONS(1330), + [anon_sym_return] = ACTIONS(1330), + [anon_sym_break] = ACTIONS(1330), + [anon_sym_continue] = ACTIONS(1330), + [anon_sym_goto] = ACTIONS(1330), + [anon_sym___try] = ACTIONS(1330), + [anon_sym___leave] = ACTIONS(1330), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_sizeof] = ACTIONS(1330), + [anon_sym___alignof__] = ACTIONS(1330), + [anon_sym___alignof] = ACTIONS(1330), + [anon_sym__alignof] = ACTIONS(1330), + [anon_sym_alignof] = ACTIONS(1330), + [anon_sym__Alignof] = ACTIONS(1330), + [anon_sym_offsetof] = ACTIONS(1330), + [anon_sym__Generic] = ACTIONS(1330), + [anon_sym_asm] = ACTIONS(1330), + [anon_sym___asm__] = ACTIONS(1330), + [sym_number_literal] = ACTIONS(1332), + [anon_sym_L_SQUOTE] = ACTIONS(1332), + [anon_sym_u_SQUOTE] = ACTIONS(1332), + [anon_sym_U_SQUOTE] = ACTIONS(1332), + [anon_sym_u8_SQUOTE] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), + [anon_sym_L_DQUOTE] = ACTIONS(1332), + [anon_sym_u_DQUOTE] = ACTIONS(1332), + [anon_sym_U_DQUOTE] = ACTIONS(1332), + [anon_sym_u8_DQUOTE] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1332), + [sym_true] = ACTIONS(1330), + [sym_false] = ACTIONS(1330), + [anon_sym_NULL] = ACTIONS(1330), + [anon_sym_nullptr] = ACTIONS(1330), [sym_comment] = ACTIONS(3), }, - [321] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [317] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [318] = { + [sym_identifier] = ACTIONS(1326), + [aux_sym_preproc_include_token1] = ACTIONS(1326), + [aux_sym_preproc_def_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token1] = ACTIONS(1326), + [aux_sym_preproc_if_token2] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), + [sym_preproc_directive] = ACTIONS(1326), + [anon_sym_LPAREN2] = ACTIONS(1328), + [anon_sym_BANG] = ACTIONS(1328), + [anon_sym_TILDE] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1326), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_SEMI] = ACTIONS(1328), + [anon_sym___extension__] = ACTIONS(1326), + [anon_sym_typedef] = ACTIONS(1326), + [anon_sym_extern] = ACTIONS(1326), + [anon_sym___attribute__] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), + [anon_sym___declspec] = ACTIONS(1326), + [anon_sym___cdecl] = ACTIONS(1326), + [anon_sym___clrcall] = ACTIONS(1326), + [anon_sym___stdcall] = ACTIONS(1326), + [anon_sym___fastcall] = ACTIONS(1326), + [anon_sym___thiscall] = ACTIONS(1326), + [anon_sym___vectorcall] = ACTIONS(1326), + [anon_sym_LBRACE] = ACTIONS(1328), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_static] = ACTIONS(1326), + [anon_sym_auto] = ACTIONS(1326), + [anon_sym_register] = ACTIONS(1326), + [anon_sym_inline] = ACTIONS(1326), + [anon_sym___inline] = ACTIONS(1326), + [anon_sym___inline__] = ACTIONS(1326), + [anon_sym___forceinline] = ACTIONS(1326), + [anon_sym_thread_local] = ACTIONS(1326), + [anon_sym___thread] = ACTIONS(1326), + [anon_sym_const] = ACTIONS(1326), + [anon_sym_constexpr] = ACTIONS(1326), + [anon_sym_volatile] = ACTIONS(1326), + [anon_sym_restrict] = ACTIONS(1326), + [anon_sym___restrict__] = ACTIONS(1326), + [anon_sym__Atomic] = ACTIONS(1326), + [anon_sym__Noreturn] = ACTIONS(1326), + [anon_sym_noreturn] = ACTIONS(1326), + [sym_primitive_type] = ACTIONS(1326), + [anon_sym_enum] = ACTIONS(1326), + [anon_sym_struct] = ACTIONS(1326), + [anon_sym_union] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1326), + [anon_sym_else] = ACTIONS(1326), + [anon_sym_switch] = ACTIONS(1326), + [anon_sym_case] = ACTIONS(1326), + [anon_sym_default] = ACTIONS(1326), + [anon_sym_while] = ACTIONS(1326), + [anon_sym_do] = ACTIONS(1326), + [anon_sym_for] = ACTIONS(1326), + [anon_sym_return] = ACTIONS(1326), + [anon_sym_break] = ACTIONS(1326), + [anon_sym_continue] = ACTIONS(1326), + [anon_sym_goto] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1326), + [anon_sym___leave] = ACTIONS(1326), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_sizeof] = ACTIONS(1326), + [anon_sym___alignof__] = ACTIONS(1326), + [anon_sym___alignof] = ACTIONS(1326), + [anon_sym__alignof] = ACTIONS(1326), + [anon_sym_alignof] = ACTIONS(1326), + [anon_sym__Alignof] = ACTIONS(1326), + [anon_sym_offsetof] = ACTIONS(1326), + [anon_sym__Generic] = ACTIONS(1326), + [anon_sym_asm] = ACTIONS(1326), + [anon_sym___asm__] = ACTIONS(1326), + [sym_number_literal] = ACTIONS(1328), + [anon_sym_L_SQUOTE] = ACTIONS(1328), + [anon_sym_u_SQUOTE] = ACTIONS(1328), + [anon_sym_U_SQUOTE] = ACTIONS(1328), + [anon_sym_u8_SQUOTE] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), + [anon_sym_L_DQUOTE] = ACTIONS(1328), + [anon_sym_u_DQUOTE] = ACTIONS(1328), + [anon_sym_U_DQUOTE] = ACTIONS(1328), + [anon_sym_u8_DQUOTE] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1328), + [sym_true] = ACTIONS(1326), + [sym_false] = ACTIONS(1326), + [anon_sym_NULL] = ACTIONS(1326), + [anon_sym_nullptr] = ACTIONS(1326), [sym_comment] = ACTIONS(3), }, - [322] = { + [319] = { [sym_identifier] = ACTIONS(1298), [aux_sym_preproc_include_token1] = ACTIONS(1298), [aux_sym_preproc_def_token1] = ACTIONS(1298), @@ -53127,1967 +53038,2849 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, + [320] = { + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token2] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), + [sym_comment] = ACTIONS(3), + }, + [321] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [322] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, [323] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [324] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [325] = { - [sym_identifier] = ACTIONS(1338), - [aux_sym_preproc_include_token1] = ACTIONS(1338), - [aux_sym_preproc_def_token1] = ACTIONS(1338), - [aux_sym_preproc_if_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), - [sym_preproc_directive] = ACTIONS(1338), - [anon_sym_LPAREN2] = ACTIONS(1340), - [anon_sym_BANG] = ACTIONS(1340), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1338), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1340), - [anon_sym___extension__] = ACTIONS(1338), - [anon_sym_typedef] = ACTIONS(1338), - [anon_sym_extern] = ACTIONS(1338), - [anon_sym___attribute__] = ACTIONS(1338), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), - [anon_sym___declspec] = ACTIONS(1338), - [anon_sym___cdecl] = ACTIONS(1338), - [anon_sym___clrcall] = ACTIONS(1338), - [anon_sym___stdcall] = ACTIONS(1338), - [anon_sym___fastcall] = ACTIONS(1338), - [anon_sym___thiscall] = ACTIONS(1338), - [anon_sym___vectorcall] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1340), - [anon_sym_RBRACE] = ACTIONS(1340), - [anon_sym_signed] = ACTIONS(1338), - [anon_sym_unsigned] = ACTIONS(1338), - [anon_sym_long] = ACTIONS(1338), - [anon_sym_short] = ACTIONS(1338), - [anon_sym_static] = ACTIONS(1338), - [anon_sym_auto] = ACTIONS(1338), - [anon_sym_register] = ACTIONS(1338), - [anon_sym_inline] = ACTIONS(1338), - [anon_sym___inline] = ACTIONS(1338), - [anon_sym___inline__] = ACTIONS(1338), - [anon_sym___forceinline] = ACTIONS(1338), - [anon_sym_thread_local] = ACTIONS(1338), - [anon_sym___thread] = ACTIONS(1338), - [anon_sym_const] = ACTIONS(1338), - [anon_sym_constexpr] = ACTIONS(1338), - [anon_sym_volatile] = ACTIONS(1338), - [anon_sym_restrict] = ACTIONS(1338), - [anon_sym___restrict__] = ACTIONS(1338), - [anon_sym__Atomic] = ACTIONS(1338), - [anon_sym__Noreturn] = ACTIONS(1338), - [anon_sym_noreturn] = ACTIONS(1338), - [sym_primitive_type] = ACTIONS(1338), - [anon_sym_enum] = ACTIONS(1338), - [anon_sym_struct] = ACTIONS(1338), - [anon_sym_union] = ACTIONS(1338), - [anon_sym_if] = ACTIONS(1338), - [anon_sym_else] = ACTIONS(1338), - [anon_sym_switch] = ACTIONS(1338), - [anon_sym_case] = ACTIONS(1338), - [anon_sym_default] = ACTIONS(1338), - [anon_sym_while] = ACTIONS(1338), - [anon_sym_do] = ACTIONS(1338), - [anon_sym_for] = ACTIONS(1338), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_break] = ACTIONS(1338), - [anon_sym_continue] = ACTIONS(1338), - [anon_sym_goto] = ACTIONS(1338), - [anon_sym___try] = ACTIONS(1338), - [anon_sym___leave] = ACTIONS(1338), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_sizeof] = ACTIONS(1338), - [anon_sym___alignof__] = ACTIONS(1338), - [anon_sym___alignof] = ACTIONS(1338), - [anon_sym__alignof] = ACTIONS(1338), - [anon_sym_alignof] = ACTIONS(1338), - [anon_sym__Alignof] = ACTIONS(1338), - [anon_sym_offsetof] = ACTIONS(1338), - [anon_sym__Generic] = ACTIONS(1338), - [anon_sym_asm] = ACTIONS(1338), - [anon_sym___asm__] = ACTIONS(1338), - [sym_number_literal] = ACTIONS(1340), - [anon_sym_L_SQUOTE] = ACTIONS(1340), - [anon_sym_u_SQUOTE] = ACTIONS(1340), - [anon_sym_U_SQUOTE] = ACTIONS(1340), - [anon_sym_u8_SQUOTE] = ACTIONS(1340), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_L_DQUOTE] = ACTIONS(1340), - [anon_sym_u_DQUOTE] = ACTIONS(1340), - [anon_sym_U_DQUOTE] = ACTIONS(1340), - [anon_sym_u8_DQUOTE] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_true] = ACTIONS(1338), - [sym_false] = ACTIONS(1338), - [anon_sym_NULL] = ACTIONS(1338), - [anon_sym_nullptr] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, [326] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [327] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [328] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [329] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [329] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [330] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1360), + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, [331] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [332] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, [333] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [334] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [335] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [334] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [336] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [335] = { - [sym_identifier] = ACTIONS(1366), - [aux_sym_preproc_include_token1] = ACTIONS(1366), - [aux_sym_preproc_def_token1] = ACTIONS(1366), - [aux_sym_preproc_if_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), - [sym_preproc_directive] = ACTIONS(1366), - [anon_sym_LPAREN2] = ACTIONS(1368), - [anon_sym_BANG] = ACTIONS(1368), - [anon_sym_TILDE] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1366), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_SEMI] = ACTIONS(1368), - [anon_sym___extension__] = ACTIONS(1366), - [anon_sym_typedef] = ACTIONS(1366), - [anon_sym_extern] = ACTIONS(1366), - [anon_sym___attribute__] = ACTIONS(1366), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), - [anon_sym___declspec] = ACTIONS(1366), - [anon_sym___cdecl] = ACTIONS(1366), - [anon_sym___clrcall] = ACTIONS(1366), - [anon_sym___stdcall] = ACTIONS(1366), - [anon_sym___fastcall] = ACTIONS(1366), - [anon_sym___thiscall] = ACTIONS(1366), - [anon_sym___vectorcall] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1368), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_signed] = ACTIONS(1366), - [anon_sym_unsigned] = ACTIONS(1366), - [anon_sym_long] = ACTIONS(1366), - [anon_sym_short] = ACTIONS(1366), - [anon_sym_static] = ACTIONS(1366), - [anon_sym_auto] = ACTIONS(1366), - [anon_sym_register] = ACTIONS(1366), - [anon_sym_inline] = ACTIONS(1366), - [anon_sym___inline] = ACTIONS(1366), - [anon_sym___inline__] = ACTIONS(1366), - [anon_sym___forceinline] = ACTIONS(1366), - [anon_sym_thread_local] = ACTIONS(1366), - [anon_sym___thread] = ACTIONS(1366), - [anon_sym_const] = ACTIONS(1366), - [anon_sym_constexpr] = ACTIONS(1366), - [anon_sym_volatile] = ACTIONS(1366), - [anon_sym_restrict] = ACTIONS(1366), - [anon_sym___restrict__] = ACTIONS(1366), - [anon_sym__Atomic] = ACTIONS(1366), - [anon_sym__Noreturn] = ACTIONS(1366), - [anon_sym_noreturn] = ACTIONS(1366), - [sym_primitive_type] = ACTIONS(1366), - [anon_sym_enum] = ACTIONS(1366), - [anon_sym_struct] = ACTIONS(1366), - [anon_sym_union] = ACTIONS(1366), - [anon_sym_if] = ACTIONS(1366), - [anon_sym_else] = ACTIONS(1366), - [anon_sym_switch] = ACTIONS(1366), - [anon_sym_case] = ACTIONS(1366), - [anon_sym_default] = ACTIONS(1366), - [anon_sym_while] = ACTIONS(1366), - [anon_sym_do] = ACTIONS(1366), - [anon_sym_for] = ACTIONS(1366), - [anon_sym_return] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(1366), - [anon_sym_continue] = ACTIONS(1366), - [anon_sym_goto] = ACTIONS(1366), - [anon_sym___try] = ACTIONS(1366), - [anon_sym___leave] = ACTIONS(1366), - [anon_sym_DASH_DASH] = ACTIONS(1368), - [anon_sym_PLUS_PLUS] = ACTIONS(1368), - [anon_sym_sizeof] = ACTIONS(1366), - [anon_sym___alignof__] = ACTIONS(1366), - [anon_sym___alignof] = ACTIONS(1366), - [anon_sym__alignof] = ACTIONS(1366), - [anon_sym_alignof] = ACTIONS(1366), - [anon_sym__Alignof] = ACTIONS(1366), - [anon_sym_offsetof] = ACTIONS(1366), - [anon_sym__Generic] = ACTIONS(1366), - [anon_sym_asm] = ACTIONS(1366), - [anon_sym___asm__] = ACTIONS(1366), - [sym_number_literal] = ACTIONS(1368), - [anon_sym_L_SQUOTE] = ACTIONS(1368), - [anon_sym_u_SQUOTE] = ACTIONS(1368), - [anon_sym_U_SQUOTE] = ACTIONS(1368), - [anon_sym_u8_SQUOTE] = ACTIONS(1368), - [anon_sym_SQUOTE] = ACTIONS(1368), - [anon_sym_L_DQUOTE] = ACTIONS(1368), - [anon_sym_u_DQUOTE] = ACTIONS(1368), - [anon_sym_U_DQUOTE] = ACTIONS(1368), - [anon_sym_u8_DQUOTE] = ACTIONS(1368), - [anon_sym_DQUOTE] = ACTIONS(1368), - [sym_true] = ACTIONS(1366), - [sym_false] = ACTIONS(1366), - [anon_sym_NULL] = ACTIONS(1366), - [anon_sym_nullptr] = ACTIONS(1366), + [337] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [338] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [336] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [339] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [337] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [340] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [341] = { + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token2] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [338] = { - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token2] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), + [342] = { + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1318), + [aux_sym_preproc_include_token1] = ACTIONS(1318), + [aux_sym_preproc_def_token1] = ACTIONS(1318), + [aux_sym_preproc_if_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), + [sym_preproc_directive] = ACTIONS(1318), + [anon_sym_LPAREN2] = ACTIONS(1320), + [anon_sym_BANG] = ACTIONS(1320), + [anon_sym_TILDE] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym___extension__] = ACTIONS(1318), + [anon_sym_typedef] = ACTIONS(1318), + [anon_sym_extern] = ACTIONS(1318), + [anon_sym___attribute__] = ACTIONS(1318), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1320), + [anon_sym___declspec] = ACTIONS(1318), + [anon_sym___cdecl] = ACTIONS(1318), + [anon_sym___clrcall] = ACTIONS(1318), + [anon_sym___stdcall] = ACTIONS(1318), + [anon_sym___fastcall] = ACTIONS(1318), + [anon_sym___thiscall] = ACTIONS(1318), + [anon_sym___vectorcall] = ACTIONS(1318), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_signed] = ACTIONS(1318), + [anon_sym_unsigned] = ACTIONS(1318), + [anon_sym_long] = ACTIONS(1318), + [anon_sym_short] = ACTIONS(1318), + [anon_sym_static] = ACTIONS(1318), + [anon_sym_auto] = ACTIONS(1318), + [anon_sym_register] = ACTIONS(1318), + [anon_sym_inline] = ACTIONS(1318), + [anon_sym___inline] = ACTIONS(1318), + [anon_sym___inline__] = ACTIONS(1318), + [anon_sym___forceinline] = ACTIONS(1318), + [anon_sym_thread_local] = ACTIONS(1318), + [anon_sym___thread] = ACTIONS(1318), + [anon_sym_const] = ACTIONS(1318), + [anon_sym_constexpr] = ACTIONS(1318), + [anon_sym_volatile] = ACTIONS(1318), + [anon_sym_restrict] = ACTIONS(1318), + [anon_sym___restrict__] = ACTIONS(1318), + [anon_sym__Atomic] = ACTIONS(1318), + [anon_sym__Noreturn] = ACTIONS(1318), + [anon_sym_noreturn] = ACTIONS(1318), + [sym_primitive_type] = ACTIONS(1318), + [anon_sym_enum] = ACTIONS(1318), + [anon_sym_struct] = ACTIONS(1318), + [anon_sym_union] = ACTIONS(1318), + [anon_sym_if] = ACTIONS(1318), + [anon_sym_else] = ACTIONS(1318), + [anon_sym_switch] = ACTIONS(1318), + [anon_sym_case] = ACTIONS(1318), + [anon_sym_default] = ACTIONS(1318), + [anon_sym_while] = ACTIONS(1318), + [anon_sym_do] = ACTIONS(1318), + [anon_sym_for] = ACTIONS(1318), + [anon_sym_return] = ACTIONS(1318), + [anon_sym_break] = ACTIONS(1318), + [anon_sym_continue] = ACTIONS(1318), + [anon_sym_goto] = ACTIONS(1318), + [anon_sym___try] = ACTIONS(1318), + [anon_sym___leave] = ACTIONS(1318), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_sizeof] = ACTIONS(1318), + [anon_sym___alignof__] = ACTIONS(1318), + [anon_sym___alignof] = ACTIONS(1318), + [anon_sym__alignof] = ACTIONS(1318), + [anon_sym_alignof] = ACTIONS(1318), + [anon_sym__Alignof] = ACTIONS(1318), + [anon_sym_offsetof] = ACTIONS(1318), + [anon_sym__Generic] = ACTIONS(1318), + [anon_sym_asm] = ACTIONS(1318), + [anon_sym___asm__] = ACTIONS(1318), + [sym_number_literal] = ACTIONS(1320), + [anon_sym_L_SQUOTE] = ACTIONS(1320), + [anon_sym_u_SQUOTE] = ACTIONS(1320), + [anon_sym_U_SQUOTE] = ACTIONS(1320), + [anon_sym_u8_SQUOTE] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), + [anon_sym_L_DQUOTE] = ACTIONS(1320), + [anon_sym_u_DQUOTE] = ACTIONS(1320), + [anon_sym_U_DQUOTE] = ACTIONS(1320), + [anon_sym_u8_DQUOTE] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1320), + [sym_true] = ACTIONS(1318), + [sym_false] = ACTIONS(1318), + [anon_sym_NULL] = ACTIONS(1318), + [anon_sym_nullptr] = ACTIONS(1318), [sym_comment] = ACTIONS(3), }, - [339] = { - [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___extension__] = ACTIONS(1378), - [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_signed] = ACTIONS(1378), - [anon_sym_unsigned] = ACTIONS(1378), - [anon_sym_long] = ACTIONS(1378), - [anon_sym_short] = ACTIONS(1378), - [anon_sym_static] = ACTIONS(1378), - [anon_sym_auto] = ACTIONS(1378), - [anon_sym_register] = ACTIONS(1378), - [anon_sym_inline] = ACTIONS(1378), - [anon_sym___inline] = ACTIONS(1378), - [anon_sym___inline__] = ACTIONS(1378), - [anon_sym___forceinline] = ACTIONS(1378), - [anon_sym_thread_local] = ACTIONS(1378), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1378), - [anon_sym___leave] = ACTIONS(1378), - [anon_sym_DASH_DASH] = ACTIONS(1380), - [anon_sym_PLUS_PLUS] = ACTIONS(1380), - [anon_sym_sizeof] = ACTIONS(1378), - [anon_sym___alignof__] = ACTIONS(1378), - [anon_sym___alignof] = ACTIONS(1378), - [anon_sym__alignof] = ACTIONS(1378), - [anon_sym_alignof] = ACTIONS(1378), - [anon_sym__Alignof] = 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), + [343] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [340] = { - [sym_identifier] = ACTIONS(1358), - [aux_sym_preproc_include_token1] = ACTIONS(1358), - [aux_sym_preproc_def_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token1] = ACTIONS(1358), - [aux_sym_preproc_if_token2] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), - [sym_preproc_directive] = ACTIONS(1358), - [anon_sym_LPAREN2] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_TILDE] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1358), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1360), - [anon_sym___extension__] = ACTIONS(1358), - [anon_sym_typedef] = ACTIONS(1358), - [anon_sym_extern] = ACTIONS(1358), - [anon_sym___attribute__] = ACTIONS(1358), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), - [anon_sym___declspec] = ACTIONS(1358), - [anon_sym___cdecl] = ACTIONS(1358), - [anon_sym___clrcall] = ACTIONS(1358), - [anon_sym___stdcall] = ACTIONS(1358), - [anon_sym___fastcall] = ACTIONS(1358), - [anon_sym___thiscall] = ACTIONS(1358), - [anon_sym___vectorcall] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1360), - [anon_sym_signed] = ACTIONS(1358), - [anon_sym_unsigned] = ACTIONS(1358), - [anon_sym_long] = ACTIONS(1358), - [anon_sym_short] = ACTIONS(1358), - [anon_sym_static] = ACTIONS(1358), - [anon_sym_auto] = ACTIONS(1358), - [anon_sym_register] = ACTIONS(1358), - [anon_sym_inline] = ACTIONS(1358), - [anon_sym___inline] = ACTIONS(1358), - [anon_sym___inline__] = ACTIONS(1358), - [anon_sym___forceinline] = ACTIONS(1358), - [anon_sym_thread_local] = ACTIONS(1358), - [anon_sym___thread] = ACTIONS(1358), - [anon_sym_const] = ACTIONS(1358), - [anon_sym_constexpr] = ACTIONS(1358), - [anon_sym_volatile] = ACTIONS(1358), - [anon_sym_restrict] = ACTIONS(1358), - [anon_sym___restrict__] = ACTIONS(1358), - [anon_sym__Atomic] = ACTIONS(1358), - [anon_sym__Noreturn] = ACTIONS(1358), - [anon_sym_noreturn] = ACTIONS(1358), - [sym_primitive_type] = ACTIONS(1358), - [anon_sym_enum] = ACTIONS(1358), - [anon_sym_struct] = ACTIONS(1358), - [anon_sym_union] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1358), - [anon_sym_else] = ACTIONS(1358), - [anon_sym_switch] = ACTIONS(1358), - [anon_sym_case] = ACTIONS(1358), - [anon_sym_default] = ACTIONS(1358), - [anon_sym_while] = ACTIONS(1358), - [anon_sym_do] = ACTIONS(1358), - [anon_sym_for] = ACTIONS(1358), - [anon_sym_return] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1358), - [anon_sym_continue] = ACTIONS(1358), - [anon_sym_goto] = ACTIONS(1358), - [anon_sym___try] = ACTIONS(1358), - [anon_sym___leave] = ACTIONS(1358), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_sizeof] = ACTIONS(1358), - [anon_sym___alignof__] = ACTIONS(1358), - [anon_sym___alignof] = ACTIONS(1358), - [anon_sym__alignof] = ACTIONS(1358), - [anon_sym_alignof] = ACTIONS(1358), - [anon_sym__Alignof] = ACTIONS(1358), - [anon_sym_offsetof] = ACTIONS(1358), - [anon_sym__Generic] = ACTIONS(1358), - [anon_sym_asm] = ACTIONS(1358), - [anon_sym___asm__] = ACTIONS(1358), - [sym_number_literal] = ACTIONS(1360), - [anon_sym_L_SQUOTE] = ACTIONS(1360), - [anon_sym_u_SQUOTE] = ACTIONS(1360), - [anon_sym_U_SQUOTE] = ACTIONS(1360), - [anon_sym_u8_SQUOTE] = ACTIONS(1360), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_L_DQUOTE] = ACTIONS(1360), - [anon_sym_u_DQUOTE] = ACTIONS(1360), - [anon_sym_U_DQUOTE] = ACTIONS(1360), - [anon_sym_u8_DQUOTE] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [anon_sym_NULL] = ACTIONS(1358), - [anon_sym_nullptr] = ACTIONS(1358), + [344] = { + [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___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = 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___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = 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), }, - [341] = { - [ts_builtin_sym_end] = ACTIONS(1364), - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [345] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [342] = { - [sym_identifier] = ACTIONS(1354), - [aux_sym_preproc_include_token1] = ACTIONS(1354), - [aux_sym_preproc_def_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token1] = ACTIONS(1354), - [aux_sym_preproc_if_token2] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), - [sym_preproc_directive] = ACTIONS(1354), - [anon_sym_LPAREN2] = ACTIONS(1356), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym___extension__] = ACTIONS(1354), - [anon_sym_typedef] = ACTIONS(1354), - [anon_sym_extern] = ACTIONS(1354), - [anon_sym___attribute__] = ACTIONS(1354), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), - [anon_sym___declspec] = ACTIONS(1354), - [anon_sym___cdecl] = ACTIONS(1354), - [anon_sym___clrcall] = ACTIONS(1354), - [anon_sym___stdcall] = ACTIONS(1354), - [anon_sym___fastcall] = ACTIONS(1354), - [anon_sym___thiscall] = ACTIONS(1354), - [anon_sym___vectorcall] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1356), - [anon_sym_signed] = ACTIONS(1354), - [anon_sym_unsigned] = ACTIONS(1354), - [anon_sym_long] = ACTIONS(1354), - [anon_sym_short] = ACTIONS(1354), - [anon_sym_static] = ACTIONS(1354), - [anon_sym_auto] = ACTIONS(1354), - [anon_sym_register] = ACTIONS(1354), - [anon_sym_inline] = ACTIONS(1354), - [anon_sym___inline] = ACTIONS(1354), - [anon_sym___inline__] = ACTIONS(1354), - [anon_sym___forceinline] = ACTIONS(1354), - [anon_sym_thread_local] = ACTIONS(1354), - [anon_sym___thread] = ACTIONS(1354), - [anon_sym_const] = ACTIONS(1354), - [anon_sym_constexpr] = ACTIONS(1354), - [anon_sym_volatile] = ACTIONS(1354), - [anon_sym_restrict] = ACTIONS(1354), - [anon_sym___restrict__] = ACTIONS(1354), - [anon_sym__Atomic] = ACTIONS(1354), - [anon_sym__Noreturn] = ACTIONS(1354), - [anon_sym_noreturn] = ACTIONS(1354), - [sym_primitive_type] = ACTIONS(1354), - [anon_sym_enum] = ACTIONS(1354), - [anon_sym_struct] = ACTIONS(1354), - [anon_sym_union] = ACTIONS(1354), - [anon_sym_if] = ACTIONS(1354), - [anon_sym_else] = ACTIONS(1354), - [anon_sym_switch] = ACTIONS(1354), - [anon_sym_case] = ACTIONS(1354), - [anon_sym_default] = ACTIONS(1354), - [anon_sym_while] = ACTIONS(1354), - [anon_sym_do] = ACTIONS(1354), - [anon_sym_for] = ACTIONS(1354), - [anon_sym_return] = ACTIONS(1354), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_goto] = ACTIONS(1354), - [anon_sym___try] = ACTIONS(1354), - [anon_sym___leave] = ACTIONS(1354), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_sizeof] = ACTIONS(1354), - [anon_sym___alignof__] = ACTIONS(1354), - [anon_sym___alignof] = ACTIONS(1354), - [anon_sym__alignof] = ACTIONS(1354), - [anon_sym_alignof] = ACTIONS(1354), - [anon_sym__Alignof] = ACTIONS(1354), - [anon_sym_offsetof] = ACTIONS(1354), - [anon_sym__Generic] = ACTIONS(1354), - [anon_sym_asm] = ACTIONS(1354), - [anon_sym___asm__] = ACTIONS(1354), - [sym_number_literal] = ACTIONS(1356), - [anon_sym_L_SQUOTE] = ACTIONS(1356), - [anon_sym_u_SQUOTE] = ACTIONS(1356), - [anon_sym_U_SQUOTE] = ACTIONS(1356), - [anon_sym_u8_SQUOTE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_L_DQUOTE] = ACTIONS(1356), - [anon_sym_u_DQUOTE] = ACTIONS(1356), - [anon_sym_U_DQUOTE] = ACTIONS(1356), - [anon_sym_u8_DQUOTE] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_true] = ACTIONS(1354), - [sym_false] = ACTIONS(1354), - [anon_sym_NULL] = ACTIONS(1354), - [anon_sym_nullptr] = ACTIONS(1354), + [346] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token2] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), + [sym_comment] = ACTIONS(3), + }, + [347] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [343] = { + [348] = { + [sym_identifier] = ACTIONS(1346), + [aux_sym_preproc_include_token1] = ACTIONS(1346), + [aux_sym_preproc_def_token1] = ACTIONS(1346), + [aux_sym_preproc_if_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1346), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1346), + [sym_preproc_directive] = ACTIONS(1346), + [anon_sym_LPAREN2] = ACTIONS(1348), + [anon_sym_BANG] = ACTIONS(1348), + [anon_sym_TILDE] = ACTIONS(1348), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_PLUS] = ACTIONS(1346), + [anon_sym_STAR] = ACTIONS(1348), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_SEMI] = ACTIONS(1348), + [anon_sym___extension__] = ACTIONS(1346), + [anon_sym_typedef] = ACTIONS(1346), + [anon_sym_extern] = ACTIONS(1346), + [anon_sym___attribute__] = ACTIONS(1346), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1348), + [anon_sym___declspec] = ACTIONS(1346), + [anon_sym___cdecl] = ACTIONS(1346), + [anon_sym___clrcall] = ACTIONS(1346), + [anon_sym___stdcall] = ACTIONS(1346), + [anon_sym___fastcall] = ACTIONS(1346), + [anon_sym___thiscall] = ACTIONS(1346), + [anon_sym___vectorcall] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(1348), + [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_signed] = ACTIONS(1346), + [anon_sym_unsigned] = ACTIONS(1346), + [anon_sym_long] = ACTIONS(1346), + [anon_sym_short] = ACTIONS(1346), + [anon_sym_static] = ACTIONS(1346), + [anon_sym_auto] = ACTIONS(1346), + [anon_sym_register] = ACTIONS(1346), + [anon_sym_inline] = ACTIONS(1346), + [anon_sym___inline] = ACTIONS(1346), + [anon_sym___inline__] = ACTIONS(1346), + [anon_sym___forceinline] = ACTIONS(1346), + [anon_sym_thread_local] = ACTIONS(1346), + [anon_sym___thread] = ACTIONS(1346), + [anon_sym_const] = ACTIONS(1346), + [anon_sym_constexpr] = ACTIONS(1346), + [anon_sym_volatile] = ACTIONS(1346), + [anon_sym_restrict] = ACTIONS(1346), + [anon_sym___restrict__] = ACTIONS(1346), + [anon_sym__Atomic] = ACTIONS(1346), + [anon_sym__Noreturn] = ACTIONS(1346), + [anon_sym_noreturn] = ACTIONS(1346), + [sym_primitive_type] = ACTIONS(1346), + [anon_sym_enum] = ACTIONS(1346), + [anon_sym_struct] = ACTIONS(1346), + [anon_sym_union] = ACTIONS(1346), + [anon_sym_if] = ACTIONS(1346), + [anon_sym_else] = ACTIONS(1346), + [anon_sym_switch] = ACTIONS(1346), + [anon_sym_case] = ACTIONS(1346), + [anon_sym_default] = ACTIONS(1346), + [anon_sym_while] = ACTIONS(1346), + [anon_sym_do] = ACTIONS(1346), + [anon_sym_for] = ACTIONS(1346), + [anon_sym_return] = ACTIONS(1346), + [anon_sym_break] = ACTIONS(1346), + [anon_sym_continue] = ACTIONS(1346), + [anon_sym_goto] = ACTIONS(1346), + [anon_sym___try] = ACTIONS(1346), + [anon_sym___leave] = ACTIONS(1346), + [anon_sym_DASH_DASH] = ACTIONS(1348), + [anon_sym_PLUS_PLUS] = ACTIONS(1348), + [anon_sym_sizeof] = ACTIONS(1346), + [anon_sym___alignof__] = ACTIONS(1346), + [anon_sym___alignof] = ACTIONS(1346), + [anon_sym__alignof] = ACTIONS(1346), + [anon_sym_alignof] = ACTIONS(1346), + [anon_sym__Alignof] = ACTIONS(1346), + [anon_sym_offsetof] = ACTIONS(1346), + [anon_sym__Generic] = ACTIONS(1346), + [anon_sym_asm] = ACTIONS(1346), + [anon_sym___asm__] = ACTIONS(1346), + [sym_number_literal] = ACTIONS(1348), + [anon_sym_L_SQUOTE] = ACTIONS(1348), + [anon_sym_u_SQUOTE] = ACTIONS(1348), + [anon_sym_U_SQUOTE] = ACTIONS(1348), + [anon_sym_u8_SQUOTE] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), + [anon_sym_L_DQUOTE] = ACTIONS(1348), + [anon_sym_u_DQUOTE] = ACTIONS(1348), + [anon_sym_U_DQUOTE] = ACTIONS(1348), + [anon_sym_u8_DQUOTE] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1348), + [sym_true] = ACTIONS(1346), + [sym_false] = ACTIONS(1346), + [anon_sym_NULL] = ACTIONS(1346), + [anon_sym_nullptr] = ACTIONS(1346), + [sym_comment] = ACTIONS(3), + }, + [349] = { [ts_builtin_sym_end] = ACTIONS(1396), [sym_identifier] = ACTIONS(1394), [aux_sym_preproc_include_token1] = ACTIONS(1394), @@ -55185,2583 +55978,2893 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1394), [sym_comment] = ACTIONS(3), }, - [344] = { - [ts_builtin_sym_end] = ACTIONS(1300), - [sym_identifier] = ACTIONS(1298), - [aux_sym_preproc_include_token1] = ACTIONS(1298), - [aux_sym_preproc_def_token1] = ACTIONS(1298), - [aux_sym_preproc_if_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), - [sym_preproc_directive] = ACTIONS(1298), - [anon_sym_LPAREN2] = ACTIONS(1300), - [anon_sym_BANG] = ACTIONS(1300), - [anon_sym_TILDE] = ACTIONS(1300), - [anon_sym_DASH] = ACTIONS(1298), - [anon_sym_PLUS] = ACTIONS(1298), - [anon_sym_STAR] = ACTIONS(1300), - [anon_sym_AMP] = ACTIONS(1300), - [anon_sym_SEMI] = ACTIONS(1300), - [anon_sym___extension__] = ACTIONS(1298), - [anon_sym_typedef] = ACTIONS(1298), - [anon_sym_extern] = ACTIONS(1298), - [anon_sym___attribute__] = ACTIONS(1298), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), - [anon_sym___declspec] = ACTIONS(1298), - [anon_sym___cdecl] = ACTIONS(1298), - [anon_sym___clrcall] = ACTIONS(1298), - [anon_sym___stdcall] = ACTIONS(1298), - [anon_sym___fastcall] = ACTIONS(1298), - [anon_sym___thiscall] = ACTIONS(1298), - [anon_sym___vectorcall] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1300), - [anon_sym_signed] = ACTIONS(1298), - [anon_sym_unsigned] = ACTIONS(1298), - [anon_sym_long] = ACTIONS(1298), - [anon_sym_short] = ACTIONS(1298), - [anon_sym_static] = ACTIONS(1298), - [anon_sym_auto] = ACTIONS(1298), - [anon_sym_register] = ACTIONS(1298), - [anon_sym_inline] = ACTIONS(1298), - [anon_sym___inline] = ACTIONS(1298), - [anon_sym___inline__] = ACTIONS(1298), - [anon_sym___forceinline] = ACTIONS(1298), - [anon_sym_thread_local] = ACTIONS(1298), - [anon_sym___thread] = ACTIONS(1298), - [anon_sym_const] = ACTIONS(1298), - [anon_sym_constexpr] = ACTIONS(1298), - [anon_sym_volatile] = ACTIONS(1298), - [anon_sym_restrict] = ACTIONS(1298), - [anon_sym___restrict__] = ACTIONS(1298), - [anon_sym__Atomic] = ACTIONS(1298), - [anon_sym__Noreturn] = ACTIONS(1298), - [anon_sym_noreturn] = ACTIONS(1298), - [sym_primitive_type] = ACTIONS(1298), - [anon_sym_enum] = ACTIONS(1298), - [anon_sym_struct] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1298), - [anon_sym_if] = ACTIONS(1298), - [anon_sym_else] = ACTIONS(1298), - [anon_sym_switch] = ACTIONS(1298), - [anon_sym_case] = ACTIONS(1298), - [anon_sym_default] = ACTIONS(1298), - [anon_sym_while] = ACTIONS(1298), - [anon_sym_do] = ACTIONS(1298), - [anon_sym_for] = ACTIONS(1298), - [anon_sym_return] = ACTIONS(1298), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_goto] = ACTIONS(1298), - [anon_sym___try] = ACTIONS(1298), - [anon_sym___leave] = ACTIONS(1298), - [anon_sym_DASH_DASH] = ACTIONS(1300), - [anon_sym_PLUS_PLUS] = ACTIONS(1300), - [anon_sym_sizeof] = ACTIONS(1298), - [anon_sym___alignof__] = ACTIONS(1298), - [anon_sym___alignof] = ACTIONS(1298), - [anon_sym__alignof] = ACTIONS(1298), - [anon_sym_alignof] = ACTIONS(1298), - [anon_sym__Alignof] = ACTIONS(1298), - [anon_sym_offsetof] = ACTIONS(1298), - [anon_sym__Generic] = ACTIONS(1298), - [anon_sym_asm] = ACTIONS(1298), - [anon_sym___asm__] = ACTIONS(1298), - [sym_number_literal] = ACTIONS(1300), - [anon_sym_L_SQUOTE] = ACTIONS(1300), - [anon_sym_u_SQUOTE] = ACTIONS(1300), - [anon_sym_U_SQUOTE] = ACTIONS(1300), - [anon_sym_u8_SQUOTE] = ACTIONS(1300), - [anon_sym_SQUOTE] = ACTIONS(1300), - [anon_sym_L_DQUOTE] = ACTIONS(1300), - [anon_sym_u_DQUOTE] = ACTIONS(1300), - [anon_sym_U_DQUOTE] = ACTIONS(1300), - [anon_sym_u8_DQUOTE] = ACTIONS(1300), - [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), - [anon_sym_NULL] = ACTIONS(1298), - [anon_sym_nullptr] = ACTIONS(1298), - [sym_comment] = ACTIONS(3), - }, - [345] = { - [sym_identifier] = ACTIONS(1350), - [aux_sym_preproc_include_token1] = ACTIONS(1350), - [aux_sym_preproc_def_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token1] = ACTIONS(1350), - [aux_sym_preproc_if_token2] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1350), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1350), - [sym_preproc_directive] = ACTIONS(1350), - [anon_sym_LPAREN2] = ACTIONS(1352), - [anon_sym_BANG] = ACTIONS(1352), - [anon_sym_TILDE] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_SEMI] = ACTIONS(1352), - [anon_sym___extension__] = ACTIONS(1350), - [anon_sym_typedef] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym___attribute__] = ACTIONS(1350), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1352), - [anon_sym___declspec] = ACTIONS(1350), - [anon_sym___cdecl] = ACTIONS(1350), - [anon_sym___clrcall] = ACTIONS(1350), - [anon_sym___stdcall] = ACTIONS(1350), - [anon_sym___fastcall] = ACTIONS(1350), - [anon_sym___thiscall] = ACTIONS(1350), - [anon_sym___vectorcall] = ACTIONS(1350), - [anon_sym_LBRACE] = ACTIONS(1352), - [anon_sym_signed] = ACTIONS(1350), - [anon_sym_unsigned] = ACTIONS(1350), - [anon_sym_long] = ACTIONS(1350), - [anon_sym_short] = ACTIONS(1350), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_auto] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_inline] = ACTIONS(1350), - [anon_sym___inline] = ACTIONS(1350), - [anon_sym___inline__] = ACTIONS(1350), - [anon_sym___forceinline] = ACTIONS(1350), - [anon_sym_thread_local] = ACTIONS(1350), - [anon_sym___thread] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [anon_sym_constexpr] = ACTIONS(1350), - [anon_sym_volatile] = ACTIONS(1350), - [anon_sym_restrict] = ACTIONS(1350), - [anon_sym___restrict__] = ACTIONS(1350), - [anon_sym__Atomic] = ACTIONS(1350), - [anon_sym__Noreturn] = ACTIONS(1350), - [anon_sym_noreturn] = ACTIONS(1350), - [sym_primitive_type] = ACTIONS(1350), - [anon_sym_enum] = ACTIONS(1350), - [anon_sym_struct] = ACTIONS(1350), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_switch] = ACTIONS(1350), - [anon_sym_case] = ACTIONS(1350), - [anon_sym_default] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_goto] = ACTIONS(1350), - [anon_sym___try] = ACTIONS(1350), - [anon_sym___leave] = ACTIONS(1350), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_sizeof] = ACTIONS(1350), - [anon_sym___alignof__] = ACTIONS(1350), - [anon_sym___alignof] = ACTIONS(1350), - [anon_sym__alignof] = ACTIONS(1350), - [anon_sym_alignof] = ACTIONS(1350), - [anon_sym__Alignof] = ACTIONS(1350), - [anon_sym_offsetof] = ACTIONS(1350), - [anon_sym__Generic] = ACTIONS(1350), - [anon_sym_asm] = ACTIONS(1350), - [anon_sym___asm__] = ACTIONS(1350), - [sym_number_literal] = ACTIONS(1352), - [anon_sym_L_SQUOTE] = ACTIONS(1352), - [anon_sym_u_SQUOTE] = ACTIONS(1352), - [anon_sym_U_SQUOTE] = ACTIONS(1352), - [anon_sym_u8_SQUOTE] = ACTIONS(1352), - [anon_sym_SQUOTE] = ACTIONS(1352), - [anon_sym_L_DQUOTE] = ACTIONS(1352), - [anon_sym_u_DQUOTE] = ACTIONS(1352), - [anon_sym_U_DQUOTE] = ACTIONS(1352), - [anon_sym_u8_DQUOTE] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_true] = ACTIONS(1350), - [sym_false] = ACTIONS(1350), - [anon_sym_NULL] = ACTIONS(1350), - [anon_sym_nullptr] = ACTIONS(1350), + [350] = { + [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(1310), + [anon_sym_BANG] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1312), + [anon_sym_PLUS] = ACTIONS(1312), + [anon_sym_STAR] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_SEMI] = ACTIONS(1310), + [anon_sym___extension__] = ACTIONS(1312), + [anon_sym_typedef] = ACTIONS(1312), + [anon_sym_extern] = ACTIONS(1312), + [anon_sym___attribute__] = ACTIONS(1312), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1310), + [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(1310), + [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_signed] = ACTIONS(1312), + [anon_sym_unsigned] = ACTIONS(1312), + [anon_sym_long] = ACTIONS(1312), + [anon_sym_short] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1312), + [anon_sym_auto] = ACTIONS(1312), + [anon_sym_register] = ACTIONS(1312), + [anon_sym_inline] = ACTIONS(1312), + [anon_sym___inline] = ACTIONS(1312), + [anon_sym___inline__] = ACTIONS(1312), + [anon_sym___forceinline] = ACTIONS(1312), + [anon_sym_thread_local] = ACTIONS(1312), + [anon_sym___thread] = ACTIONS(1312), + [anon_sym_const] = ACTIONS(1312), + [anon_sym_constexpr] = ACTIONS(1312), + [anon_sym_volatile] = ACTIONS(1312), + [anon_sym_restrict] = ACTIONS(1312), + [anon_sym___restrict__] = ACTIONS(1312), + [anon_sym__Atomic] = ACTIONS(1312), + [anon_sym__Noreturn] = ACTIONS(1312), + [anon_sym_noreturn] = ACTIONS(1312), + [sym_primitive_type] = ACTIONS(1312), + [anon_sym_enum] = ACTIONS(1312), + [anon_sym_struct] = ACTIONS(1312), + [anon_sym_union] = ACTIONS(1312), + [anon_sym_if] = ACTIONS(1312), + [anon_sym_else] = ACTIONS(1312), + [anon_sym_switch] = ACTIONS(1312), + [anon_sym_case] = ACTIONS(1312), + [anon_sym_default] = ACTIONS(1312), + [anon_sym_while] = ACTIONS(1312), + [anon_sym_do] = ACTIONS(1312), + [anon_sym_for] = ACTIONS(1312), + [anon_sym_return] = ACTIONS(1312), + [anon_sym_break] = ACTIONS(1312), + [anon_sym_continue] = ACTIONS(1312), + [anon_sym_goto] = ACTIONS(1312), + [anon_sym___try] = ACTIONS(1312), + [anon_sym___leave] = ACTIONS(1312), + [anon_sym_DASH_DASH] = ACTIONS(1310), + [anon_sym_PLUS_PLUS] = ACTIONS(1310), + [anon_sym_sizeof] = ACTIONS(1312), + [anon_sym___alignof__] = ACTIONS(1312), + [anon_sym___alignof] = ACTIONS(1312), + [anon_sym__alignof] = ACTIONS(1312), + [anon_sym_alignof] = ACTIONS(1312), + [anon_sym__Alignof] = ACTIONS(1312), + [anon_sym_offsetof] = ACTIONS(1312), + [anon_sym__Generic] = ACTIONS(1312), + [anon_sym_asm] = ACTIONS(1312), + [anon_sym___asm__] = ACTIONS(1312), + [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(1312), + [sym_false] = ACTIONS(1312), + [anon_sym_NULL] = ACTIONS(1312), + [anon_sym_nullptr] = ACTIONS(1312), [sym_comment] = ACTIONS(3), }, - [346] = { - [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(1302), - [anon_sym_BANG] = ACTIONS(1302), - [anon_sym_TILDE] = ACTIONS(1302), - [anon_sym_DASH] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1304), - [anon_sym_STAR] = ACTIONS(1302), - [anon_sym_AMP] = ACTIONS(1302), - [anon_sym_SEMI] = ACTIONS(1302), - [anon_sym___extension__] = ACTIONS(1304), - [anon_sym_typedef] = ACTIONS(1304), - [anon_sym_extern] = ACTIONS(1304), - [anon_sym___attribute__] = ACTIONS(1304), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1302), - [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(1302), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_signed] = ACTIONS(1304), - [anon_sym_unsigned] = ACTIONS(1304), - [anon_sym_long] = ACTIONS(1304), - [anon_sym_short] = ACTIONS(1304), - [anon_sym_static] = ACTIONS(1304), - [anon_sym_auto] = ACTIONS(1304), - [anon_sym_register] = ACTIONS(1304), - [anon_sym_inline] = ACTIONS(1304), - [anon_sym___inline] = ACTIONS(1304), - [anon_sym___inline__] = ACTIONS(1304), - [anon_sym___forceinline] = ACTIONS(1304), - [anon_sym_thread_local] = ACTIONS(1304), - [anon_sym___thread] = ACTIONS(1304), - [anon_sym_const] = ACTIONS(1304), - [anon_sym_constexpr] = ACTIONS(1304), - [anon_sym_volatile] = ACTIONS(1304), - [anon_sym_restrict] = ACTIONS(1304), - [anon_sym___restrict__] = ACTIONS(1304), - [anon_sym__Atomic] = ACTIONS(1304), - [anon_sym__Noreturn] = ACTIONS(1304), - [anon_sym_noreturn] = ACTIONS(1304), - [sym_primitive_type] = ACTIONS(1304), - [anon_sym_enum] = ACTIONS(1304), - [anon_sym_struct] = ACTIONS(1304), - [anon_sym_union] = ACTIONS(1304), - [anon_sym_if] = ACTIONS(1304), - [anon_sym_else] = ACTIONS(1304), - [anon_sym_switch] = ACTIONS(1304), - [anon_sym_case] = ACTIONS(1304), - [anon_sym_default] = ACTIONS(1304), - [anon_sym_while] = ACTIONS(1304), - [anon_sym_do] = ACTIONS(1304), - [anon_sym_for] = ACTIONS(1304), - [anon_sym_return] = ACTIONS(1304), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_goto] = ACTIONS(1304), - [anon_sym___try] = ACTIONS(1304), - [anon_sym___leave] = ACTIONS(1304), - [anon_sym_DASH_DASH] = ACTIONS(1302), - [anon_sym_PLUS_PLUS] = ACTIONS(1302), - [anon_sym_sizeof] = ACTIONS(1304), - [anon_sym___alignof__] = ACTIONS(1304), - [anon_sym___alignof] = ACTIONS(1304), - [anon_sym__alignof] = ACTIONS(1304), - [anon_sym_alignof] = ACTIONS(1304), - [anon_sym__Alignof] = ACTIONS(1304), - [anon_sym_offsetof] = ACTIONS(1304), - [anon_sym__Generic] = ACTIONS(1304), - [anon_sym_asm] = ACTIONS(1304), - [anon_sym___asm__] = ACTIONS(1304), - [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(1304), - [sym_false] = ACTIONS(1304), - [anon_sym_NULL] = ACTIONS(1304), - [anon_sym_nullptr] = ACTIONS(1304), + [351] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [347] = { - [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_SEMI] = ACTIONS(1392), - [anon_sym___extension__] = ACTIONS(1390), - [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_signed] = ACTIONS(1390), - [anon_sym_unsigned] = ACTIONS(1390), - [anon_sym_long] = ACTIONS(1390), - [anon_sym_short] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_auto] = ACTIONS(1390), - [anon_sym_register] = ACTIONS(1390), - [anon_sym_inline] = ACTIONS(1390), - [anon_sym___inline] = ACTIONS(1390), - [anon_sym___inline__] = ACTIONS(1390), - [anon_sym___forceinline] = ACTIONS(1390), - [anon_sym_thread_local] = ACTIONS(1390), - [anon_sym___thread] = 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), - [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_else] = 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___try] = ACTIONS(1390), - [anon_sym___leave] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_sizeof] = ACTIONS(1390), - [anon_sym___alignof__] = ACTIONS(1390), - [anon_sym___alignof] = ACTIONS(1390), - [anon_sym__alignof] = ACTIONS(1390), - [anon_sym_alignof] = ACTIONS(1390), - [anon_sym__Alignof] = 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), + [352] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [348] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1398), - [aux_sym_preproc_include_token1] = ACTIONS(1398), - [aux_sym_preproc_def_token1] = ACTIONS(1398), - [aux_sym_preproc_if_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), - [sym_preproc_directive] = ACTIONS(1398), - [anon_sym_LPAREN2] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1400), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym___extension__] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym___attribute__] = ACTIONS(1398), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), - [anon_sym___declspec] = ACTIONS(1398), - [anon_sym___cdecl] = ACTIONS(1398), - [anon_sym___clrcall] = ACTIONS(1398), - [anon_sym___stdcall] = ACTIONS(1398), - [anon_sym___fastcall] = ACTIONS(1398), - [anon_sym___thiscall] = ACTIONS(1398), - [anon_sym___vectorcall] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_signed] = ACTIONS(1398), - [anon_sym_unsigned] = ACTIONS(1398), - [anon_sym_long] = ACTIONS(1398), - [anon_sym_short] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_auto] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym___inline] = ACTIONS(1398), - [anon_sym___inline__] = ACTIONS(1398), - [anon_sym___forceinline] = ACTIONS(1398), - [anon_sym_thread_local] = ACTIONS(1398), - [anon_sym___thread] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_constexpr] = ACTIONS(1398), - [anon_sym_volatile] = ACTIONS(1398), - [anon_sym_restrict] = ACTIONS(1398), - [anon_sym___restrict__] = ACTIONS(1398), - [anon_sym__Atomic] = ACTIONS(1398), - [anon_sym__Noreturn] = ACTIONS(1398), - [anon_sym_noreturn] = ACTIONS(1398), - [sym_primitive_type] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = 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___try] = ACTIONS(1398), - [anon_sym___leave] = ACTIONS(1398), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_sizeof] = ACTIONS(1398), - [anon_sym___alignof__] = ACTIONS(1398), - [anon_sym___alignof] = ACTIONS(1398), - [anon_sym__alignof] = ACTIONS(1398), - [anon_sym_alignof] = ACTIONS(1398), - [anon_sym__Alignof] = 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), + [353] = { + [sym_identifier] = ACTIONS(1366), + [aux_sym_preproc_include_token1] = ACTIONS(1366), + [aux_sym_preproc_def_token1] = ACTIONS(1366), + [aux_sym_preproc_if_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1366), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1366), + [sym_preproc_directive] = ACTIONS(1366), + [anon_sym_LPAREN2] = ACTIONS(1368), + [anon_sym_BANG] = ACTIONS(1368), + [anon_sym_TILDE] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1366), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym___extension__] = ACTIONS(1366), + [anon_sym_typedef] = ACTIONS(1366), + [anon_sym_extern] = ACTIONS(1366), + [anon_sym___attribute__] = ACTIONS(1366), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1368), + [anon_sym___declspec] = ACTIONS(1366), + [anon_sym___cdecl] = ACTIONS(1366), + [anon_sym___clrcall] = ACTIONS(1366), + [anon_sym___stdcall] = ACTIONS(1366), + [anon_sym___fastcall] = ACTIONS(1366), + [anon_sym___thiscall] = ACTIONS(1366), + [anon_sym___vectorcall] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1368), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_signed] = ACTIONS(1366), + [anon_sym_unsigned] = ACTIONS(1366), + [anon_sym_long] = ACTIONS(1366), + [anon_sym_short] = ACTIONS(1366), + [anon_sym_static] = ACTIONS(1366), + [anon_sym_auto] = ACTIONS(1366), + [anon_sym_register] = ACTIONS(1366), + [anon_sym_inline] = ACTIONS(1366), + [anon_sym___inline] = ACTIONS(1366), + [anon_sym___inline__] = ACTIONS(1366), + [anon_sym___forceinline] = ACTIONS(1366), + [anon_sym_thread_local] = ACTIONS(1366), + [anon_sym___thread] = ACTIONS(1366), + [anon_sym_const] = ACTIONS(1366), + [anon_sym_constexpr] = ACTIONS(1366), + [anon_sym_volatile] = ACTIONS(1366), + [anon_sym_restrict] = ACTIONS(1366), + [anon_sym___restrict__] = ACTIONS(1366), + [anon_sym__Atomic] = ACTIONS(1366), + [anon_sym__Noreturn] = ACTIONS(1366), + [anon_sym_noreturn] = ACTIONS(1366), + [sym_primitive_type] = ACTIONS(1366), + [anon_sym_enum] = ACTIONS(1366), + [anon_sym_struct] = ACTIONS(1366), + [anon_sym_union] = ACTIONS(1366), + [anon_sym_if] = ACTIONS(1366), + [anon_sym_else] = ACTIONS(1366), + [anon_sym_switch] = ACTIONS(1366), + [anon_sym_case] = ACTIONS(1366), + [anon_sym_default] = ACTIONS(1366), + [anon_sym_while] = ACTIONS(1366), + [anon_sym_do] = ACTIONS(1366), + [anon_sym_for] = ACTIONS(1366), + [anon_sym_return] = ACTIONS(1366), + [anon_sym_break] = ACTIONS(1366), + [anon_sym_continue] = ACTIONS(1366), + [anon_sym_goto] = ACTIONS(1366), + [anon_sym___try] = ACTIONS(1366), + [anon_sym___leave] = ACTIONS(1366), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_sizeof] = ACTIONS(1366), + [anon_sym___alignof__] = ACTIONS(1366), + [anon_sym___alignof] = ACTIONS(1366), + [anon_sym__alignof] = ACTIONS(1366), + [anon_sym_alignof] = ACTIONS(1366), + [anon_sym__Alignof] = ACTIONS(1366), + [anon_sym_offsetof] = ACTIONS(1366), + [anon_sym__Generic] = ACTIONS(1366), + [anon_sym_asm] = ACTIONS(1366), + [anon_sym___asm__] = ACTIONS(1366), + [sym_number_literal] = ACTIONS(1368), + [anon_sym_L_SQUOTE] = ACTIONS(1368), + [anon_sym_u_SQUOTE] = ACTIONS(1368), + [anon_sym_U_SQUOTE] = ACTIONS(1368), + [anon_sym_u8_SQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [anon_sym_L_DQUOTE] = ACTIONS(1368), + [anon_sym_u_DQUOTE] = ACTIONS(1368), + [anon_sym_U_DQUOTE] = ACTIONS(1368), + [anon_sym_u8_DQUOTE] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [anon_sym_NULL] = ACTIONS(1366), + [anon_sym_nullptr] = ACTIONS(1366), [sym_comment] = ACTIONS(3), }, - [349] = { - [sym_identifier] = ACTIONS(1362), - [aux_sym_preproc_include_token1] = ACTIONS(1362), - [aux_sym_preproc_def_token1] = ACTIONS(1362), - [aux_sym_preproc_if_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1362), - [sym_preproc_directive] = ACTIONS(1362), - [anon_sym_LPAREN2] = ACTIONS(1364), - [anon_sym_BANG] = ACTIONS(1364), - [anon_sym_TILDE] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1362), - [anon_sym_PLUS] = ACTIONS(1362), - [anon_sym_STAR] = ACTIONS(1364), - [anon_sym_AMP] = ACTIONS(1364), - [anon_sym_SEMI] = ACTIONS(1364), - [anon_sym___extension__] = ACTIONS(1362), - [anon_sym_typedef] = ACTIONS(1362), - [anon_sym_extern] = ACTIONS(1362), - [anon_sym___attribute__] = ACTIONS(1362), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1364), - [anon_sym___declspec] = ACTIONS(1362), - [anon_sym___cdecl] = ACTIONS(1362), - [anon_sym___clrcall] = ACTIONS(1362), - [anon_sym___stdcall] = ACTIONS(1362), - [anon_sym___fastcall] = ACTIONS(1362), - [anon_sym___thiscall] = ACTIONS(1362), - [anon_sym___vectorcall] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_signed] = ACTIONS(1362), - [anon_sym_unsigned] = ACTIONS(1362), - [anon_sym_long] = ACTIONS(1362), - [anon_sym_short] = ACTIONS(1362), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_auto] = ACTIONS(1362), - [anon_sym_register] = ACTIONS(1362), - [anon_sym_inline] = ACTIONS(1362), - [anon_sym___inline] = ACTIONS(1362), - [anon_sym___inline__] = ACTIONS(1362), - [anon_sym___forceinline] = ACTIONS(1362), - [anon_sym_thread_local] = ACTIONS(1362), - [anon_sym___thread] = ACTIONS(1362), - [anon_sym_const] = ACTIONS(1362), - [anon_sym_constexpr] = ACTIONS(1362), - [anon_sym_volatile] = ACTIONS(1362), - [anon_sym_restrict] = ACTIONS(1362), - [anon_sym___restrict__] = ACTIONS(1362), - [anon_sym__Atomic] = ACTIONS(1362), - [anon_sym__Noreturn] = ACTIONS(1362), - [anon_sym_noreturn] = ACTIONS(1362), - [sym_primitive_type] = ACTIONS(1362), - [anon_sym_enum] = ACTIONS(1362), - [anon_sym_struct] = ACTIONS(1362), - [anon_sym_union] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1362), - [anon_sym_else] = ACTIONS(1362), - [anon_sym_switch] = ACTIONS(1362), - [anon_sym_case] = ACTIONS(1362), - [anon_sym_default] = ACTIONS(1362), - [anon_sym_while] = ACTIONS(1362), - [anon_sym_do] = ACTIONS(1362), - [anon_sym_for] = ACTIONS(1362), - [anon_sym_return] = ACTIONS(1362), - [anon_sym_break] = ACTIONS(1362), - [anon_sym_continue] = ACTIONS(1362), - [anon_sym_goto] = ACTIONS(1362), - [anon_sym___try] = ACTIONS(1362), - [anon_sym___leave] = ACTIONS(1362), - [anon_sym_DASH_DASH] = ACTIONS(1364), - [anon_sym_PLUS_PLUS] = ACTIONS(1364), - [anon_sym_sizeof] = ACTIONS(1362), - [anon_sym___alignof__] = ACTIONS(1362), - [anon_sym___alignof] = ACTIONS(1362), - [anon_sym__alignof] = ACTIONS(1362), - [anon_sym_alignof] = ACTIONS(1362), - [anon_sym__Alignof] = ACTIONS(1362), - [anon_sym_offsetof] = ACTIONS(1362), - [anon_sym__Generic] = ACTIONS(1362), - [anon_sym_asm] = ACTIONS(1362), - [anon_sym___asm__] = ACTIONS(1362), - [sym_number_literal] = ACTIONS(1364), - [anon_sym_L_SQUOTE] = ACTIONS(1364), - [anon_sym_u_SQUOTE] = ACTIONS(1364), - [anon_sym_U_SQUOTE] = ACTIONS(1364), - [anon_sym_u8_SQUOTE] = ACTIONS(1364), - [anon_sym_SQUOTE] = ACTIONS(1364), - [anon_sym_L_DQUOTE] = ACTIONS(1364), - [anon_sym_u_DQUOTE] = ACTIONS(1364), - [anon_sym_U_DQUOTE] = ACTIONS(1364), - [anon_sym_u8_DQUOTE] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1364), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [anon_sym_NULL] = ACTIONS(1362), - [anon_sym_nullptr] = ACTIONS(1362), + [354] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [350] = { - [sym_identifier] = ACTIONS(1330), - [aux_sym_preproc_include_token1] = ACTIONS(1330), - [aux_sym_preproc_def_token1] = ACTIONS(1330), - [aux_sym_preproc_if_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1330), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1330), - [sym_preproc_directive] = ACTIONS(1330), - [anon_sym_LPAREN2] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1332), - [anon_sym_TILDE] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_SEMI] = ACTIONS(1332), - [anon_sym___extension__] = ACTIONS(1330), - [anon_sym_typedef] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym___attribute__] = ACTIONS(1330), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1332), - [anon_sym___declspec] = ACTIONS(1330), - [anon_sym___cdecl] = ACTIONS(1330), - [anon_sym___clrcall] = ACTIONS(1330), - [anon_sym___stdcall] = ACTIONS(1330), - [anon_sym___fastcall] = ACTIONS(1330), - [anon_sym___thiscall] = ACTIONS(1330), - [anon_sym___vectorcall] = ACTIONS(1330), - [anon_sym_LBRACE] = ACTIONS(1332), - [anon_sym_RBRACE] = ACTIONS(1332), - [anon_sym_signed] = ACTIONS(1330), - [anon_sym_unsigned] = ACTIONS(1330), - [anon_sym_long] = ACTIONS(1330), - [anon_sym_short] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_auto] = ACTIONS(1330), - [anon_sym_register] = ACTIONS(1330), - [anon_sym_inline] = ACTIONS(1330), - [anon_sym___inline] = ACTIONS(1330), - [anon_sym___inline__] = ACTIONS(1330), - [anon_sym___forceinline] = ACTIONS(1330), - [anon_sym_thread_local] = ACTIONS(1330), - [anon_sym___thread] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_constexpr] = ACTIONS(1330), - [anon_sym_volatile] = ACTIONS(1330), - [anon_sym_restrict] = ACTIONS(1330), - [anon_sym___restrict__] = ACTIONS(1330), - [anon_sym__Atomic] = ACTIONS(1330), - [anon_sym__Noreturn] = ACTIONS(1330), - [anon_sym_noreturn] = ACTIONS(1330), - [sym_primitive_type] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_else] = ACTIONS(1330), - [anon_sym_switch] = ACTIONS(1330), - [anon_sym_case] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_do] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_goto] = ACTIONS(1330), - [anon_sym___try] = ACTIONS(1330), - [anon_sym___leave] = ACTIONS(1330), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_sizeof] = ACTIONS(1330), - [anon_sym___alignof__] = ACTIONS(1330), - [anon_sym___alignof] = ACTIONS(1330), - [anon_sym__alignof] = ACTIONS(1330), - [anon_sym_alignof] = ACTIONS(1330), - [anon_sym__Alignof] = ACTIONS(1330), - [anon_sym_offsetof] = ACTIONS(1330), - [anon_sym__Generic] = ACTIONS(1330), - [anon_sym_asm] = ACTIONS(1330), - [anon_sym___asm__] = ACTIONS(1330), - [sym_number_literal] = ACTIONS(1332), - [anon_sym_L_SQUOTE] = ACTIONS(1332), - [anon_sym_u_SQUOTE] = ACTIONS(1332), - [anon_sym_U_SQUOTE] = ACTIONS(1332), - [anon_sym_u8_SQUOTE] = ACTIONS(1332), - [anon_sym_SQUOTE] = ACTIONS(1332), - [anon_sym_L_DQUOTE] = ACTIONS(1332), - [anon_sym_u_DQUOTE] = ACTIONS(1332), - [anon_sym_U_DQUOTE] = ACTIONS(1332), - [anon_sym_u8_DQUOTE] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_true] = ACTIONS(1330), - [sym_false] = ACTIONS(1330), - [anon_sym_NULL] = ACTIONS(1330), - [anon_sym_nullptr] = ACTIONS(1330), + [355] = { + [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___extension__] = ACTIONS(1370), + [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_signed] = ACTIONS(1370), + [anon_sym_unsigned] = ACTIONS(1370), + [anon_sym_long] = ACTIONS(1370), + [anon_sym_short] = ACTIONS(1370), + [anon_sym_static] = ACTIONS(1370), + [anon_sym_auto] = ACTIONS(1370), + [anon_sym_register] = ACTIONS(1370), + [anon_sym_inline] = ACTIONS(1370), + [anon_sym___inline] = ACTIONS(1370), + [anon_sym___inline__] = ACTIONS(1370), + [anon_sym___forceinline] = ACTIONS(1370), + [anon_sym_thread_local] = ACTIONS(1370), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1370), + [anon_sym___leave] = ACTIONS(1370), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_sizeof] = ACTIONS(1370), + [anon_sym___alignof__] = ACTIONS(1370), + [anon_sym___alignof] = ACTIONS(1370), + [anon_sym__alignof] = ACTIONS(1370), + [anon_sym_alignof] = ACTIONS(1370), + [anon_sym__Alignof] = 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), }, - [351] = { - [sym_identifier] = ACTIONS(1326), - [aux_sym_preproc_include_token1] = ACTIONS(1326), - [aux_sym_preproc_def_token1] = ACTIONS(1326), - [aux_sym_preproc_if_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1326), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1326), - [sym_preproc_directive] = ACTIONS(1326), - [anon_sym_LPAREN2] = ACTIONS(1328), - [anon_sym_BANG] = ACTIONS(1328), - [anon_sym_TILDE] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym___extension__] = ACTIONS(1326), - [anon_sym_typedef] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym___attribute__] = ACTIONS(1326), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1328), - [anon_sym___declspec] = ACTIONS(1326), - [anon_sym___cdecl] = ACTIONS(1326), - [anon_sym___clrcall] = ACTIONS(1326), - [anon_sym___stdcall] = ACTIONS(1326), - [anon_sym___fastcall] = ACTIONS(1326), - [anon_sym___thiscall] = ACTIONS(1326), - [anon_sym___vectorcall] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_signed] = ACTIONS(1326), - [anon_sym_unsigned] = ACTIONS(1326), - [anon_sym_long] = ACTIONS(1326), - [anon_sym_short] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_auto] = ACTIONS(1326), - [anon_sym_register] = ACTIONS(1326), - [anon_sym_inline] = ACTIONS(1326), - [anon_sym___inline] = ACTIONS(1326), - [anon_sym___inline__] = ACTIONS(1326), - [anon_sym___forceinline] = ACTIONS(1326), - [anon_sym_thread_local] = ACTIONS(1326), - [anon_sym___thread] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_constexpr] = ACTIONS(1326), - [anon_sym_volatile] = ACTIONS(1326), - [anon_sym_restrict] = ACTIONS(1326), - [anon_sym___restrict__] = ACTIONS(1326), - [anon_sym__Atomic] = ACTIONS(1326), - [anon_sym__Noreturn] = ACTIONS(1326), - [anon_sym_noreturn] = ACTIONS(1326), - [sym_primitive_type] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_else] = ACTIONS(1326), - [anon_sym_switch] = ACTIONS(1326), - [anon_sym_case] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_do] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_goto] = ACTIONS(1326), - [anon_sym___try] = ACTIONS(1326), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_sizeof] = ACTIONS(1326), - [anon_sym___alignof__] = ACTIONS(1326), - [anon_sym___alignof] = ACTIONS(1326), - [anon_sym__alignof] = ACTIONS(1326), - [anon_sym_alignof] = ACTIONS(1326), - [anon_sym__Alignof] = ACTIONS(1326), - [anon_sym_offsetof] = ACTIONS(1326), - [anon_sym__Generic] = ACTIONS(1326), - [anon_sym_asm] = ACTIONS(1326), - [anon_sym___asm__] = ACTIONS(1326), - [sym_number_literal] = ACTIONS(1328), - [anon_sym_L_SQUOTE] = ACTIONS(1328), - [anon_sym_u_SQUOTE] = ACTIONS(1328), - [anon_sym_U_SQUOTE] = ACTIONS(1328), - [anon_sym_u8_SQUOTE] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1328), - [anon_sym_L_DQUOTE] = ACTIONS(1328), - [anon_sym_u_DQUOTE] = ACTIONS(1328), - [anon_sym_U_DQUOTE] = ACTIONS(1328), - [anon_sym_u8_DQUOTE] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_true] = ACTIONS(1326), - [sym_false] = ACTIONS(1326), - [anon_sym_NULL] = ACTIONS(1326), - [anon_sym_nullptr] = ACTIONS(1326), + [356] = { + [sym_identifier] = ACTIONS(1410), + [aux_sym_preproc_include_token1] = ACTIONS(1410), + [aux_sym_preproc_def_token1] = ACTIONS(1410), + [aux_sym_preproc_if_token1] = ACTIONS(1410), + [aux_sym_preproc_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___extension__] = ACTIONS(1410), + [anon_sym_typedef] = ACTIONS(1410), + [anon_sym_extern] = ACTIONS(1410), + [anon_sym___attribute__] = ACTIONS(1410), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), + [anon_sym___declspec] = ACTIONS(1410), + [anon_sym___cdecl] = ACTIONS(1410), + [anon_sym___clrcall] = ACTIONS(1410), + [anon_sym___stdcall] = ACTIONS(1410), + [anon_sym___fastcall] = ACTIONS(1410), + [anon_sym___thiscall] = ACTIONS(1410), + [anon_sym___vectorcall] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_signed] = ACTIONS(1410), + [anon_sym_unsigned] = ACTIONS(1410), + [anon_sym_long] = ACTIONS(1410), + [anon_sym_short] = ACTIONS(1410), + [anon_sym_static] = ACTIONS(1410), + [anon_sym_auto] = ACTIONS(1410), + [anon_sym_register] = ACTIONS(1410), + [anon_sym_inline] = ACTIONS(1410), + [anon_sym___inline] = ACTIONS(1410), + [anon_sym___inline__] = ACTIONS(1410), + [anon_sym___forceinline] = ACTIONS(1410), + [anon_sym_thread_local] = ACTIONS(1410), + [anon_sym___thread] = ACTIONS(1410), + [anon_sym_const] = ACTIONS(1410), + [anon_sym_constexpr] = ACTIONS(1410), + [anon_sym_volatile] = ACTIONS(1410), + [anon_sym_restrict] = ACTIONS(1410), + [anon_sym___restrict__] = ACTIONS(1410), + [anon_sym__Atomic] = ACTIONS(1410), + [anon_sym__Noreturn] = ACTIONS(1410), + [anon_sym_noreturn] = ACTIONS(1410), + [sym_primitive_type] = ACTIONS(1410), + [anon_sym_enum] = ACTIONS(1410), + [anon_sym_struct] = ACTIONS(1410), + [anon_sym_union] = ACTIONS(1410), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_else] = 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___try] = ACTIONS(1410), + [anon_sym___leave] = ACTIONS(1410), + [anon_sym_DASH_DASH] = ACTIONS(1412), + [anon_sym_PLUS_PLUS] = ACTIONS(1412), + [anon_sym_sizeof] = ACTIONS(1410), + [anon_sym___alignof__] = ACTIONS(1410), + [anon_sym___alignof] = ACTIONS(1410), + [anon_sym__alignof] = ACTIONS(1410), + [anon_sym_alignof] = ACTIONS(1410), + [anon_sym__Alignof] = 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), }, - [352] = { - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(1314), - [aux_sym_preproc_def_token1] = ACTIONS(1314), - [aux_sym_preproc_if_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), - [sym_preproc_directive] = ACTIONS(1314), - [anon_sym_LPAREN2] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym___extension__] = ACTIONS(1314), - [anon_sym_typedef] = ACTIONS(1314), - [anon_sym_extern] = ACTIONS(1314), - [anon_sym___attribute__] = ACTIONS(1314), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), - [anon_sym___declspec] = ACTIONS(1314), - [anon_sym___cdecl] = ACTIONS(1314), - [anon_sym___clrcall] = ACTIONS(1314), - [anon_sym___stdcall] = ACTIONS(1314), - [anon_sym___fastcall] = ACTIONS(1314), - [anon_sym___thiscall] = ACTIONS(1314), - [anon_sym___vectorcall] = ACTIONS(1314), - [anon_sym_LBRACE] = ACTIONS(1316), - [anon_sym_RBRACE] = ACTIONS(1316), - [anon_sym_signed] = ACTIONS(1314), - [anon_sym_unsigned] = ACTIONS(1314), - [anon_sym_long] = ACTIONS(1314), - [anon_sym_short] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_auto] = ACTIONS(1314), - [anon_sym_register] = ACTIONS(1314), - [anon_sym_inline] = ACTIONS(1314), - [anon_sym___inline] = ACTIONS(1314), - [anon_sym___inline__] = ACTIONS(1314), - [anon_sym___forceinline] = ACTIONS(1314), - [anon_sym_thread_local] = ACTIONS(1314), - [anon_sym___thread] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_constexpr] = ACTIONS(1314), - [anon_sym_volatile] = ACTIONS(1314), - [anon_sym_restrict] = ACTIONS(1314), - [anon_sym___restrict__] = ACTIONS(1314), - [anon_sym__Atomic] = ACTIONS(1314), - [anon_sym__Noreturn] = ACTIONS(1314), - [anon_sym_noreturn] = ACTIONS(1314), - [sym_primitive_type] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_else] = ACTIONS(1314), - [anon_sym_switch] = ACTIONS(1314), - [anon_sym_case] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [anon_sym_do] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_goto] = ACTIONS(1314), - [anon_sym___try] = ACTIONS(1314), - [anon_sym___leave] = ACTIONS(1314), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_sizeof] = ACTIONS(1314), - [anon_sym___alignof__] = ACTIONS(1314), - [anon_sym___alignof] = ACTIONS(1314), - [anon_sym__alignof] = ACTIONS(1314), - [anon_sym_alignof] = ACTIONS(1314), - [anon_sym__Alignof] = ACTIONS(1314), - [anon_sym_offsetof] = ACTIONS(1314), - [anon_sym__Generic] = ACTIONS(1314), - [anon_sym_asm] = ACTIONS(1314), - [anon_sym___asm__] = ACTIONS(1314), - [sym_number_literal] = ACTIONS(1316), - [anon_sym_L_SQUOTE] = ACTIONS(1316), - [anon_sym_u_SQUOTE] = ACTIONS(1316), - [anon_sym_U_SQUOTE] = ACTIONS(1316), - [anon_sym_u8_SQUOTE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1316), - [anon_sym_L_DQUOTE] = ACTIONS(1316), - [anon_sym_u_DQUOTE] = ACTIONS(1316), - [anon_sym_U_DQUOTE] = ACTIONS(1316), - [anon_sym_u8_DQUOTE] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_true] = ACTIONS(1314), - [sym_false] = ACTIONS(1314), - [anon_sym_NULL] = ACTIONS(1314), - [anon_sym_nullptr] = ACTIONS(1314), + [357] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), + [sym_comment] = ACTIONS(3), + }, + [358] = { + [sym_identifier] = ACTIONS(1358), + [aux_sym_preproc_include_token1] = ACTIONS(1358), + [aux_sym_preproc_def_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token1] = ACTIONS(1358), + [aux_sym_preproc_if_token2] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1358), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1358), + [sym_preproc_directive] = ACTIONS(1358), + [anon_sym_LPAREN2] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1360), + [anon_sym_TILDE] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym___extension__] = ACTIONS(1358), + [anon_sym_typedef] = ACTIONS(1358), + [anon_sym_extern] = ACTIONS(1358), + [anon_sym___attribute__] = ACTIONS(1358), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1360), + [anon_sym___declspec] = ACTIONS(1358), + [anon_sym___cdecl] = ACTIONS(1358), + [anon_sym___clrcall] = ACTIONS(1358), + [anon_sym___stdcall] = ACTIONS(1358), + [anon_sym___fastcall] = ACTIONS(1358), + [anon_sym___thiscall] = ACTIONS(1358), + [anon_sym___vectorcall] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_signed] = ACTIONS(1358), + [anon_sym_unsigned] = ACTIONS(1358), + [anon_sym_long] = ACTIONS(1358), + [anon_sym_short] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_auto] = ACTIONS(1358), + [anon_sym_register] = ACTIONS(1358), + [anon_sym_inline] = ACTIONS(1358), + [anon_sym___inline] = ACTIONS(1358), + [anon_sym___inline__] = ACTIONS(1358), + [anon_sym___forceinline] = ACTIONS(1358), + [anon_sym_thread_local] = ACTIONS(1358), + [anon_sym___thread] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_constexpr] = ACTIONS(1358), + [anon_sym_volatile] = ACTIONS(1358), + [anon_sym_restrict] = ACTIONS(1358), + [anon_sym___restrict__] = ACTIONS(1358), + [anon_sym__Atomic] = ACTIONS(1358), + [anon_sym__Noreturn] = ACTIONS(1358), + [anon_sym_noreturn] = ACTIONS(1358), + [sym_primitive_type] = ACTIONS(1358), + [anon_sym_enum] = ACTIONS(1358), + [anon_sym_struct] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_switch] = ACTIONS(1358), + [anon_sym_case] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_do] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_goto] = ACTIONS(1358), + [anon_sym___try] = ACTIONS(1358), + [anon_sym___leave] = ACTIONS(1358), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_sizeof] = ACTIONS(1358), + [anon_sym___alignof__] = ACTIONS(1358), + [anon_sym___alignof] = ACTIONS(1358), + [anon_sym__alignof] = ACTIONS(1358), + [anon_sym_alignof] = ACTIONS(1358), + [anon_sym__Alignof] = ACTIONS(1358), + [anon_sym_offsetof] = ACTIONS(1358), + [anon_sym__Generic] = ACTIONS(1358), + [anon_sym_asm] = ACTIONS(1358), + [anon_sym___asm__] = ACTIONS(1358), + [sym_number_literal] = ACTIONS(1360), + [anon_sym_L_SQUOTE] = ACTIONS(1360), + [anon_sym_u_SQUOTE] = ACTIONS(1360), + [anon_sym_U_SQUOTE] = ACTIONS(1360), + [anon_sym_u8_SQUOTE] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), + [anon_sym_L_DQUOTE] = ACTIONS(1360), + [anon_sym_u_DQUOTE] = ACTIONS(1360), + [anon_sym_U_DQUOTE] = ACTIONS(1360), + [anon_sym_u8_DQUOTE] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1360), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), + [anon_sym_NULL] = ACTIONS(1358), + [anon_sym_nullptr] = ACTIONS(1358), [sym_comment] = ACTIONS(3), }, - [353] = { - [sym_identifier] = ACTIONS(1310), - [aux_sym_preproc_include_token1] = ACTIONS(1310), - [aux_sym_preproc_def_token1] = ACTIONS(1310), - [aux_sym_preproc_if_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1310), - [sym_preproc_directive] = ACTIONS(1310), - [anon_sym_LPAREN2] = ACTIONS(1312), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1310), - [anon_sym_PLUS] = ACTIONS(1310), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym___extension__] = ACTIONS(1310), - [anon_sym_typedef] = ACTIONS(1310), - [anon_sym_extern] = ACTIONS(1310), - [anon_sym___attribute__] = ACTIONS(1310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1312), - [anon_sym___declspec] = ACTIONS(1310), - [anon_sym___cdecl] = ACTIONS(1310), - [anon_sym___clrcall] = ACTIONS(1310), - [anon_sym___stdcall] = ACTIONS(1310), - [anon_sym___fastcall] = ACTIONS(1310), - [anon_sym___thiscall] = ACTIONS(1310), - [anon_sym___vectorcall] = ACTIONS(1310), - [anon_sym_LBRACE] = ACTIONS(1312), - [anon_sym_RBRACE] = ACTIONS(1312), - [anon_sym_signed] = ACTIONS(1310), - [anon_sym_unsigned] = ACTIONS(1310), - [anon_sym_long] = ACTIONS(1310), - [anon_sym_short] = ACTIONS(1310), - [anon_sym_static] = ACTIONS(1310), - [anon_sym_auto] = ACTIONS(1310), - [anon_sym_register] = ACTIONS(1310), - [anon_sym_inline] = ACTIONS(1310), - [anon_sym___inline] = ACTIONS(1310), - [anon_sym___inline__] = ACTIONS(1310), - [anon_sym___forceinline] = ACTIONS(1310), - [anon_sym_thread_local] = ACTIONS(1310), - [anon_sym___thread] = ACTIONS(1310), - [anon_sym_const] = ACTIONS(1310), - [anon_sym_constexpr] = ACTIONS(1310), - [anon_sym_volatile] = ACTIONS(1310), - [anon_sym_restrict] = ACTIONS(1310), - [anon_sym___restrict__] = ACTIONS(1310), - [anon_sym__Atomic] = ACTIONS(1310), - [anon_sym__Noreturn] = ACTIONS(1310), - [anon_sym_noreturn] = ACTIONS(1310), - [sym_primitive_type] = ACTIONS(1310), - [anon_sym_enum] = ACTIONS(1310), - [anon_sym_struct] = ACTIONS(1310), - [anon_sym_union] = ACTIONS(1310), - [anon_sym_if] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1310), - [anon_sym_switch] = ACTIONS(1310), - [anon_sym_case] = ACTIONS(1310), - [anon_sym_default] = ACTIONS(1310), - [anon_sym_while] = ACTIONS(1310), - [anon_sym_do] = ACTIONS(1310), - [anon_sym_for] = ACTIONS(1310), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_break] = ACTIONS(1310), - [anon_sym_continue] = ACTIONS(1310), - [anon_sym_goto] = ACTIONS(1310), - [anon_sym___try] = ACTIONS(1310), - [anon_sym___leave] = ACTIONS(1310), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_sizeof] = ACTIONS(1310), - [anon_sym___alignof__] = ACTIONS(1310), - [anon_sym___alignof] = ACTIONS(1310), - [anon_sym__alignof] = ACTIONS(1310), - [anon_sym_alignof] = ACTIONS(1310), - [anon_sym__Alignof] = ACTIONS(1310), - [anon_sym_offsetof] = ACTIONS(1310), - [anon_sym__Generic] = ACTIONS(1310), - [anon_sym_asm] = ACTIONS(1310), - [anon_sym___asm__] = ACTIONS(1310), - [sym_number_literal] = ACTIONS(1312), - [anon_sym_L_SQUOTE] = ACTIONS(1312), - [anon_sym_u_SQUOTE] = ACTIONS(1312), - [anon_sym_U_SQUOTE] = ACTIONS(1312), - [anon_sym_u8_SQUOTE] = ACTIONS(1312), - [anon_sym_SQUOTE] = ACTIONS(1312), - [anon_sym_L_DQUOTE] = ACTIONS(1312), - [anon_sym_u_DQUOTE] = ACTIONS(1312), - [anon_sym_U_DQUOTE] = ACTIONS(1312), - [anon_sym_u8_DQUOTE] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_true] = ACTIONS(1310), - [sym_false] = ACTIONS(1310), - [anon_sym_NULL] = ACTIONS(1310), - [anon_sym_nullptr] = ACTIONS(1310), + [359] = { + [ts_builtin_sym_end] = ACTIONS(1356), + [sym_identifier] = ACTIONS(1354), + [aux_sym_preproc_include_token1] = ACTIONS(1354), + [aux_sym_preproc_def_token1] = ACTIONS(1354), + [aux_sym_preproc_if_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1354), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1354), + [sym_preproc_directive] = ACTIONS(1354), + [anon_sym_LPAREN2] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_TILDE] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym___extension__] = ACTIONS(1354), + [anon_sym_typedef] = ACTIONS(1354), + [anon_sym_extern] = ACTIONS(1354), + [anon_sym___attribute__] = ACTIONS(1354), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1356), + [anon_sym___declspec] = ACTIONS(1354), + [anon_sym___cdecl] = ACTIONS(1354), + [anon_sym___clrcall] = ACTIONS(1354), + [anon_sym___stdcall] = ACTIONS(1354), + [anon_sym___fastcall] = ACTIONS(1354), + [anon_sym___thiscall] = ACTIONS(1354), + [anon_sym___vectorcall] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1356), + [anon_sym_signed] = ACTIONS(1354), + [anon_sym_unsigned] = ACTIONS(1354), + [anon_sym_long] = ACTIONS(1354), + [anon_sym_short] = ACTIONS(1354), + [anon_sym_static] = ACTIONS(1354), + [anon_sym_auto] = ACTIONS(1354), + [anon_sym_register] = ACTIONS(1354), + [anon_sym_inline] = ACTIONS(1354), + [anon_sym___inline] = ACTIONS(1354), + [anon_sym___inline__] = ACTIONS(1354), + [anon_sym___forceinline] = ACTIONS(1354), + [anon_sym_thread_local] = ACTIONS(1354), + [anon_sym___thread] = ACTIONS(1354), + [anon_sym_const] = ACTIONS(1354), + [anon_sym_constexpr] = ACTIONS(1354), + [anon_sym_volatile] = ACTIONS(1354), + [anon_sym_restrict] = ACTIONS(1354), + [anon_sym___restrict__] = ACTIONS(1354), + [anon_sym__Atomic] = ACTIONS(1354), + [anon_sym__Noreturn] = ACTIONS(1354), + [anon_sym_noreturn] = ACTIONS(1354), + [sym_primitive_type] = ACTIONS(1354), + [anon_sym_enum] = ACTIONS(1354), + [anon_sym_struct] = ACTIONS(1354), + [anon_sym_union] = ACTIONS(1354), + [anon_sym_if] = ACTIONS(1354), + [anon_sym_else] = ACTIONS(1354), + [anon_sym_switch] = ACTIONS(1354), + [anon_sym_case] = ACTIONS(1354), + [anon_sym_default] = ACTIONS(1354), + [anon_sym_while] = ACTIONS(1354), + [anon_sym_do] = ACTIONS(1354), + [anon_sym_for] = ACTIONS(1354), + [anon_sym_return] = ACTIONS(1354), + [anon_sym_break] = ACTIONS(1354), + [anon_sym_continue] = ACTIONS(1354), + [anon_sym_goto] = ACTIONS(1354), + [anon_sym___try] = ACTIONS(1354), + [anon_sym___leave] = ACTIONS(1354), + [anon_sym_DASH_DASH] = ACTIONS(1356), + [anon_sym_PLUS_PLUS] = ACTIONS(1356), + [anon_sym_sizeof] = ACTIONS(1354), + [anon_sym___alignof__] = ACTIONS(1354), + [anon_sym___alignof] = ACTIONS(1354), + [anon_sym__alignof] = ACTIONS(1354), + [anon_sym_alignof] = ACTIONS(1354), + [anon_sym__Alignof] = ACTIONS(1354), + [anon_sym_offsetof] = ACTIONS(1354), + [anon_sym__Generic] = ACTIONS(1354), + [anon_sym_asm] = ACTIONS(1354), + [anon_sym___asm__] = ACTIONS(1354), + [sym_number_literal] = ACTIONS(1356), + [anon_sym_L_SQUOTE] = ACTIONS(1356), + [anon_sym_u_SQUOTE] = ACTIONS(1356), + [anon_sym_U_SQUOTE] = ACTIONS(1356), + [anon_sym_u8_SQUOTE] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), + [anon_sym_L_DQUOTE] = ACTIONS(1356), + [anon_sym_u_DQUOTE] = ACTIONS(1356), + [anon_sym_U_DQUOTE] = ACTIONS(1356), + [anon_sym_u8_DQUOTE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1356), + [sym_true] = ACTIONS(1354), + [sym_false] = ACTIONS(1354), + [anon_sym_NULL] = ACTIONS(1354), + [anon_sym_nullptr] = ACTIONS(1354), [sym_comment] = ACTIONS(3), }, - [354] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token2] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), + [360] = { + [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___extension__] = ACTIONS(1406), + [anon_sym_typedef] = ACTIONS(1406), + [anon_sym_extern] = ACTIONS(1406), + [anon_sym___attribute__] = ACTIONS(1406), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), + [anon_sym___declspec] = ACTIONS(1406), + [anon_sym___cdecl] = ACTIONS(1406), + [anon_sym___clrcall] = ACTIONS(1406), + [anon_sym___stdcall] = ACTIONS(1406), + [anon_sym___fastcall] = ACTIONS(1406), + [anon_sym___thiscall] = ACTIONS(1406), + [anon_sym___vectorcall] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1408), + [anon_sym_RBRACE] = ACTIONS(1408), + [anon_sym_signed] = ACTIONS(1406), + [anon_sym_unsigned] = ACTIONS(1406), + [anon_sym_long] = ACTIONS(1406), + [anon_sym_short] = ACTIONS(1406), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_auto] = ACTIONS(1406), + [anon_sym_register] = ACTIONS(1406), + [anon_sym_inline] = ACTIONS(1406), + [anon_sym___inline] = ACTIONS(1406), + [anon_sym___inline__] = ACTIONS(1406), + [anon_sym___forceinline] = ACTIONS(1406), + [anon_sym_thread_local] = ACTIONS(1406), + [anon_sym___thread] = ACTIONS(1406), + [anon_sym_const] = ACTIONS(1406), + [anon_sym_constexpr] = ACTIONS(1406), + [anon_sym_volatile] = ACTIONS(1406), + [anon_sym_restrict] = ACTIONS(1406), + [anon_sym___restrict__] = ACTIONS(1406), + [anon_sym__Atomic] = ACTIONS(1406), + [anon_sym__Noreturn] = ACTIONS(1406), + [anon_sym_noreturn] = ACTIONS(1406), + [sym_primitive_type] = ACTIONS(1406), + [anon_sym_enum] = ACTIONS(1406), + [anon_sym_struct] = ACTIONS(1406), + [anon_sym_union] = ACTIONS(1406), + [anon_sym_if] = ACTIONS(1406), + [anon_sym_else] = 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___try] = ACTIONS(1406), + [anon_sym___leave] = ACTIONS(1406), + [anon_sym_DASH_DASH] = ACTIONS(1408), + [anon_sym_PLUS_PLUS] = ACTIONS(1408), + [anon_sym_sizeof] = ACTIONS(1406), + [anon_sym___alignof__] = ACTIONS(1406), + [anon_sym___alignof] = ACTIONS(1406), + [anon_sym__alignof] = ACTIONS(1406), + [anon_sym_alignof] = ACTIONS(1406), + [anon_sym__Alignof] = 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), }, - [355] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [361] = { + [sym_identifier] = ACTIONS(1302), + [aux_sym_preproc_include_token1] = ACTIONS(1302), + [aux_sym_preproc_def_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token1] = ACTIONS(1302), + [aux_sym_preproc_if_token2] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1302), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1302), + [sym_preproc_directive] = ACTIONS(1302), + [anon_sym_LPAREN2] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1304), + [anon_sym_TILDE] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1302), + [anon_sym_PLUS] = ACTIONS(1302), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym___extension__] = ACTIONS(1302), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_extern] = ACTIONS(1302), + [anon_sym___attribute__] = ACTIONS(1302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1304), + [anon_sym___declspec] = ACTIONS(1302), + [anon_sym___cdecl] = ACTIONS(1302), + [anon_sym___clrcall] = ACTIONS(1302), + [anon_sym___stdcall] = ACTIONS(1302), + [anon_sym___fastcall] = ACTIONS(1302), + [anon_sym___thiscall] = ACTIONS(1302), + [anon_sym___vectorcall] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_signed] = ACTIONS(1302), + [anon_sym_unsigned] = ACTIONS(1302), + [anon_sym_long] = ACTIONS(1302), + [anon_sym_short] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1302), + [anon_sym_auto] = ACTIONS(1302), + [anon_sym_register] = ACTIONS(1302), + [anon_sym_inline] = ACTIONS(1302), + [anon_sym___inline] = ACTIONS(1302), + [anon_sym___inline__] = ACTIONS(1302), + [anon_sym___forceinline] = ACTIONS(1302), + [anon_sym_thread_local] = ACTIONS(1302), + [anon_sym___thread] = ACTIONS(1302), + [anon_sym_const] = ACTIONS(1302), + [anon_sym_constexpr] = ACTIONS(1302), + [anon_sym_volatile] = ACTIONS(1302), + [anon_sym_restrict] = ACTIONS(1302), + [anon_sym___restrict__] = ACTIONS(1302), + [anon_sym__Atomic] = ACTIONS(1302), + [anon_sym__Noreturn] = ACTIONS(1302), + [anon_sym_noreturn] = ACTIONS(1302), + [sym_primitive_type] = ACTIONS(1302), + [anon_sym_enum] = ACTIONS(1302), + [anon_sym_struct] = ACTIONS(1302), + [anon_sym_union] = ACTIONS(1302), + [anon_sym_if] = ACTIONS(1302), + [anon_sym_else] = ACTIONS(1302), + [anon_sym_switch] = ACTIONS(1302), + [anon_sym_case] = ACTIONS(1302), + [anon_sym_default] = ACTIONS(1302), + [anon_sym_while] = ACTIONS(1302), + [anon_sym_do] = ACTIONS(1302), + [anon_sym_for] = ACTIONS(1302), + [anon_sym_return] = ACTIONS(1302), + [anon_sym_break] = ACTIONS(1302), + [anon_sym_continue] = ACTIONS(1302), + [anon_sym_goto] = ACTIONS(1302), + [anon_sym___try] = ACTIONS(1302), + [anon_sym___leave] = ACTIONS(1302), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_sizeof] = ACTIONS(1302), + [anon_sym___alignof__] = ACTIONS(1302), + [anon_sym___alignof] = ACTIONS(1302), + [anon_sym__alignof] = ACTIONS(1302), + [anon_sym_alignof] = ACTIONS(1302), + [anon_sym__Alignof] = ACTIONS(1302), + [anon_sym_offsetof] = ACTIONS(1302), + [anon_sym__Generic] = ACTIONS(1302), + [anon_sym_asm] = ACTIONS(1302), + [anon_sym___asm__] = ACTIONS(1302), + [sym_number_literal] = ACTIONS(1304), + [anon_sym_L_SQUOTE] = ACTIONS(1304), + [anon_sym_u_SQUOTE] = ACTIONS(1304), + [anon_sym_U_SQUOTE] = ACTIONS(1304), + [anon_sym_u8_SQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [anon_sym_L_DQUOTE] = ACTIONS(1304), + [anon_sym_u_DQUOTE] = ACTIONS(1304), + [anon_sym_U_DQUOTE] = ACTIONS(1304), + [anon_sym_u8_DQUOTE] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [sym_true] = ACTIONS(1302), + [sym_false] = ACTIONS(1302), + [anon_sym_NULL] = ACTIONS(1302), + [anon_sym_nullptr] = ACTIONS(1302), [sym_comment] = ACTIONS(3), }, - [356] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [362] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), + [sym_comment] = ACTIONS(3), + }, + [363] = { + [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___extension__] = ACTIONS(1402), + [anon_sym_typedef] = ACTIONS(1402), + [anon_sym_extern] = ACTIONS(1402), + [anon_sym___attribute__] = ACTIONS(1402), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), + [anon_sym___declspec] = ACTIONS(1402), + [anon_sym___cdecl] = ACTIONS(1402), + [anon_sym___clrcall] = ACTIONS(1402), + [anon_sym___stdcall] = ACTIONS(1402), + [anon_sym___fastcall] = ACTIONS(1402), + [anon_sym___thiscall] = ACTIONS(1402), + [anon_sym___vectorcall] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1404), + [anon_sym_RBRACE] = ACTIONS(1404), + [anon_sym_signed] = ACTIONS(1402), + [anon_sym_unsigned] = ACTIONS(1402), + [anon_sym_long] = ACTIONS(1402), + [anon_sym_short] = ACTIONS(1402), + [anon_sym_static] = ACTIONS(1402), + [anon_sym_auto] = ACTIONS(1402), + [anon_sym_register] = ACTIONS(1402), + [anon_sym_inline] = ACTIONS(1402), + [anon_sym___inline] = ACTIONS(1402), + [anon_sym___inline__] = ACTIONS(1402), + [anon_sym___forceinline] = ACTIONS(1402), + [anon_sym_thread_local] = ACTIONS(1402), + [anon_sym___thread] = ACTIONS(1402), + [anon_sym_const] = ACTIONS(1402), + [anon_sym_constexpr] = ACTIONS(1402), + [anon_sym_volatile] = ACTIONS(1402), + [anon_sym_restrict] = ACTIONS(1402), + [anon_sym___restrict__] = ACTIONS(1402), + [anon_sym__Atomic] = ACTIONS(1402), + [anon_sym__Noreturn] = ACTIONS(1402), + [anon_sym_noreturn] = ACTIONS(1402), + [sym_primitive_type] = ACTIONS(1402), + [anon_sym_enum] = ACTIONS(1402), + [anon_sym_struct] = ACTIONS(1402), + [anon_sym_union] = ACTIONS(1402), + [anon_sym_if] = ACTIONS(1402), + [anon_sym_else] = 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___try] = ACTIONS(1402), + [anon_sym___leave] = ACTIONS(1402), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_sizeof] = ACTIONS(1402), + [anon_sym___alignof__] = ACTIONS(1402), + [anon_sym___alignof] = ACTIONS(1402), + [anon_sym__alignof] = ACTIONS(1402), + [anon_sym_alignof] = ACTIONS(1402), + [anon_sym__Alignof] = 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), }, - [357] = { - [sym_attribute_declaration] = STATE(357), - [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_seh_try_statement] = STATE(112), - [sym_seh_leave_statement] = STATE(112), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(357), - [sym_identifier] = ACTIONS(1534), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1555), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_switch] = ACTIONS(1561), - [anon_sym_case] = ACTIONS(1564), - [anon_sym_default] = ACTIONS(1567), - [anon_sym_while] = ACTIONS(1570), - [anon_sym_do] = ACTIONS(1573), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1579), - [anon_sym_break] = ACTIONS(1582), - [anon_sym_continue] = ACTIONS(1585), - [anon_sym_goto] = ACTIONS(1588), - [anon_sym___try] = ACTIONS(1591), - [anon_sym___leave] = ACTIONS(1594), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_sizeof] = ACTIONS(1600), - [anon_sym___alignof__] = ACTIONS(1603), - [anon_sym___alignof] = ACTIONS(1603), - [anon_sym__alignof] = ACTIONS(1603), - [anon_sym_alignof] = ACTIONS(1603), - [anon_sym__Alignof] = ACTIONS(1603), - [anon_sym_offsetof] = ACTIONS(1606), - [anon_sym__Generic] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym___asm__] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1615), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym_u_SQUOTE] = ACTIONS(1618), - [anon_sym_U_SQUOTE] = ACTIONS(1618), - [anon_sym_u8_SQUOTE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1624), - [sym_false] = ACTIONS(1624), - [anon_sym_NULL] = ACTIONS(1627), - [anon_sym_nullptr] = ACTIONS(1627), + [364] = { + [sym_identifier] = ACTIONS(1338), + [aux_sym_preproc_include_token1] = ACTIONS(1338), + [aux_sym_preproc_def_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token1] = ACTIONS(1338), + [aux_sym_preproc_if_token2] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1338), + [sym_preproc_directive] = ACTIONS(1338), + [anon_sym_LPAREN2] = ACTIONS(1340), + [anon_sym_BANG] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1338), + [anon_sym_PLUS] = ACTIONS(1338), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_SEMI] = ACTIONS(1340), + [anon_sym___extension__] = ACTIONS(1338), + [anon_sym_typedef] = ACTIONS(1338), + [anon_sym_extern] = ACTIONS(1338), + [anon_sym___attribute__] = ACTIONS(1338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1340), + [anon_sym___declspec] = ACTIONS(1338), + [anon_sym___cdecl] = ACTIONS(1338), + [anon_sym___clrcall] = ACTIONS(1338), + [anon_sym___stdcall] = ACTIONS(1338), + [anon_sym___fastcall] = ACTIONS(1338), + [anon_sym___thiscall] = ACTIONS(1338), + [anon_sym___vectorcall] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(1340), + [anon_sym_signed] = ACTIONS(1338), + [anon_sym_unsigned] = ACTIONS(1338), + [anon_sym_long] = ACTIONS(1338), + [anon_sym_short] = ACTIONS(1338), + [anon_sym_static] = ACTIONS(1338), + [anon_sym_auto] = ACTIONS(1338), + [anon_sym_register] = ACTIONS(1338), + [anon_sym_inline] = ACTIONS(1338), + [anon_sym___inline] = ACTIONS(1338), + [anon_sym___inline__] = ACTIONS(1338), + [anon_sym___forceinline] = ACTIONS(1338), + [anon_sym_thread_local] = ACTIONS(1338), + [anon_sym___thread] = ACTIONS(1338), + [anon_sym_const] = ACTIONS(1338), + [anon_sym_constexpr] = ACTIONS(1338), + [anon_sym_volatile] = ACTIONS(1338), + [anon_sym_restrict] = ACTIONS(1338), + [anon_sym___restrict__] = ACTIONS(1338), + [anon_sym__Atomic] = ACTIONS(1338), + [anon_sym__Noreturn] = ACTIONS(1338), + [anon_sym_noreturn] = ACTIONS(1338), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1338), + [anon_sym_struct] = ACTIONS(1338), + [anon_sym_union] = ACTIONS(1338), + [anon_sym_if] = ACTIONS(1338), + [anon_sym_else] = ACTIONS(1338), + [anon_sym_switch] = ACTIONS(1338), + [anon_sym_case] = ACTIONS(1338), + [anon_sym_default] = ACTIONS(1338), + [anon_sym_while] = ACTIONS(1338), + [anon_sym_do] = ACTIONS(1338), + [anon_sym_for] = ACTIONS(1338), + [anon_sym_return] = ACTIONS(1338), + [anon_sym_break] = ACTIONS(1338), + [anon_sym_continue] = ACTIONS(1338), + [anon_sym_goto] = ACTIONS(1338), + [anon_sym___try] = ACTIONS(1338), + [anon_sym___leave] = ACTIONS(1338), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_sizeof] = ACTIONS(1338), + [anon_sym___alignof__] = ACTIONS(1338), + [anon_sym___alignof] = ACTIONS(1338), + [anon_sym__alignof] = ACTIONS(1338), + [anon_sym_alignof] = ACTIONS(1338), + [anon_sym__Alignof] = ACTIONS(1338), + [anon_sym_offsetof] = ACTIONS(1338), + [anon_sym__Generic] = ACTIONS(1338), + [anon_sym_asm] = ACTIONS(1338), + [anon_sym___asm__] = ACTIONS(1338), + [sym_number_literal] = ACTIONS(1340), + [anon_sym_L_SQUOTE] = ACTIONS(1340), + [anon_sym_u_SQUOTE] = ACTIONS(1340), + [anon_sym_U_SQUOTE] = ACTIONS(1340), + [anon_sym_u8_SQUOTE] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), + [anon_sym_L_DQUOTE] = ACTIONS(1340), + [anon_sym_u_DQUOTE] = ACTIONS(1340), + [anon_sym_U_DQUOTE] = ACTIONS(1340), + [anon_sym_u8_DQUOTE] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1340), + [sym_true] = ACTIONS(1338), + [sym_false] = ACTIONS(1338), + [anon_sym_NULL] = ACTIONS(1338), + [anon_sym_nullptr] = ACTIONS(1338), [sym_comment] = ACTIONS(3), }, - [358] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(2206), - [sym_attributed_statement] = STATE(2206), - [sym_labeled_statement] = STATE(2206), - [sym_expression_statement] = STATE(2206), - [sym_if_statement] = STATE(2206), - [sym_switch_statement] = STATE(2206), - [sym_case_statement] = STATE(2206), - [sym_while_statement] = STATE(2206), - [sym_do_statement] = STATE(2206), - [sym_for_statement] = STATE(2206), - [sym_return_statement] = STATE(2206), - [sym_break_statement] = STATE(2206), - [sym_continue_statement] = STATE(2206), - [sym_goto_statement] = STATE(2206), - [sym_seh_try_statement] = STATE(2206), - [sym_seh_leave_statement] = STATE(2206), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [365] = { + [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___extension__] = ACTIONS(1378), + [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_signed] = ACTIONS(1378), + [anon_sym_unsigned] = ACTIONS(1378), + [anon_sym_long] = ACTIONS(1378), + [anon_sym_short] = ACTIONS(1378), + [anon_sym_static] = ACTIONS(1378), + [anon_sym_auto] = ACTIONS(1378), + [anon_sym_register] = ACTIONS(1378), + [anon_sym_inline] = ACTIONS(1378), + [anon_sym___inline] = ACTIONS(1378), + [anon_sym___inline__] = ACTIONS(1378), + [anon_sym___forceinline] = ACTIONS(1378), + [anon_sym_thread_local] = ACTIONS(1378), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1378), + [anon_sym___leave] = ACTIONS(1378), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_sizeof] = ACTIONS(1378), + [anon_sym___alignof__] = ACTIONS(1378), + [anon_sym___alignof] = ACTIONS(1378), + [anon_sym__alignof] = ACTIONS(1378), + [anon_sym_alignof] = ACTIONS(1378), + [anon_sym__Alignof] = 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), }, - [359] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(2198), - [sym_attributed_statement] = STATE(2198), - [sym_labeled_statement] = STATE(2198), - [sym_expression_statement] = STATE(2198), - [sym_if_statement] = STATE(2198), - [sym_switch_statement] = STATE(2198), - [sym_case_statement] = STATE(2198), - [sym_while_statement] = STATE(2198), - [sym_do_statement] = STATE(2198), - [sym_for_statement] = STATE(2198), - [sym_return_statement] = STATE(2198), - [sym_break_statement] = STATE(2198), - [sym_continue_statement] = STATE(2198), - [sym_goto_statement] = STATE(2198), - [sym_seh_try_statement] = STATE(2198), - [sym_seh_leave_statement] = STATE(2198), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [366] = { + [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___extension__] = ACTIONS(1394), + [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_signed] = ACTIONS(1394), + [anon_sym_unsigned] = ACTIONS(1394), + [anon_sym_long] = ACTIONS(1394), + [anon_sym_short] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1394), + [anon_sym_auto] = ACTIONS(1394), + [anon_sym_register] = ACTIONS(1394), + [anon_sym_inline] = ACTIONS(1394), + [anon_sym___inline] = ACTIONS(1394), + [anon_sym___inline__] = ACTIONS(1394), + [anon_sym___forceinline] = ACTIONS(1394), + [anon_sym_thread_local] = ACTIONS(1394), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1394), + [anon_sym___leave] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1396), + [anon_sym_sizeof] = ACTIONS(1394), + [anon_sym___alignof__] = ACTIONS(1394), + [anon_sym___alignof] = ACTIONS(1394), + [anon_sym__alignof] = ACTIONS(1394), + [anon_sym_alignof] = ACTIONS(1394), + [anon_sym__Alignof] = 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), }, - [360] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(2190), - [sym_attributed_statement] = STATE(2190), - [sym_labeled_statement] = STATE(2190), - [sym_expression_statement] = STATE(2190), - [sym_if_statement] = STATE(2190), - [sym_switch_statement] = STATE(2190), - [sym_case_statement] = STATE(2190), - [sym_while_statement] = STATE(2190), - [sym_do_statement] = STATE(2190), - [sym_for_statement] = STATE(2190), - [sym_return_statement] = STATE(2190), - [sym_break_statement] = STATE(2190), - [sym_continue_statement] = STATE(2190), - [sym_goto_statement] = STATE(2190), - [sym_seh_try_statement] = STATE(2190), - [sym_seh_leave_statement] = STATE(2190), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [367] = { + [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___extension__] = ACTIONS(1374), + [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_signed] = ACTIONS(1374), + [anon_sym_unsigned] = ACTIONS(1374), + [anon_sym_long] = ACTIONS(1374), + [anon_sym_short] = ACTIONS(1374), + [anon_sym_static] = ACTIONS(1374), + [anon_sym_auto] = ACTIONS(1374), + [anon_sym_register] = ACTIONS(1374), + [anon_sym_inline] = ACTIONS(1374), + [anon_sym___inline] = ACTIONS(1374), + [anon_sym___inline__] = ACTIONS(1374), + [anon_sym___forceinline] = ACTIONS(1374), + [anon_sym_thread_local] = ACTIONS(1374), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1374), + [anon_sym___leave] = ACTIONS(1374), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_sizeof] = ACTIONS(1374), + [anon_sym___alignof__] = ACTIONS(1374), + [anon_sym___alignof] = ACTIONS(1374), + [anon_sym__alignof] = ACTIONS(1374), + [anon_sym_alignof] = ACTIONS(1374), + [anon_sym__Alignof] = 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), }, - [361] = { - [sym_attribute_declaration] = STATE(436), - [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_seh_try_statement] = STATE(192), - [sym_seh_leave_statement] = STATE(192), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [368] = { + [ts_builtin_sym_end] = ACTIONS(1300), + [sym_identifier] = ACTIONS(1298), + [aux_sym_preproc_include_token1] = ACTIONS(1298), + [aux_sym_preproc_def_token1] = ACTIONS(1298), + [aux_sym_preproc_if_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1298), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1298), + [sym_preproc_directive] = ACTIONS(1298), + [anon_sym_LPAREN2] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_TILDE] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1298), + [anon_sym_PLUS] = ACTIONS(1298), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym___extension__] = ACTIONS(1298), + [anon_sym_typedef] = ACTIONS(1298), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym___attribute__] = ACTIONS(1298), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1300), + [anon_sym___declspec] = ACTIONS(1298), + [anon_sym___cdecl] = ACTIONS(1298), + [anon_sym___clrcall] = ACTIONS(1298), + [anon_sym___stdcall] = ACTIONS(1298), + [anon_sym___fastcall] = ACTIONS(1298), + [anon_sym___thiscall] = ACTIONS(1298), + [anon_sym___vectorcall] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_signed] = ACTIONS(1298), + [anon_sym_unsigned] = ACTIONS(1298), + [anon_sym_long] = ACTIONS(1298), + [anon_sym_short] = ACTIONS(1298), + [anon_sym_static] = ACTIONS(1298), + [anon_sym_auto] = ACTIONS(1298), + [anon_sym_register] = ACTIONS(1298), + [anon_sym_inline] = ACTIONS(1298), + [anon_sym___inline] = ACTIONS(1298), + [anon_sym___inline__] = ACTIONS(1298), + [anon_sym___forceinline] = ACTIONS(1298), + [anon_sym_thread_local] = ACTIONS(1298), + [anon_sym___thread] = ACTIONS(1298), + [anon_sym_const] = ACTIONS(1298), + [anon_sym_constexpr] = ACTIONS(1298), + [anon_sym_volatile] = ACTIONS(1298), + [anon_sym_restrict] = ACTIONS(1298), + [anon_sym___restrict__] = ACTIONS(1298), + [anon_sym__Atomic] = ACTIONS(1298), + [anon_sym__Noreturn] = ACTIONS(1298), + [anon_sym_noreturn] = ACTIONS(1298), + [sym_primitive_type] = ACTIONS(1298), + [anon_sym_enum] = ACTIONS(1298), + [anon_sym_struct] = ACTIONS(1298), + [anon_sym_union] = ACTIONS(1298), + [anon_sym_if] = ACTIONS(1298), + [anon_sym_else] = ACTIONS(1298), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1298), + [anon_sym_default] = ACTIONS(1298), + [anon_sym_while] = ACTIONS(1298), + [anon_sym_do] = ACTIONS(1298), + [anon_sym_for] = ACTIONS(1298), + [anon_sym_return] = ACTIONS(1298), + [anon_sym_break] = ACTIONS(1298), + [anon_sym_continue] = ACTIONS(1298), + [anon_sym_goto] = ACTIONS(1298), + [anon_sym___try] = ACTIONS(1298), + [anon_sym___leave] = ACTIONS(1298), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_sizeof] = ACTIONS(1298), + [anon_sym___alignof__] = ACTIONS(1298), + [anon_sym___alignof] = ACTIONS(1298), + [anon_sym__alignof] = ACTIONS(1298), + [anon_sym_alignof] = ACTIONS(1298), + [anon_sym__Alignof] = ACTIONS(1298), + [anon_sym_offsetof] = ACTIONS(1298), + [anon_sym__Generic] = ACTIONS(1298), + [anon_sym_asm] = ACTIONS(1298), + [anon_sym___asm__] = ACTIONS(1298), + [sym_number_literal] = ACTIONS(1300), + [anon_sym_L_SQUOTE] = ACTIONS(1300), + [anon_sym_u_SQUOTE] = ACTIONS(1300), + [anon_sym_U_SQUOTE] = ACTIONS(1300), + [anon_sym_u8_SQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_L_DQUOTE] = ACTIONS(1300), + [anon_sym_u_DQUOTE] = ACTIONS(1300), + [anon_sym_U_DQUOTE] = ACTIONS(1300), + [anon_sym_u8_DQUOTE] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [sym_true] = ACTIONS(1298), + [sym_false] = ACTIONS(1298), + [anon_sym_NULL] = ACTIONS(1298), + [anon_sym_nullptr] = ACTIONS(1298), [sym_comment] = ACTIONS(3), }, - [362] = { - [sym_attribute_declaration] = STATE(362), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1640), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1649), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_case] = ACTIONS(1655), - [anon_sym_default] = ACTIONS(1658), - [anon_sym_while] = ACTIONS(1661), - [anon_sym_do] = ACTIONS(1664), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1670), - [anon_sym_break] = ACTIONS(1673), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_goto] = ACTIONS(1679), - [anon_sym___try] = ACTIONS(1682), - [anon_sym___leave] = ACTIONS(1685), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_sizeof] = ACTIONS(1600), - [anon_sym___alignof__] = ACTIONS(1603), - [anon_sym___alignof] = ACTIONS(1603), - [anon_sym__alignof] = ACTIONS(1603), - [anon_sym_alignof] = ACTIONS(1603), - [anon_sym__Alignof] = ACTIONS(1603), - [anon_sym_offsetof] = ACTIONS(1606), - [anon_sym__Generic] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym___asm__] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1615), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym_u_SQUOTE] = ACTIONS(1618), - [anon_sym_U_SQUOTE] = ACTIONS(1618), - [anon_sym_u8_SQUOTE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1624), - [sym_false] = ACTIONS(1624), - [anon_sym_NULL] = ACTIONS(1627), - [anon_sym_nullptr] = ACTIONS(1627), + [369] = { + [ts_builtin_sym_end] = ACTIONS(1316), + [sym_identifier] = ACTIONS(1314), + [aux_sym_preproc_include_token1] = ACTIONS(1314), + [aux_sym_preproc_def_token1] = ACTIONS(1314), + [aux_sym_preproc_if_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1314), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1314), + [sym_preproc_directive] = ACTIONS(1314), + [anon_sym_LPAREN2] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1316), + [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym___extension__] = ACTIONS(1314), + [anon_sym_typedef] = ACTIONS(1314), + [anon_sym_extern] = ACTIONS(1314), + [anon_sym___attribute__] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1316), + [anon_sym___declspec] = ACTIONS(1314), + [anon_sym___cdecl] = ACTIONS(1314), + [anon_sym___clrcall] = ACTIONS(1314), + [anon_sym___stdcall] = ACTIONS(1314), + [anon_sym___fastcall] = ACTIONS(1314), + [anon_sym___thiscall] = ACTIONS(1314), + [anon_sym___vectorcall] = ACTIONS(1314), + [anon_sym_LBRACE] = ACTIONS(1316), + [anon_sym_signed] = ACTIONS(1314), + [anon_sym_unsigned] = ACTIONS(1314), + [anon_sym_long] = ACTIONS(1314), + [anon_sym_short] = ACTIONS(1314), + [anon_sym_static] = ACTIONS(1314), + [anon_sym_auto] = ACTIONS(1314), + [anon_sym_register] = ACTIONS(1314), + [anon_sym_inline] = ACTIONS(1314), + [anon_sym___inline] = ACTIONS(1314), + [anon_sym___inline__] = ACTIONS(1314), + [anon_sym___forceinline] = ACTIONS(1314), + [anon_sym_thread_local] = ACTIONS(1314), + [anon_sym___thread] = ACTIONS(1314), + [anon_sym_const] = ACTIONS(1314), + [anon_sym_constexpr] = ACTIONS(1314), + [anon_sym_volatile] = ACTIONS(1314), + [anon_sym_restrict] = ACTIONS(1314), + [anon_sym___restrict__] = ACTIONS(1314), + [anon_sym__Atomic] = ACTIONS(1314), + [anon_sym__Noreturn] = ACTIONS(1314), + [anon_sym_noreturn] = ACTIONS(1314), + [sym_primitive_type] = ACTIONS(1314), + [anon_sym_enum] = ACTIONS(1314), + [anon_sym_struct] = ACTIONS(1314), + [anon_sym_union] = ACTIONS(1314), + [anon_sym_if] = ACTIONS(1314), + [anon_sym_else] = ACTIONS(1314), + [anon_sym_switch] = ACTIONS(1314), + [anon_sym_case] = ACTIONS(1314), + [anon_sym_default] = ACTIONS(1314), + [anon_sym_while] = ACTIONS(1314), + [anon_sym_do] = ACTIONS(1314), + [anon_sym_for] = ACTIONS(1314), + [anon_sym_return] = ACTIONS(1314), + [anon_sym_break] = ACTIONS(1314), + [anon_sym_continue] = ACTIONS(1314), + [anon_sym_goto] = ACTIONS(1314), + [anon_sym___try] = ACTIONS(1314), + [anon_sym___leave] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_sizeof] = ACTIONS(1314), + [anon_sym___alignof__] = ACTIONS(1314), + [anon_sym___alignof] = ACTIONS(1314), + [anon_sym__alignof] = ACTIONS(1314), + [anon_sym_alignof] = ACTIONS(1314), + [anon_sym__Alignof] = ACTIONS(1314), + [anon_sym_offsetof] = ACTIONS(1314), + [anon_sym__Generic] = ACTIONS(1314), + [anon_sym_asm] = ACTIONS(1314), + [anon_sym___asm__] = ACTIONS(1314), + [sym_number_literal] = ACTIONS(1316), + [anon_sym_L_SQUOTE] = ACTIONS(1316), + [anon_sym_u_SQUOTE] = ACTIONS(1316), + [anon_sym_U_SQUOTE] = ACTIONS(1316), + [anon_sym_u8_SQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_L_DQUOTE] = ACTIONS(1316), + [anon_sym_u_DQUOTE] = ACTIONS(1316), + [anon_sym_U_DQUOTE] = ACTIONS(1316), + [anon_sym_u8_DQUOTE] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(1316), + [sym_true] = ACTIONS(1314), + [sym_false] = ACTIONS(1314), + [anon_sym_NULL] = ACTIONS(1314), + [anon_sym_nullptr] = ACTIONS(1314), [sym_comment] = ACTIONS(3), }, - [363] = { - [sym_attribute_declaration] = STATE(384), - [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_seh_try_statement] = STATE(204), - [sym_seh_leave_statement] = STATE(204), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [sym_identifier] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [370] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), + [sym_comment] = ACTIONS(3), + }, + [371] = { + [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_SEMI] = ACTIONS(1392), + [anon_sym___extension__] = ACTIONS(1390), + [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_signed] = ACTIONS(1390), + [anon_sym_unsigned] = ACTIONS(1390), + [anon_sym_long] = ACTIONS(1390), + [anon_sym_short] = ACTIONS(1390), + [anon_sym_static] = ACTIONS(1390), + [anon_sym_auto] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_inline] = ACTIONS(1390), + [anon_sym___inline] = ACTIONS(1390), + [anon_sym___inline__] = ACTIONS(1390), + [anon_sym___forceinline] = ACTIONS(1390), + [anon_sym_thread_local] = ACTIONS(1390), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1390), + [anon_sym___leave] = ACTIONS(1390), + [anon_sym_DASH_DASH] = ACTIONS(1392), + [anon_sym_PLUS_PLUS] = ACTIONS(1392), + [anon_sym_sizeof] = ACTIONS(1390), + [anon_sym___alignof__] = ACTIONS(1390), + [anon_sym___alignof] = ACTIONS(1390), + [anon_sym__alignof] = ACTIONS(1390), + [anon_sym_alignof] = ACTIONS(1390), + [anon_sym__Alignof] = 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), }, - [364] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(2175), - [sym_attributed_statement] = STATE(2175), - [sym_labeled_statement] = STATE(2175), - [sym_expression_statement] = STATE(2175), - [sym_if_statement] = STATE(2175), - [sym_switch_statement] = STATE(2175), - [sym_case_statement] = STATE(2175), - [sym_while_statement] = STATE(2175), - [sym_do_statement] = STATE(2175), - [sym_for_statement] = STATE(2175), - [sym_return_statement] = STATE(2175), - [sym_break_statement] = STATE(2175), - [sym_continue_statement] = STATE(2175), - [sym_goto_statement] = STATE(2175), - [sym_seh_try_statement] = STATE(2175), - [sym_seh_leave_statement] = STATE(2175), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [372] = { + [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___extension__] = ACTIONS(1386), + [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_signed] = ACTIONS(1386), + [anon_sym_unsigned] = ACTIONS(1386), + [anon_sym_long] = ACTIONS(1386), + [anon_sym_short] = ACTIONS(1386), + [anon_sym_static] = ACTIONS(1386), + [anon_sym_auto] = ACTIONS(1386), + [anon_sym_register] = ACTIONS(1386), + [anon_sym_inline] = ACTIONS(1386), + [anon_sym___inline] = ACTIONS(1386), + [anon_sym___inline__] = ACTIONS(1386), + [anon_sym___forceinline] = ACTIONS(1386), + [anon_sym_thread_local] = ACTIONS(1386), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1386), + [anon_sym___leave] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_sizeof] = ACTIONS(1386), + [anon_sym___alignof__] = ACTIONS(1386), + [anon_sym___alignof] = ACTIONS(1386), + [anon_sym__alignof] = ACTIONS(1386), + [anon_sym_alignof] = ACTIONS(1386), + [anon_sym__Alignof] = 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), }, - [365] = { - [sym_attribute_declaration] = STATE(384), - [sym_compound_statement] = STATE(335), - [sym_attributed_statement] = STATE(335), - [sym_labeled_statement] = STATE(335), - [sym_expression_statement] = STATE(335), - [sym_if_statement] = STATE(335), - [sym_switch_statement] = STATE(335), - [sym_case_statement] = STATE(335), - [sym_while_statement] = STATE(335), - [sym_do_statement] = STATE(335), - [sym_for_statement] = STATE(335), - [sym_return_statement] = STATE(335), - [sym_break_statement] = STATE(335), - [sym_continue_statement] = STATE(335), - [sym_goto_statement] = STATE(335), - [sym_seh_try_statement] = STATE(335), - [sym_seh_leave_statement] = STATE(335), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [sym_identifier] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [373] = { + [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_SEMI] = ACTIONS(1384), + [anon_sym___extension__] = ACTIONS(1382), + [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_signed] = ACTIONS(1382), + [anon_sym_unsigned] = ACTIONS(1382), + [anon_sym_long] = ACTIONS(1382), + [anon_sym_short] = ACTIONS(1382), + [anon_sym_static] = ACTIONS(1382), + [anon_sym_auto] = ACTIONS(1382), + [anon_sym_register] = ACTIONS(1382), + [anon_sym_inline] = ACTIONS(1382), + [anon_sym___inline] = ACTIONS(1382), + [anon_sym___inline__] = ACTIONS(1382), + [anon_sym___forceinline] = ACTIONS(1382), + [anon_sym_thread_local] = ACTIONS(1382), + [anon_sym___thread] = 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), + [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_else] = 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___try] = ACTIONS(1382), + [anon_sym___leave] = ACTIONS(1382), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_sizeof] = ACTIONS(1382), + [anon_sym___alignof__] = ACTIONS(1382), + [anon_sym___alignof] = ACTIONS(1382), + [anon_sym__alignof] = ACTIONS(1382), + [anon_sym_alignof] = ACTIONS(1382), + [anon_sym__Alignof] = 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), }, - [366] = { - [sym_attribute_declaration] = STATE(436), - [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_seh_try_statement] = STATE(177), - [sym_seh_leave_statement] = STATE(177), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [374] = { + [ts_builtin_sym_end] = ACTIONS(1400), + [sym_identifier] = ACTIONS(1398), + [aux_sym_preproc_include_token1] = ACTIONS(1398), + [aux_sym_preproc_def_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1398), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1398), + [sym_preproc_directive] = ACTIONS(1398), + [anon_sym_LPAREN2] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_TILDE] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1400), + [anon_sym___extension__] = ACTIONS(1398), + [anon_sym_typedef] = ACTIONS(1398), + [anon_sym_extern] = ACTIONS(1398), + [anon_sym___attribute__] = ACTIONS(1398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1400), + [anon_sym___declspec] = ACTIONS(1398), + [anon_sym___cdecl] = ACTIONS(1398), + [anon_sym___clrcall] = ACTIONS(1398), + [anon_sym___stdcall] = ACTIONS(1398), + [anon_sym___fastcall] = ACTIONS(1398), + [anon_sym___thiscall] = ACTIONS(1398), + [anon_sym___vectorcall] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1400), + [anon_sym_signed] = ACTIONS(1398), + [anon_sym_unsigned] = ACTIONS(1398), + [anon_sym_long] = ACTIONS(1398), + [anon_sym_short] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1398), + [anon_sym_auto] = ACTIONS(1398), + [anon_sym_register] = ACTIONS(1398), + [anon_sym_inline] = ACTIONS(1398), + [anon_sym___inline] = ACTIONS(1398), + [anon_sym___inline__] = ACTIONS(1398), + [anon_sym___forceinline] = ACTIONS(1398), + [anon_sym_thread_local] = ACTIONS(1398), + [anon_sym___thread] = ACTIONS(1398), + [anon_sym_const] = ACTIONS(1398), + [anon_sym_constexpr] = ACTIONS(1398), + [anon_sym_volatile] = ACTIONS(1398), + [anon_sym_restrict] = ACTIONS(1398), + [anon_sym___restrict__] = ACTIONS(1398), + [anon_sym__Atomic] = ACTIONS(1398), + [anon_sym__Noreturn] = ACTIONS(1398), + [anon_sym_noreturn] = ACTIONS(1398), + [sym_primitive_type] = ACTIONS(1398), + [anon_sym_enum] = ACTIONS(1398), + [anon_sym_struct] = ACTIONS(1398), + [anon_sym_union] = ACTIONS(1398), + [anon_sym_if] = ACTIONS(1398), + [anon_sym_else] = 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___try] = ACTIONS(1398), + [anon_sym___leave] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1400), + [anon_sym_PLUS_PLUS] = ACTIONS(1400), + [anon_sym_sizeof] = ACTIONS(1398), + [anon_sym___alignof__] = ACTIONS(1398), + [anon_sym___alignof] = ACTIONS(1398), + [anon_sym__alignof] = ACTIONS(1398), + [anon_sym_alignof] = ACTIONS(1398), + [anon_sym__Alignof] = 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), + }, + [375] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [367] = { - [sym_attribute_declaration] = STATE(436), - [sym_compound_statement] = STATE(199), - [sym_attributed_statement] = STATE(199), - [sym_labeled_statement] = STATE(199), - [sym_expression_statement] = STATE(199), - [sym_if_statement] = STATE(199), - [sym_switch_statement] = STATE(199), - [sym_case_statement] = STATE(199), - [sym_while_statement] = STATE(199), - [sym_do_statement] = STATE(199), - [sym_for_statement] = STATE(199), - [sym_return_statement] = STATE(199), - [sym_break_statement] = STATE(199), - [sym_continue_statement] = STATE(199), - [sym_goto_statement] = STATE(199), - [sym_seh_try_statement] = STATE(199), - [sym_seh_leave_statement] = STATE(199), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1638), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [376] = { + [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(1350), + [anon_sym_BANG] = ACTIONS(1350), + [anon_sym_TILDE] = ACTIONS(1350), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1350), + [anon_sym_AMP] = ACTIONS(1350), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym___extension__] = ACTIONS(1352), + [anon_sym_typedef] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym___attribute__] = ACTIONS(1352), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1350), + [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(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_signed] = ACTIONS(1352), + [anon_sym_unsigned] = ACTIONS(1352), + [anon_sym_long] = ACTIONS(1352), + [anon_sym_short] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_auto] = ACTIONS(1352), + [anon_sym_register] = ACTIONS(1352), + [anon_sym_inline] = ACTIONS(1352), + [anon_sym___inline] = ACTIONS(1352), + [anon_sym___inline__] = ACTIONS(1352), + [anon_sym___forceinline] = ACTIONS(1352), + [anon_sym_thread_local] = ACTIONS(1352), + [anon_sym___thread] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_constexpr] = ACTIONS(1352), + [anon_sym_volatile] = ACTIONS(1352), + [anon_sym_restrict] = ACTIONS(1352), + [anon_sym___restrict__] = ACTIONS(1352), + [anon_sym__Atomic] = ACTIONS(1352), + [anon_sym__Noreturn] = ACTIONS(1352), + [anon_sym_noreturn] = ACTIONS(1352), + [sym_primitive_type] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_else] = ACTIONS(1352), + [anon_sym_switch] = ACTIONS(1352), + [anon_sym_case] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_do] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_goto] = ACTIONS(1352), + [anon_sym___try] = ACTIONS(1352), + [anon_sym___leave] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1350), + [anon_sym_PLUS_PLUS] = ACTIONS(1350), + [anon_sym_sizeof] = ACTIONS(1352), + [anon_sym___alignof__] = ACTIONS(1352), + [anon_sym___alignof] = ACTIONS(1352), + [anon_sym__alignof] = ACTIONS(1352), + [anon_sym_alignof] = ACTIONS(1352), + [anon_sym__Alignof] = ACTIONS(1352), + [anon_sym_offsetof] = ACTIONS(1352), + [anon_sym__Generic] = ACTIONS(1352), + [anon_sym_asm] = ACTIONS(1352), + [anon_sym___asm__] = ACTIONS(1352), + [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(1352), + [sym_false] = ACTIONS(1352), + [anon_sym_NULL] = ACTIONS(1352), + [anon_sym_nullptr] = ACTIONS(1352), [sym_comment] = ACTIONS(3), }, - [368] = { - [sym_attribute_declaration] = STATE(384), - [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_seh_try_statement] = STATE(311), - [sym_seh_leave_statement] = STATE(311), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [sym_identifier] = ACTIONS(1688), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [377] = { + [ts_builtin_sym_end] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1306), + [aux_sym_preproc_include_token1] = ACTIONS(1306), + [aux_sym_preproc_def_token1] = ACTIONS(1306), + [aux_sym_preproc_if_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1306), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1306), + [sym_preproc_directive] = ACTIONS(1306), + [anon_sym_LPAREN2] = ACTIONS(1308), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_DASH] = ACTIONS(1306), + [anon_sym_PLUS] = ACTIONS(1306), + [anon_sym_STAR] = ACTIONS(1308), + [anon_sym_AMP] = ACTIONS(1308), + [anon_sym_SEMI] = ACTIONS(1308), + [anon_sym___extension__] = ACTIONS(1306), + [anon_sym_typedef] = ACTIONS(1306), + [anon_sym_extern] = ACTIONS(1306), + [anon_sym___attribute__] = ACTIONS(1306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1308), + [anon_sym___declspec] = ACTIONS(1306), + [anon_sym___cdecl] = ACTIONS(1306), + [anon_sym___clrcall] = ACTIONS(1306), + [anon_sym___stdcall] = ACTIONS(1306), + [anon_sym___fastcall] = ACTIONS(1306), + [anon_sym___thiscall] = ACTIONS(1306), + [anon_sym___vectorcall] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1308), + [anon_sym_signed] = ACTIONS(1306), + [anon_sym_unsigned] = ACTIONS(1306), + [anon_sym_long] = ACTIONS(1306), + [anon_sym_short] = ACTIONS(1306), + [anon_sym_static] = ACTIONS(1306), + [anon_sym_auto] = ACTIONS(1306), + [anon_sym_register] = ACTIONS(1306), + [anon_sym_inline] = ACTIONS(1306), + [anon_sym___inline] = ACTIONS(1306), + [anon_sym___inline__] = ACTIONS(1306), + [anon_sym___forceinline] = ACTIONS(1306), + [anon_sym_thread_local] = ACTIONS(1306), + [anon_sym___thread] = ACTIONS(1306), + [anon_sym_const] = ACTIONS(1306), + [anon_sym_constexpr] = ACTIONS(1306), + [anon_sym_volatile] = ACTIONS(1306), + [anon_sym_restrict] = ACTIONS(1306), + [anon_sym___restrict__] = ACTIONS(1306), + [anon_sym__Atomic] = ACTIONS(1306), + [anon_sym__Noreturn] = ACTIONS(1306), + [anon_sym_noreturn] = ACTIONS(1306), + [sym_primitive_type] = ACTIONS(1306), + [anon_sym_enum] = ACTIONS(1306), + [anon_sym_struct] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1306), + [anon_sym_if] = ACTIONS(1306), + [anon_sym_else] = ACTIONS(1306), + [anon_sym_switch] = ACTIONS(1306), + [anon_sym_case] = ACTIONS(1306), + [anon_sym_default] = ACTIONS(1306), + [anon_sym_while] = ACTIONS(1306), + [anon_sym_do] = ACTIONS(1306), + [anon_sym_for] = ACTIONS(1306), + [anon_sym_return] = ACTIONS(1306), + [anon_sym_break] = ACTIONS(1306), + [anon_sym_continue] = ACTIONS(1306), + [anon_sym_goto] = ACTIONS(1306), + [anon_sym___try] = ACTIONS(1306), + [anon_sym___leave] = ACTIONS(1306), + [anon_sym_DASH_DASH] = ACTIONS(1308), + [anon_sym_PLUS_PLUS] = ACTIONS(1308), + [anon_sym_sizeof] = ACTIONS(1306), + [anon_sym___alignof__] = ACTIONS(1306), + [anon_sym___alignof] = ACTIONS(1306), + [anon_sym__alignof] = ACTIONS(1306), + [anon_sym_alignof] = ACTIONS(1306), + [anon_sym__Alignof] = ACTIONS(1306), + [anon_sym_offsetof] = ACTIONS(1306), + [anon_sym__Generic] = ACTIONS(1306), + [anon_sym_asm] = ACTIONS(1306), + [anon_sym___asm__] = ACTIONS(1306), + [sym_number_literal] = ACTIONS(1308), + [anon_sym_L_SQUOTE] = ACTIONS(1308), + [anon_sym_u_SQUOTE] = ACTIONS(1308), + [anon_sym_U_SQUOTE] = ACTIONS(1308), + [anon_sym_u8_SQUOTE] = ACTIONS(1308), + [anon_sym_SQUOTE] = ACTIONS(1308), + [anon_sym_L_DQUOTE] = ACTIONS(1308), + [anon_sym_u_DQUOTE] = ACTIONS(1308), + [anon_sym_U_DQUOTE] = ACTIONS(1308), + [anon_sym_u8_DQUOTE] = ACTIONS(1308), + [anon_sym_DQUOTE] = ACTIONS(1308), + [sym_true] = ACTIONS(1306), + [sym_false] = ACTIONS(1306), + [anon_sym_NULL] = ACTIONS(1306), + [anon_sym_nullptr] = ACTIONS(1306), [sym_comment] = ACTIONS(3), }, - [369] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [378] = { + [sym_identifier] = ACTIONS(1322), + [aux_sym_preproc_include_token1] = ACTIONS(1322), + [aux_sym_preproc_def_token1] = ACTIONS(1322), + [aux_sym_preproc_if_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1322), + [sym_preproc_directive] = ACTIONS(1322), + [anon_sym_LPAREN2] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_TILDE] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_SEMI] = ACTIONS(1324), + [anon_sym___extension__] = ACTIONS(1322), + [anon_sym_typedef] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym___attribute__] = ACTIONS(1322), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1324), + [anon_sym___declspec] = ACTIONS(1322), + [anon_sym___cdecl] = ACTIONS(1322), + [anon_sym___clrcall] = ACTIONS(1322), + [anon_sym___stdcall] = ACTIONS(1322), + [anon_sym___fastcall] = ACTIONS(1322), + [anon_sym___thiscall] = ACTIONS(1322), + [anon_sym___vectorcall] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1324), + [anon_sym_signed] = ACTIONS(1322), + [anon_sym_unsigned] = ACTIONS(1322), + [anon_sym_long] = ACTIONS(1322), + [anon_sym_short] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_auto] = ACTIONS(1322), + [anon_sym_register] = ACTIONS(1322), + [anon_sym_inline] = ACTIONS(1322), + [anon_sym___inline] = ACTIONS(1322), + [anon_sym___inline__] = ACTIONS(1322), + [anon_sym___forceinline] = ACTIONS(1322), + [anon_sym_thread_local] = ACTIONS(1322), + [anon_sym___thread] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_constexpr] = ACTIONS(1322), + [anon_sym_volatile] = ACTIONS(1322), + [anon_sym_restrict] = ACTIONS(1322), + [anon_sym___restrict__] = ACTIONS(1322), + [anon_sym__Atomic] = ACTIONS(1322), + [anon_sym__Noreturn] = ACTIONS(1322), + [anon_sym_noreturn] = ACTIONS(1322), + [sym_primitive_type] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_else] = ACTIONS(1322), + [anon_sym_switch] = ACTIONS(1322), + [anon_sym_case] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_do] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1322), + [anon_sym___try] = ACTIONS(1322), + [anon_sym___leave] = ACTIONS(1322), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_sizeof] = ACTIONS(1322), + [anon_sym___alignof__] = ACTIONS(1322), + [anon_sym___alignof] = ACTIONS(1322), + [anon_sym__alignof] = ACTIONS(1322), + [anon_sym_alignof] = ACTIONS(1322), + [anon_sym__Alignof] = ACTIONS(1322), + [anon_sym_offsetof] = ACTIONS(1322), + [anon_sym__Generic] = ACTIONS(1322), + [anon_sym_asm] = ACTIONS(1322), + [anon_sym___asm__] = ACTIONS(1322), + [sym_number_literal] = ACTIONS(1324), + [anon_sym_L_SQUOTE] = ACTIONS(1324), + [anon_sym_u_SQUOTE] = ACTIONS(1324), + [anon_sym_U_SQUOTE] = ACTIONS(1324), + [anon_sym_u8_SQUOTE] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), + [anon_sym_L_DQUOTE] = ACTIONS(1324), + [anon_sym_u_DQUOTE] = ACTIONS(1324), + [anon_sym_U_DQUOTE] = ACTIONS(1324), + [anon_sym_u8_DQUOTE] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1324), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [anon_sym_NULL] = ACTIONS(1322), + [anon_sym_nullptr] = ACTIONS(1322), [sym_comment] = ACTIONS(3), }, - [370] = { - [sym_attribute_declaration] = STATE(436), - [sym_compound_statement] = STATE(139), - [sym_attributed_statement] = STATE(139), - [sym_labeled_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [sym_if_statement] = STATE(139), - [sym_switch_statement] = STATE(139), - [sym_case_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym_seh_try_statement] = STATE(139), - [sym_seh_leave_statement] = STATE(139), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1638), + [379] = { + [sym_attribute_declaration] = STATE(391), + [sym_compound_statement] = STATE(172), + [sym_attributed_statement] = STATE(172), + [sym_labeled_statement] = STATE(172), + [sym_expression_statement] = STATE(172), + [sym_if_statement] = STATE(172), + [sym_switch_statement] = STATE(172), + [sym_case_statement] = STATE(172), + [sym_while_statement] = STATE(172), + [sym_do_statement] = STATE(172), + [sym_for_statement] = STATE(172), + [sym_return_statement] = STATE(172), + [sym_break_statement] = STATE(172), + [sym_continue_statement] = STATE(172), + [sym_goto_statement] = STATE(172), + [sym_seh_try_statement] = STATE(172), + [sym_seh_leave_statement] = STATE(172), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(1546), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -57770,409 +58873,21 @@ 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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [371] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1696), - [anon_sym_if] = ACTIONS(1699), - [anon_sym_switch] = ACTIONS(1702), - [anon_sym_case] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1714), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1723), - [anon_sym_continue] = ACTIONS(1726), - [anon_sym_goto] = ACTIONS(1729), - [anon_sym___try] = ACTIONS(1732), - [anon_sym___leave] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_sizeof] = ACTIONS(1600), - [anon_sym___alignof__] = ACTIONS(1603), - [anon_sym___alignof] = ACTIONS(1603), - [anon_sym__alignof] = ACTIONS(1603), - [anon_sym_alignof] = ACTIONS(1603), - [anon_sym__Alignof] = ACTIONS(1603), - [anon_sym_offsetof] = ACTIONS(1606), - [anon_sym__Generic] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym___asm__] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1615), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym_u_SQUOTE] = ACTIONS(1618), - [anon_sym_U_SQUOTE] = ACTIONS(1618), - [anon_sym_u8_SQUOTE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1624), - [sym_false] = ACTIONS(1624), - [anon_sym_NULL] = ACTIONS(1627), - [anon_sym_nullptr] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - }, - [372] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - }, - [373] = { - [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___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = 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), - }, - [374] = { - [sym_attribute_declaration] = STATE(417), - [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_seh_try_statement] = STATE(105), - [sym_seh_leave_statement] = STATE(105), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -58202,148 +58917,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [375] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), + [380] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [376] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(341), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(341), - [sym_expression_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_switch_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_do_statement] = STATE(341), - [sym_for_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_break_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_goto_statement] = STATE(341), - [sym_seh_try_statement] = STATE(341), - [sym_seh_leave_statement] = STATE(341), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1630), + [381] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(2272), + [sym_attributed_statement] = STATE(2272), + [sym_labeled_statement] = STATE(2272), + [sym_expression_statement] = STATE(2272), + [sym_if_statement] = STATE(2272), + [sym_switch_statement] = STATE(2272), + [sym_case_statement] = STATE(2272), + [sym_while_statement] = STATE(2272), + [sym_do_statement] = STATE(2272), + [sym_for_statement] = STATE(2272), + [sym_return_statement] = STATE(2272), + [sym_break_statement] = STATE(2272), + [sym_continue_statement] = STATE(2272), + [sym_goto_statement] = STATE(2272), + [sym_seh_try_statement] = STATE(2272), + [sym_seh_leave_statement] = STATE(2272), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58352,20 +59067,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym___try] = ACTIONS(1269), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -58396,148 +59111,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [377] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), + [382] = { + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, - [378] = { - [sym_attribute_declaration] = STATE(417), - [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_seh_try_statement] = STATE(114), - [sym_seh_leave_statement] = STATE(114), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1738), + [383] = { + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_RBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [384] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(125), + [sym_attributed_statement] = STATE(125), + [sym_labeled_statement] = STATE(125), + [sym_expression_statement] = STATE(125), + [sym_if_statement] = STATE(125), + [sym_switch_statement] = STATE(125), + [sym_case_statement] = STATE(125), + [sym_while_statement] = STATE(125), + [sym_do_statement] = STATE(125), + [sym_for_statement] = STATE(125), + [sym_return_statement] = STATE(125), + [sym_break_statement] = STATE(125), + [sym_continue_statement] = STATE(125), + [sym_goto_statement] = STATE(125), + [sym_seh_try_statement] = STATE(125), + [sym_seh_leave_statement] = STATE(125), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1556), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58546,7 +59358,7 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_if] = ACTIONS(131), [anon_sym_switch] = ACTIONS(133), @@ -58590,202 +59402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [379] = { - [sym__expression] = STATE(911), - [sym__expression_not_binary] = STATE(928), - [sym__string] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(928), - [sym_unary_expression] = STATE(928), - [sym_binary_expression] = STATE(928), - [sym_update_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_alignof_expression] = STATE(928), - [sym_offsetof_expression] = STATE(928), - [sym_generic_expression] = STATE(928), - [sym_subscript_expression] = STATE(928), - [sym_call_expression] = STATE(928), - [sym_gnu_asm_expression] = STATE(928), - [sym_field_expression] = STATE(928), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(928), - [sym_initializer_list] = STATE(956), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(852), - [sym_null] = STATE(928), - [sym_identifier] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_else_token1] = ACTIONS(1512), - [aux_sym_preproc_elif_token1] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1746), - [anon_sym___alignof__] = ACTIONS(1748), - [anon_sym___alignof] = ACTIONS(1748), - [anon_sym__alignof] = ACTIONS(1748), - [anon_sym_alignof] = ACTIONS(1748), - [anon_sym__Alignof] = ACTIONS(1748), - [anon_sym_offsetof] = ACTIONS(1750), - [anon_sym__Generic] = ACTIONS(1752), - [anon_sym_asm] = ACTIONS(1754), - [anon_sym___asm__] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1756), - [anon_sym_L_SQUOTE] = ACTIONS(1758), - [anon_sym_u_SQUOTE] = ACTIONS(1758), - [anon_sym_U_SQUOTE] = ACTIONS(1758), - [anon_sym_u8_SQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_L_DQUOTE] = ACTIONS(1760), - [anon_sym_u_DQUOTE] = ACTIONS(1760), - [anon_sym_U_DQUOTE] = ACTIONS(1760), - [anon_sym_u8_DQUOTE] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1760), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), - [anon_sym_NULL] = ACTIONS(1764), - [anon_sym_nullptr] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - }, - [380] = { - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token2] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym___try] = ACTIONS(1488), - [anon_sym___leave] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - }, - [381] = { - [sym_attribute_declaration] = STATE(417), + [385] = { + [sym_attribute_declaration] = STATE(448), [sym_compound_statement] = STATE(90), [sym_attributed_statement] = STATE(90), [sym_labeled_statement] = STATE(90), @@ -58802,33 +59420,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(90), [sym_seh_try_statement] = STATE(90), [sym_seh_leave_statement] = STATE(90), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1738), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1556), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58837,7 +59455,7 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(129), [anon_sym_if] = ACTIONS(131), [anon_sym_switch] = ACTIONS(133), @@ -58881,245 +59499,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [382] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [386] = { + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(3), }, - [383] = { - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token2] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_SEMI] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym___try] = ACTIONS(1440), - [anon_sym___leave] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), + [387] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_RBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [384] = { - [sym_attribute_declaration] = STATE(371), - [sym_compound_statement] = STATE(349), - [sym_attributed_statement] = STATE(349), - [sym_labeled_statement] = STATE(349), - [sym_expression_statement] = STATE(349), - [sym_if_statement] = STATE(349), - [sym_switch_statement] = STATE(349), - [sym_case_statement] = STATE(349), - [sym_while_statement] = STATE(349), - [sym_do_statement] = STATE(349), - [sym_for_statement] = STATE(349), - [sym_return_statement] = STATE(349), - [sym_break_statement] = STATE(349), - [sym_continue_statement] = STATE(349), - [sym_goto_statement] = STATE(349), - [sym_seh_try_statement] = STATE(349), - [sym_seh_leave_statement] = STATE(349), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), + [388] = { + [sym_attribute_declaration] = STATE(426), + [sym_compound_statement] = STATE(229), + [sym_attributed_statement] = STATE(229), + [sym_labeled_statement] = STATE(229), + [sym_expression_statement] = STATE(229), + [sym_if_statement] = STATE(229), + [sym_switch_statement] = STATE(229), + [sym_case_statement] = STATE(229), + [sym_while_statement] = STATE(229), + [sym_do_statement] = STATE(229), + [sym_for_statement] = STATE(229), + [sym_return_statement] = STATE(229), + [sym_break_statement] = STATE(229), + [sym_continue_statement] = STATE(229), + [sym_goto_statement] = STATE(229), + [sym_seh_try_statement] = STATE(229), + [sym_seh_leave_statement] = STATE(229), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1688), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59127,22 +59745,22 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(499), - [anon_sym_if] = ACTIONS(503), - [anon_sym_switch] = ACTIONS(505), - [anon_sym_case] = ACTIONS(507), - [anon_sym_default] = ACTIONS(509), - [anon_sym_while] = ACTIONS(511), - [anon_sym_do] = ACTIONS(513), - [anon_sym_for] = ACTIONS(515), - [anon_sym_return] = ACTIONS(517), - [anon_sym_break] = ACTIONS(519), - [anon_sym_continue] = ACTIONS(521), - [anon_sym_goto] = ACTIONS(523), - [anon_sym___try] = ACTIONS(525), - [anon_sym___leave] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -59172,298 +59790,589 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [385] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [386] = { - [sym_identifier] = ACTIONS(1504), - [aux_sym_preproc_include_token1] = ACTIONS(1504), - [aux_sym_preproc_def_token1] = ACTIONS(1504), - [aux_sym_preproc_if_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), - [sym_preproc_directive] = ACTIONS(1504), - [anon_sym_LPAREN2] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1506), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym___extension__] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym___attribute__] = ACTIONS(1504), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), - [anon_sym___declspec] = ACTIONS(1504), - [anon_sym___cdecl] = ACTIONS(1504), - [anon_sym___clrcall] = ACTIONS(1504), - [anon_sym___stdcall] = ACTIONS(1504), - [anon_sym___fastcall] = ACTIONS(1504), - [anon_sym___thiscall] = ACTIONS(1504), - [anon_sym___vectorcall] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_signed] = ACTIONS(1504), - [anon_sym_unsigned] = ACTIONS(1504), - [anon_sym_long] = ACTIONS(1504), - [anon_sym_short] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_auto] = ACTIONS(1504), - [anon_sym_register] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym___inline] = ACTIONS(1504), - [anon_sym___inline__] = ACTIONS(1504), - [anon_sym___forceinline] = ACTIONS(1504), - [anon_sym_thread_local] = ACTIONS(1504), - [anon_sym___thread] = ACTIONS(1504), - [anon_sym_const] = ACTIONS(1504), - [anon_sym_constexpr] = ACTIONS(1504), - [anon_sym_volatile] = ACTIONS(1504), - [anon_sym_restrict] = ACTIONS(1504), - [anon_sym___restrict__] = ACTIONS(1504), - [anon_sym__Atomic] = ACTIONS(1504), - [anon_sym__Noreturn] = ACTIONS(1504), - [anon_sym_noreturn] = ACTIONS(1504), - [sym_primitive_type] = ACTIONS(1504), - [anon_sym_enum] = ACTIONS(1504), - [anon_sym_struct] = ACTIONS(1504), - [anon_sym_union] = ACTIONS(1504), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_while] = ACTIONS(1504), - [anon_sym_do] = ACTIONS(1504), - [anon_sym_for] = ACTIONS(1504), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_goto] = ACTIONS(1504), - [anon_sym___try] = ACTIONS(1504), - [anon_sym___leave] = ACTIONS(1504), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_sizeof] = ACTIONS(1504), - [anon_sym___alignof__] = ACTIONS(1504), - [anon_sym___alignof] = ACTIONS(1504), - [anon_sym__alignof] = ACTIONS(1504), - [anon_sym_alignof] = ACTIONS(1504), - [anon_sym__Alignof] = ACTIONS(1504), - [anon_sym_offsetof] = ACTIONS(1504), - [anon_sym__Generic] = ACTIONS(1504), - [anon_sym_asm] = ACTIONS(1504), - [anon_sym___asm__] = ACTIONS(1504), - [sym_number_literal] = ACTIONS(1506), - [anon_sym_L_SQUOTE] = ACTIONS(1506), - [anon_sym_u_SQUOTE] = ACTIONS(1506), - [anon_sym_U_SQUOTE] = ACTIONS(1506), - [anon_sym_u8_SQUOTE] = ACTIONS(1506), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_L_DQUOTE] = ACTIONS(1506), - [anon_sym_u_DQUOTE] = ACTIONS(1506), - [anon_sym_U_DQUOTE] = ACTIONS(1506), - [anon_sym_u8_DQUOTE] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym_true] = ACTIONS(1504), - [sym_false] = ACTIONS(1504), - [anon_sym_NULL] = ACTIONS(1504), - [anon_sym_nullptr] = ACTIONS(1504), + [389] = { + [sym_attribute_declaration] = STATE(389), + [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_seh_try_statement] = STATE(206), + [sym_seh_leave_statement] = STATE(206), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), + [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___try] = ACTIONS(1617), + [anon_sym___leave] = ACTIONS(1620), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1626), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1632), + [anon_sym__Generic] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1638), + [anon_sym___asm__] = ACTIONS(1638), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1644), + [anon_sym_u_SQUOTE] = ACTIONS(1644), + [anon_sym_U_SQUOTE] = ACTIONS(1644), + [anon_sym_u8_SQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_NULL] = ACTIONS(1653), + [anon_sym_nullptr] = ACTIONS(1653), [sym_comment] = ACTIONS(3), }, - [387] = { - [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___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = 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), + [390] = { + [sym_attribute_declaration] = STATE(396), + [sym_compound_statement] = STATE(366), + [sym_attributed_statement] = STATE(366), + [sym_labeled_statement] = STATE(366), + [sym_expression_statement] = STATE(366), + [sym_if_statement] = STATE(366), + [sym_switch_statement] = STATE(366), + [sym_case_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [sym_do_statement] = STATE(366), + [sym_for_statement] = STATE(366), + [sym_return_statement] = STATE(366), + [sym_break_statement] = STATE(366), + [sym_continue_statement] = STATE(366), + [sym_goto_statement] = STATE(366), + [sym_seh_try_statement] = STATE(366), + [sym_seh_leave_statement] = STATE(366), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [388] = { + [391] = { + [sym_attribute_declaration] = STATE(389), + [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_seh_try_statement] = STATE(206), + [sym_seh_leave_statement] = STATE(206), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(389), + [sym_identifier] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [392] = { + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_RBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + }, + [393] = { + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(3), + }, + [394] = { + [sym_attribute_declaration] = STATE(391), + [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_seh_try_statement] = STATE(176), + [sym_seh_leave_statement] = STATE(176), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [395] = { [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), [aux_sym_preproc_def_token1] = ACTIONS(1492), @@ -59560,439 +60469,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [389] = { - [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___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = 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), + [396] = { + [sym_attribute_declaration] = STATE(396), + [sym_compound_statement] = STATE(366), + [sym_attributed_statement] = STATE(366), + [sym_labeled_statement] = STATE(366), + [sym_expression_statement] = STATE(366), + [sym_if_statement] = STATE(366), + [sym_switch_statement] = STATE(366), + [sym_case_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [sym_do_statement] = STATE(366), + [sym_for_statement] = STATE(366), + [sym_return_statement] = STATE(366), + [sym_break_statement] = STATE(366), + [sym_continue_statement] = STATE(366), + [sym_goto_statement] = STATE(366), + [sym_seh_try_statement] = STATE(366), + [sym_seh_leave_statement] = STATE(366), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(396), + [sym_identifier] = ACTIONS(1658), + [anon_sym_LPAREN2] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_switch] = ACTIONS(1670), + [anon_sym_case] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1679), + [anon_sym_do] = ACTIONS(1682), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1691), + [anon_sym_continue] = ACTIONS(1694), + [anon_sym_goto] = ACTIONS(1697), + [anon_sym___try] = ACTIONS(1700), + [anon_sym___leave] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1626), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1632), + [anon_sym__Generic] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1638), + [anon_sym___asm__] = ACTIONS(1638), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1644), + [anon_sym_u_SQUOTE] = ACTIONS(1644), + [anon_sym_U_SQUOTE] = ACTIONS(1644), + [anon_sym_u8_SQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_NULL] = ACTIONS(1653), + [anon_sym_nullptr] = ACTIONS(1653), [sym_comment] = ACTIONS(3), }, - [390] = { - [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___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = 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), + [397] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_RBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [391] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [398] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + }, + [399] = { + [sym_attribute_declaration] = STATE(391), + [sym_compound_statement] = STATE(158), + [sym_attributed_statement] = STATE(158), + [sym_labeled_statement] = STATE(158), + [sym_expression_statement] = STATE(158), + [sym_if_statement] = STATE(158), + [sym_switch_statement] = STATE(158), + [sym_case_statement] = STATE(158), + [sym_while_statement] = STATE(158), + [sym_do_statement] = STATE(158), + [sym_for_statement] = STATE(158), + [sym_return_statement] = STATE(158), + [sym_break_statement] = STATE(158), + [sym_continue_statement] = STATE(158), + [sym_goto_statement] = STATE(158), + [sym_seh_try_statement] = STATE(158), + [sym_seh_leave_statement] = STATE(158), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(1546), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [400] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(2264), + [sym_attributed_statement] = STATE(2264), + [sym_labeled_statement] = STATE(2264), + [sym_expression_statement] = STATE(2264), + [sym_if_statement] = STATE(2264), + [sym_switch_statement] = STATE(2264), + [sym_case_statement] = STATE(2264), + [sym_while_statement] = STATE(2264), + [sym_do_statement] = STATE(2264), + [sym_for_statement] = STATE(2264), + [sym_return_statement] = STATE(2264), + [sym_break_statement] = STATE(2264), + [sym_continue_statement] = STATE(2264), + [sym_goto_statement] = STATE(2264), + [sym_seh_try_statement] = STATE(2264), + [sym_seh_leave_statement] = STATE(2264), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [392] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [401] = { + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token2] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym___try] = ACTIONS(1470), + [anon_sym___leave] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), [sym_comment] = ACTIONS(3), }, - [393] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(1954), - [sym_attributed_statement] = STATE(1954), - [sym_labeled_statement] = STATE(1954), - [sym_expression_statement] = STATE(1954), - [sym_if_statement] = STATE(1954), - [sym_switch_statement] = STATE(1954), - [sym_case_statement] = STATE(1954), - [sym_while_statement] = STATE(1954), - [sym_do_statement] = STATE(1954), - [sym_for_statement] = STATE(1954), - [sym_return_statement] = STATE(1954), - [sym_break_statement] = STATE(1954), - [sym_continue_statement] = STATE(1954), - [sym_goto_statement] = STATE(1954), - [sym_seh_try_statement] = STATE(1954), - [sym_seh_leave_statement] = STATE(1954), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), + [402] = { + [sym_attribute_declaration] = STATE(390), + [sym_compound_statement] = STATE(298), + [sym_attributed_statement] = STATE(298), + [sym_labeled_statement] = STATE(298), + [sym_expression_statement] = STATE(298), + [sym_if_statement] = STATE(298), + [sym_switch_statement] = STATE(298), + [sym_case_statement] = STATE(298), + [sym_while_statement] = STATE(298), + [sym_do_statement] = STATE(298), + [sym_for_statement] = STATE(298), + [sym_return_statement] = STATE(298), + [sym_break_statement] = STATE(298), + [sym_continue_statement] = STATE(298), + [sym_goto_statement] = STATE(298), + [sym_seh_try_statement] = STATE(298), + [sym_seh_leave_statement] = STATE(298), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60001,20 +61104,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -60045,51 +61148,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [394] = { - [sym_attribute_declaration] = STATE(384), - [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_seh_try_statement] = STATE(281), - [sym_seh_leave_statement] = STATE(281), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [sym_identifier] = ACTIONS(1688), + [403] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(122), + [sym_attributed_statement] = STATE(122), + [sym_labeled_statement] = STATE(122), + [sym_expression_statement] = STATE(122), + [sym_if_statement] = STATE(122), + [sym_switch_statement] = STATE(122), + [sym_case_statement] = STATE(122), + [sym_while_statement] = STATE(122), + [sym_do_statement] = STATE(122), + [sym_for_statement] = STATE(122), + [sym_return_statement] = STATE(122), + [sym_break_statement] = STATE(122), + [sym_continue_statement] = STATE(122), + [sym_goto_statement] = STATE(122), + [sym_seh_try_statement] = STATE(122), + [sym_seh_leave_statement] = STATE(122), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [404] = { + [sym_attribute_declaration] = STATE(390), + [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_seh_try_statement] = STATE(367), + [sym_seh_leave_statement] = STATE(367), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60098,7 +61298,7 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -60142,51 +61342,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [395] = { - [sym_attribute_declaration] = STATE(384), - [sym_compound_statement] = STATE(272), - [sym_attributed_statement] = STATE(271), - [sym_labeled_statement] = STATE(267), - [sym_expression_statement] = STATE(265), - [sym_if_statement] = STATE(258), - [sym_switch_statement] = STATE(257), - [sym_case_statement] = STATE(256), - [sym_while_statement] = STATE(255), - [sym_do_statement] = STATE(254), - [sym_for_statement] = STATE(253), - [sym_return_statement] = STATE(252), - [sym_break_statement] = STATE(249), - [sym_continue_statement] = STATE(248), - [sym_goto_statement] = STATE(283), - [sym_seh_try_statement] = STATE(246), - [sym_seh_leave_statement] = STATE(245), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(384), - [sym_identifier] = ACTIONS(1688), + [405] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(2280), + [sym_attributed_statement] = STATE(2280), + [sym_labeled_statement] = STATE(2280), + [sym_expression_statement] = STATE(2280), + [sym_if_statement] = STATE(2280), + [sym_switch_statement] = STATE(2280), + [sym_case_statement] = STATE(2280), + [sym_while_statement] = STATE(2280), + [sym_do_statement] = STATE(2280), + [sym_for_statement] = STATE(2280), + [sym_return_statement] = STATE(2280), + [sym_break_statement] = STATE(2280), + [sym_continue_statement] = STATE(2280), + [sym_goto_statement] = STATE(2280), + [sym_seh_try_statement] = STATE(2280), + [sym_seh_leave_statement] = STATE(2280), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [406] = { + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token2] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym___try] = ACTIONS(1516), + [anon_sym___leave] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), + [sym_comment] = ACTIONS(3), + }, + [407] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(2249), + [sym_attributed_statement] = STATE(2249), + [sym_labeled_statement] = STATE(2249), + [sym_expression_statement] = STATE(2249), + [sym_if_statement] = STATE(2249), + [sym_switch_statement] = STATE(2249), + [sym_case_statement] = STATE(2249), + [sym_while_statement] = STATE(2249), + [sym_do_statement] = STATE(2249), + [sym_for_statement] = STATE(2249), + [sym_return_statement] = STATE(2249), + [sym_break_statement] = STATE(2249), + [sym_continue_statement] = STATE(2249), + [sym_goto_statement] = STATE(2249), + [sym_seh_try_statement] = STATE(2249), + [sym_seh_leave_statement] = STATE(2249), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [408] = { + [sym_attribute_declaration] = STATE(390), + [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_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60195,7 +61686,7 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(499), [anon_sym_if] = ACTIONS(503), [anon_sym_switch] = ACTIONS(505), @@ -60239,492 +61730,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [396] = { - [sym_identifier] = ACTIONS(1496), - [aux_sym_preproc_include_token1] = ACTIONS(1496), - [aux_sym_preproc_def_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token1] = ACTIONS(1496), - [aux_sym_preproc_if_token2] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), - [sym_preproc_directive] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1498), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym___extension__] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym___attribute__] = ACTIONS(1496), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), - [anon_sym___declspec] = ACTIONS(1496), - [anon_sym___cdecl] = ACTIONS(1496), - [anon_sym___clrcall] = ACTIONS(1496), - [anon_sym___stdcall] = ACTIONS(1496), - [anon_sym___fastcall] = ACTIONS(1496), - [anon_sym___thiscall] = ACTIONS(1496), - [anon_sym___vectorcall] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_signed] = ACTIONS(1496), - [anon_sym_unsigned] = ACTIONS(1496), - [anon_sym_long] = ACTIONS(1496), - [anon_sym_short] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_auto] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym___inline] = ACTIONS(1496), - [anon_sym___inline__] = ACTIONS(1496), - [anon_sym___forceinline] = ACTIONS(1496), - [anon_sym_thread_local] = ACTIONS(1496), - [anon_sym___thread] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [anon_sym_constexpr] = ACTIONS(1496), - [anon_sym_volatile] = ACTIONS(1496), - [anon_sym_restrict] = ACTIONS(1496), - [anon_sym___restrict__] = ACTIONS(1496), - [anon_sym__Atomic] = ACTIONS(1496), - [anon_sym__Noreturn] = ACTIONS(1496), - [anon_sym_noreturn] = ACTIONS(1496), - [sym_primitive_type] = ACTIONS(1496), - [anon_sym_enum] = ACTIONS(1496), - [anon_sym_struct] = ACTIONS(1496), - [anon_sym_union] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_goto] = ACTIONS(1496), - [anon_sym___try] = ACTIONS(1496), - [anon_sym___leave] = ACTIONS(1496), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_sizeof] = ACTIONS(1496), - [anon_sym___alignof__] = ACTIONS(1496), - [anon_sym___alignof] = ACTIONS(1496), - [anon_sym__alignof] = ACTIONS(1496), - [anon_sym_alignof] = ACTIONS(1496), - [anon_sym__Alignof] = ACTIONS(1496), - [anon_sym_offsetof] = ACTIONS(1496), - [anon_sym__Generic] = ACTIONS(1496), - [anon_sym_asm] = ACTIONS(1496), - [anon_sym___asm__] = ACTIONS(1496), - [sym_number_literal] = ACTIONS(1498), - [anon_sym_L_SQUOTE] = ACTIONS(1498), - [anon_sym_u_SQUOTE] = ACTIONS(1498), - [anon_sym_U_SQUOTE] = ACTIONS(1498), - [anon_sym_u8_SQUOTE] = ACTIONS(1498), - [anon_sym_SQUOTE] = ACTIONS(1498), - [anon_sym_L_DQUOTE] = ACTIONS(1498), - [anon_sym_u_DQUOTE] = ACTIONS(1498), - [anon_sym_U_DQUOTE] = ACTIONS(1498), - [anon_sym_u8_DQUOTE] = ACTIONS(1498), - [anon_sym_DQUOTE] = ACTIONS(1498), - [sym_true] = ACTIONS(1496), - [sym_false] = ACTIONS(1496), - [anon_sym_NULL] = ACTIONS(1496), - [anon_sym_nullptr] = ACTIONS(1496), - [sym_comment] = ACTIONS(3), - }, - [397] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [398] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [399] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [409] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(2082), + [sym_attributed_statement] = STATE(2082), + [sym_labeled_statement] = STATE(2082), + [sym_expression_statement] = STATE(2082), + [sym_if_statement] = STATE(2082), + [sym_switch_statement] = STATE(2082), + [sym_case_statement] = STATE(2082), + [sym_while_statement] = STATE(2082), + [sym_do_statement] = STATE(2082), + [sym_for_statement] = STATE(2082), + [sym_return_statement] = STATE(2082), + [sym_break_statement] = STATE(2082), + [sym_continue_statement] = STATE(2082), + [sym_goto_statement] = STATE(2082), + [sym_seh_try_statement] = STATE(2082), + [sym_seh_leave_statement] = STATE(2082), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [400] = { - [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___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = 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), + [410] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [401] = { + [411] = { [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), [aux_sym_preproc_def_token1] = ACTIONS(1492), @@ -60821,1215 +62021,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [402] = { - [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___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym___try] = ACTIONS(1406), - [anon_sym___leave] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = 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), - }, - [403] = { - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token2] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym___try] = ACTIONS(1456), - [anon_sym___leave] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - }, - [404] = { - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_if_token2] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_SEMI] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym___try] = ACTIONS(1448), - [anon_sym___leave] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - }, - [405] = { - [sym_identifier] = ACTIONS(1418), - [aux_sym_preproc_include_token1] = ACTIONS(1418), - [aux_sym_preproc_def_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token1] = ACTIONS(1418), - [aux_sym_preproc_if_token2] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), - [sym_preproc_directive] = ACTIONS(1418), - [anon_sym_LPAREN2] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1420), - [anon_sym___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym___try] = ACTIONS(1418), - [anon_sym___leave] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = 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), - }, - [406] = { - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_if_token2] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym___try] = ACTIONS(1500), - [anon_sym___leave] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - }, - [407] = { - [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___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym___try] = ACTIONS(1414), - [anon_sym___leave] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = 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), - }, - [408] = { - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_SEMI] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym___try] = ACTIONS(1452), - [anon_sym___leave] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [409] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - }, - [410] = { - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token2] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym___try] = ACTIONS(1468), - [anon_sym___leave] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), - [sym_comment] = ACTIONS(3), - }, - [411] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, [412] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token2] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [sym__expression] = STATE(949), + [sym__expression_not_binary] = STATE(990), + [sym__string] = STATE(990), + [sym_conditional_expression] = STATE(990), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(990), + [sym_unary_expression] = STATE(990), + [sym_binary_expression] = STATE(990), + [sym_update_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_alignof_expression] = STATE(990), + [sym_offsetof_expression] = STATE(990), + [sym_generic_expression] = STATE(990), + [sym_subscript_expression] = STATE(990), + [sym_call_expression] = STATE(990), + [sym_gnu_asm_expression] = STATE(990), + [sym_field_expression] = STATE(990), + [sym_compound_literal_expression] = STATE(990), + [sym_parenthesized_expression] = STATE(990), + [sym_initializer_list] = STATE(984), + [sym_char_literal] = STATE(990), + [sym_concatenated_string] = STATE(990), + [sym_string_literal] = STATE(877), + [sym_null] = STATE(990), + [sym_identifier] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1712), + [anon_sym___alignof__] = ACTIONS(1714), + [anon_sym___alignof] = ACTIONS(1714), + [anon_sym__alignof] = ACTIONS(1714), + [anon_sym_alignof] = ACTIONS(1714), + [anon_sym__Alignof] = ACTIONS(1714), + [anon_sym_offsetof] = ACTIONS(1716), + [anon_sym__Generic] = ACTIONS(1718), + [anon_sym_asm] = ACTIONS(1720), + [anon_sym___asm__] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1722), + [anon_sym_L_SQUOTE] = ACTIONS(1724), + [anon_sym_u_SQUOTE] = ACTIONS(1724), + [anon_sym_U_SQUOTE] = ACTIONS(1724), + [anon_sym_u8_SQUOTE] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_L_DQUOTE] = ACTIONS(1726), + [anon_sym_u_DQUOTE] = ACTIONS(1726), + [anon_sym_U_DQUOTE] = ACTIONS(1726), + [anon_sym_u8_DQUOTE] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [anon_sym_NULL] = ACTIONS(1730), + [anon_sym_nullptr] = ACTIONS(1730), [sym_comment] = ACTIONS(3), }, [413] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token2] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym___try] = ACTIONS(1478), + [anon_sym___leave] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), [sym_comment] = ACTIONS(3), }, [414] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(241), + [sym_attribute_declaration] = STATE(414), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(414), + [sym_identifier] = ACTIONS(1732), + [anon_sym_LPAREN2] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1741), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1747), + [anon_sym_default] = ACTIONS(1750), + [anon_sym_while] = ACTIONS(1753), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_goto] = ACTIONS(1771), + [anon_sym___try] = ACTIONS(1774), + [anon_sym___leave] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1626), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1632), + [anon_sym__Generic] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1638), + [anon_sym___asm__] = ACTIONS(1638), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1644), + [anon_sym_u_SQUOTE] = ACTIONS(1644), + [anon_sym_U_SQUOTE] = ACTIONS(1644), + [anon_sym_u8_SQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_NULL] = ACTIONS(1653), + [anon_sym_nullptr] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + }, + [415] = { + [sym_attribute_declaration] = STATE(426), + [sym_compound_statement] = STATE(284), [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(292), - [sym_expression_statement] = STATE(234), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(315), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(276), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(344), - [sym_seh_try_statement] = STATE(260), - [sym_seh_leave_statement] = STATE(259), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), + [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_seh_try_statement] = STATE(284), + [sym_seh_leave_statement] = STATE(284), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62037,22 +62364,22 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(69), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62082,51 +62409,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [415] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(263), - [sym_attributed_statement] = STATE(263), - [sym_labeled_statement] = STATE(263), - [sym_expression_statement] = STATE(263), + [416] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(321), + [sym_attributed_statement] = STATE(322), + [sym_labeled_statement] = STATE(323), + [sym_expression_statement] = STATE(324), + [sym_if_statement] = STATE(326), + [sym_switch_statement] = STATE(327), + [sym_case_statement] = STATE(328), + [sym_while_statement] = STATE(329), + [sym_do_statement] = STATE(331), + [sym_for_statement] = STATE(333), + [sym_return_statement] = STATE(335), + [sym_break_statement] = STATE(337), + [sym_continue_statement] = STATE(338), + [sym_goto_statement] = STATE(339), + [sym_seh_try_statement] = STATE(340), + [sym_seh_leave_statement] = STATE(341), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [417] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(133), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_case_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym_seh_try_statement] = STATE(133), + [sym_seh_leave_statement] = STATE(133), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1782), + [anon_sym_LPAREN2] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1785), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1791), + [anon_sym_switch] = ACTIONS(1794), + [anon_sym_case] = ACTIONS(1797), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1806), + [anon_sym_for] = ACTIONS(1809), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1815), + [anon_sym_continue] = ACTIONS(1818), + [anon_sym_goto] = ACTIONS(1821), + [anon_sym___try] = ACTIONS(1824), + [anon_sym___leave] = ACTIONS(1827), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1626), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1632), + [anon_sym__Generic] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1638), + [anon_sym___asm__] = ACTIONS(1638), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1644), + [anon_sym_u_SQUOTE] = ACTIONS(1644), + [anon_sym_U_SQUOTE] = ACTIONS(1644), + [anon_sym_u8_SQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_NULL] = ACTIONS(1653), + [anon_sym_nullptr] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + }, + [418] = { + [sym_identifier] = ACTIONS(1430), + [aux_sym_preproc_include_token1] = ACTIONS(1430), + [aux_sym_preproc_def_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token1] = ACTIONS(1430), + [aux_sym_preproc_if_token2] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1430), + [anon_sym_LPAREN2] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = 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), + }, + [419] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(370), + [sym_attributed_statement] = STATE(375), + [sym_labeled_statement] = STATE(377), + [sym_expression_statement] = STATE(273), [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_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), + [sym_switch_statement] = STATE(354), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(351), + [sym_do_statement] = STATE(347), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(343), + [sym_break_statement] = STATE(336), + [sym_continue_statement] = STATE(334), + [sym_goto_statement] = STATE(332), + [sym_seh_try_statement] = STATE(317), + [sym_seh_leave_statement] = STATE(286), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62135,20 +62753,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym___try] = ACTIONS(1269), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -62179,148 +62797,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [416] = { - [sym_attribute_declaration] = STATE(416), - [sym_compound_statement] = STATE(341), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(341), - [sym_expression_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_switch_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_do_statement] = STATE(341), - [sym_for_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_break_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_goto_statement] = STATE(341), - [sym_seh_try_statement] = STATE(341), - [sym_seh_leave_statement] = STATE(341), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(416), - [sym_identifier] = ACTIONS(1766), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_case] = ACTIONS(1778), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1784), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym___try] = ACTIONS(1805), - [anon_sym___leave] = ACTIONS(1735), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_sizeof] = ACTIONS(1600), - [anon_sym___alignof__] = ACTIONS(1603), - [anon_sym___alignof] = ACTIONS(1603), - [anon_sym__alignof] = ACTIONS(1603), - [anon_sym_alignof] = ACTIONS(1603), - [anon_sym__Alignof] = ACTIONS(1603), - [anon_sym_offsetof] = ACTIONS(1606), - [anon_sym__Generic] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym___asm__] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1615), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym_u_SQUOTE] = ACTIONS(1618), - [anon_sym_U_SQUOTE] = ACTIONS(1618), - [anon_sym_u8_SQUOTE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1624), - [sym_false] = ACTIONS(1624), - [anon_sym_NULL] = ACTIONS(1627), - [anon_sym_nullptr] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - }, - [417] = { - [sym_attribute_declaration] = STATE(357), - [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_seh_try_statement] = STATE(112), - [sym_seh_leave_statement] = STATE(112), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(357), - [sym_identifier] = ACTIONS(1738), + [420] = { + [sym_attribute_declaration] = STATE(452), + [sym_compound_statement] = STATE(319), + [sym_attributed_statement] = STATE(319), + [sym_labeled_statement] = STATE(319), + [sym_expression_statement] = STATE(319), + [sym_if_statement] = STATE(319), + [sym_switch_statement] = STATE(319), + [sym_case_statement] = STATE(319), + [sym_while_statement] = STATE(319), + [sym_do_statement] = STATE(319), + [sym_for_statement] = STATE(319), + [sym_return_statement] = STATE(319), + [sym_break_statement] = STATE(319), + [sym_continue_statement] = STATE(319), + [sym_goto_statement] = STATE(319), + [sym_seh_try_statement] = STATE(319), + [sym_seh_leave_statement] = STATE(319), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(452), + [sym_identifier] = ACTIONS(1780), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62328,22 +62849,22 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62373,51 +62894,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [418] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(122), - [sym_attributed_statement] = STATE(122), - [sym_labeled_statement] = STATE(122), - [sym_expression_statement] = STATE(122), - [sym_if_statement] = STATE(122), - [sym_switch_statement] = STATE(122), - [sym_case_statement] = STATE(122), - [sym_while_statement] = STATE(122), - [sym_do_statement] = STATE(122), - [sym_for_statement] = STATE(122), - [sym_return_statement] = STATE(122), - [sym_break_statement] = STATE(122), - [sym_continue_statement] = STATE(122), - [sym_goto_statement] = STATE(122), - [sym_seh_try_statement] = STATE(122), - [sym_seh_leave_statement] = STATE(122), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1738), + [421] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [422] = { + [sym_attribute_declaration] = STATE(426), + [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_seh_try_statement] = STATE(307), + [sym_seh_leave_statement] = STATE(307), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62425,22 +63043,22 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62470,51 +63088,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [419] = { - [sym_attribute_declaration] = STATE(417), - [sym_compound_statement] = STATE(131), - [sym_attributed_statement] = STATE(100), - [sym_labeled_statement] = STATE(128), - [sym_expression_statement] = STATE(129), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(133), - [sym_case_statement] = STATE(132), - [sym_while_statement] = STATE(125), - [sym_do_statement] = STATE(120), - [sym_for_statement] = STATE(118), - [sym_return_statement] = STATE(115), - [sym_break_statement] = STATE(91), - [sym_continue_statement] = STATE(92), - [sym_goto_statement] = STATE(111), - [sym_seh_try_statement] = STATE(110), - [sym_seh_leave_statement] = STATE(109), - [sym__expression] = STATE(1221), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2033), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(417), - [sym_identifier] = ACTIONS(1738), + [423] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [424] = { + [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___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = 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), + }, + [425] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token2] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), + [sym_comment] = ACTIONS(3), + }, + [426] = { + [sym_attribute_declaration] = STATE(414), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(414), + [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62522,22 +63431,22 @@ 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(121), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_if] = ACTIONS(131), - [anon_sym_switch] = ACTIONS(133), - [anon_sym_case] = ACTIONS(135), - [anon_sym_default] = ACTIONS(137), - [anon_sym_while] = ACTIONS(139), - [anon_sym_do] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_return] = ACTIONS(145), - [anon_sym_break] = ACTIONS(147), - [anon_sym_continue] = ACTIONS(149), - [anon_sym_goto] = ACTIONS(151), - [anon_sym___try] = ACTIONS(153), - [anon_sym___leave] = ACTIONS(155), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(57), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(61), + [anon_sym_default] = ACTIONS(63), + [anon_sym_while] = ACTIONS(65), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62567,51 +63476,827 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [420] = { - [sym_attribute_declaration] = STATE(431), - [sym_compound_statement] = STATE(241), - [sym_attributed_statement] = STATE(284), - [sym_labeled_statement] = STATE(292), - [sym_expression_statement] = STATE(234), - [sym_if_statement] = STATE(306), - [sym_switch_statement] = STATE(307), - [sym_case_statement] = STATE(315), - [sym_while_statement] = STATE(275), - [sym_do_statement] = STATE(276), - [sym_for_statement] = STATE(261), - [sym_return_statement] = STATE(262), - [sym_break_statement] = STATE(266), - [sym_continue_statement] = STATE(268), - [sym_goto_statement] = STATE(344), - [sym_seh_try_statement] = STATE(260), - [sym_seh_leave_statement] = STATE(259), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1808), + [427] = { + [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___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = 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), + }, + [428] = { + [sym_identifier] = ACTIONS(1504), + [aux_sym_preproc_include_token1] = ACTIONS(1504), + [aux_sym_preproc_def_token1] = ACTIONS(1504), + [aux_sym_preproc_if_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1504), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1504), + [sym_preproc_directive] = ACTIONS(1504), + [anon_sym_LPAREN2] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1504), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1506), + [anon_sym_SEMI] = ACTIONS(1506), + [anon_sym___extension__] = ACTIONS(1504), + [anon_sym_typedef] = ACTIONS(1504), + [anon_sym_extern] = ACTIONS(1504), + [anon_sym___attribute__] = ACTIONS(1504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1506), + [anon_sym___declspec] = ACTIONS(1504), + [anon_sym___cdecl] = ACTIONS(1504), + [anon_sym___clrcall] = ACTIONS(1504), + [anon_sym___stdcall] = ACTIONS(1504), + [anon_sym___fastcall] = ACTIONS(1504), + [anon_sym___thiscall] = ACTIONS(1504), + [anon_sym___vectorcall] = ACTIONS(1504), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_RBRACE] = ACTIONS(1506), + [anon_sym_signed] = ACTIONS(1504), + [anon_sym_unsigned] = ACTIONS(1504), + [anon_sym_long] = ACTIONS(1504), + [anon_sym_short] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1504), + [anon_sym_auto] = ACTIONS(1504), + [anon_sym_register] = ACTIONS(1504), + [anon_sym_inline] = ACTIONS(1504), + [anon_sym___inline] = ACTIONS(1504), + [anon_sym___inline__] = ACTIONS(1504), + [anon_sym___forceinline] = ACTIONS(1504), + [anon_sym_thread_local] = ACTIONS(1504), + [anon_sym___thread] = ACTIONS(1504), + [anon_sym_const] = ACTIONS(1504), + [anon_sym_constexpr] = ACTIONS(1504), + [anon_sym_volatile] = ACTIONS(1504), + [anon_sym_restrict] = ACTIONS(1504), + [anon_sym___restrict__] = ACTIONS(1504), + [anon_sym__Atomic] = ACTIONS(1504), + [anon_sym__Noreturn] = ACTIONS(1504), + [anon_sym_noreturn] = ACTIONS(1504), + [sym_primitive_type] = ACTIONS(1504), + [anon_sym_enum] = ACTIONS(1504), + [anon_sym_struct] = ACTIONS(1504), + [anon_sym_union] = ACTIONS(1504), + [anon_sym_if] = ACTIONS(1504), + [anon_sym_switch] = ACTIONS(1504), + [anon_sym_case] = ACTIONS(1504), + [anon_sym_default] = ACTIONS(1504), + [anon_sym_while] = ACTIONS(1504), + [anon_sym_do] = ACTIONS(1504), + [anon_sym_for] = ACTIONS(1504), + [anon_sym_return] = ACTIONS(1504), + [anon_sym_break] = ACTIONS(1504), + [anon_sym_continue] = ACTIONS(1504), + [anon_sym_goto] = ACTIONS(1504), + [anon_sym___try] = ACTIONS(1504), + [anon_sym___leave] = ACTIONS(1504), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_sizeof] = ACTIONS(1504), + [anon_sym___alignof__] = ACTIONS(1504), + [anon_sym___alignof] = ACTIONS(1504), + [anon_sym__alignof] = ACTIONS(1504), + [anon_sym_alignof] = ACTIONS(1504), + [anon_sym__Alignof] = ACTIONS(1504), + [anon_sym_offsetof] = ACTIONS(1504), + [anon_sym__Generic] = ACTIONS(1504), + [anon_sym_asm] = ACTIONS(1504), + [anon_sym___asm__] = ACTIONS(1504), + [sym_number_literal] = ACTIONS(1506), + [anon_sym_L_SQUOTE] = ACTIONS(1506), + [anon_sym_u_SQUOTE] = ACTIONS(1506), + [anon_sym_U_SQUOTE] = ACTIONS(1506), + [anon_sym_u8_SQUOTE] = ACTIONS(1506), + [anon_sym_SQUOTE] = ACTIONS(1506), + [anon_sym_L_DQUOTE] = ACTIONS(1506), + [anon_sym_u_DQUOTE] = ACTIONS(1506), + [anon_sym_U_DQUOTE] = ACTIONS(1506), + [anon_sym_u8_DQUOTE] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(1506), + [sym_true] = ACTIONS(1504), + [sym_false] = ACTIONS(1504), + [anon_sym_NULL] = ACTIONS(1504), + [anon_sym_nullptr] = ACTIONS(1504), + [sym_comment] = ACTIONS(3), + }, + [429] = { + [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___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym___try] = ACTIONS(1430), + [anon_sym___leave] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = 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), + }, + [430] = { + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_if_token2] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym___try] = ACTIONS(1482), + [anon_sym___leave] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), + [sym_comment] = ACTIONS(3), + }, + [431] = { + [sym_attribute_declaration] = STATE(431), + [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_seh_try_statement] = STATE(267), + [sym_seh_leave_statement] = STATE(267), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1830), + [anon_sym_LPAREN2] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_switch] = ACTIONS(1842), + [anon_sym_case] = ACTIONS(1845), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1857), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1866), + [anon_sym_goto] = ACTIONS(1869), + [anon_sym___try] = ACTIONS(1872), + [anon_sym___leave] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1626), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1632), + [anon_sym__Generic] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1638), + [anon_sym___asm__] = ACTIONS(1638), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1644), + [anon_sym_u_SQUOTE] = ACTIONS(1644), + [anon_sym_U_SQUOTE] = ACTIONS(1644), + [anon_sym_u8_SQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_NULL] = ACTIONS(1653), + [anon_sym_nullptr] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + }, + [432] = { + [sym_identifier] = ACTIONS(1496), + [aux_sym_preproc_include_token1] = ACTIONS(1496), + [aux_sym_preproc_def_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token1] = ACTIONS(1496), + [aux_sym_preproc_if_token2] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1496), + [sym_preproc_directive] = ACTIONS(1496), + [anon_sym_LPAREN2] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1498), + [anon_sym_TILDE] = ACTIONS(1498), + [anon_sym_DASH] = ACTIONS(1496), + [anon_sym_PLUS] = ACTIONS(1496), + [anon_sym_STAR] = ACTIONS(1498), + [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1498), + [anon_sym___extension__] = ACTIONS(1496), + [anon_sym_typedef] = ACTIONS(1496), + [anon_sym_extern] = ACTIONS(1496), + [anon_sym___attribute__] = ACTIONS(1496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1498), + [anon_sym___declspec] = ACTIONS(1496), + [anon_sym___cdecl] = ACTIONS(1496), + [anon_sym___clrcall] = ACTIONS(1496), + [anon_sym___stdcall] = ACTIONS(1496), + [anon_sym___fastcall] = ACTIONS(1496), + [anon_sym___thiscall] = ACTIONS(1496), + [anon_sym___vectorcall] = ACTIONS(1496), + [anon_sym_LBRACE] = ACTIONS(1498), + [anon_sym_signed] = ACTIONS(1496), + [anon_sym_unsigned] = ACTIONS(1496), + [anon_sym_long] = ACTIONS(1496), + [anon_sym_short] = ACTIONS(1496), + [anon_sym_static] = ACTIONS(1496), + [anon_sym_auto] = ACTIONS(1496), + [anon_sym_register] = ACTIONS(1496), + [anon_sym_inline] = ACTIONS(1496), + [anon_sym___inline] = ACTIONS(1496), + [anon_sym___inline__] = ACTIONS(1496), + [anon_sym___forceinline] = ACTIONS(1496), + [anon_sym_thread_local] = ACTIONS(1496), + [anon_sym___thread] = ACTIONS(1496), + [anon_sym_const] = ACTIONS(1496), + [anon_sym_constexpr] = ACTIONS(1496), + [anon_sym_volatile] = ACTIONS(1496), + [anon_sym_restrict] = ACTIONS(1496), + [anon_sym___restrict__] = ACTIONS(1496), + [anon_sym__Atomic] = ACTIONS(1496), + [anon_sym__Noreturn] = ACTIONS(1496), + [anon_sym_noreturn] = ACTIONS(1496), + [sym_primitive_type] = ACTIONS(1496), + [anon_sym_enum] = ACTIONS(1496), + [anon_sym_struct] = ACTIONS(1496), + [anon_sym_union] = ACTIONS(1496), + [anon_sym_if] = ACTIONS(1496), + [anon_sym_switch] = ACTIONS(1496), + [anon_sym_case] = ACTIONS(1496), + [anon_sym_default] = ACTIONS(1496), + [anon_sym_while] = ACTIONS(1496), + [anon_sym_do] = ACTIONS(1496), + [anon_sym_for] = ACTIONS(1496), + [anon_sym_return] = ACTIONS(1496), + [anon_sym_break] = ACTIONS(1496), + [anon_sym_continue] = ACTIONS(1496), + [anon_sym_goto] = ACTIONS(1496), + [anon_sym___try] = ACTIONS(1496), + [anon_sym___leave] = ACTIONS(1496), + [anon_sym_DASH_DASH] = ACTIONS(1498), + [anon_sym_PLUS_PLUS] = ACTIONS(1498), + [anon_sym_sizeof] = ACTIONS(1496), + [anon_sym___alignof__] = ACTIONS(1496), + [anon_sym___alignof] = ACTIONS(1496), + [anon_sym__alignof] = ACTIONS(1496), + [anon_sym_alignof] = ACTIONS(1496), + [anon_sym__Alignof] = ACTIONS(1496), + [anon_sym_offsetof] = ACTIONS(1496), + [anon_sym__Generic] = ACTIONS(1496), + [anon_sym_asm] = ACTIONS(1496), + [anon_sym___asm__] = ACTIONS(1496), + [sym_number_literal] = ACTIONS(1498), + [anon_sym_L_SQUOTE] = ACTIONS(1498), + [anon_sym_u_SQUOTE] = ACTIONS(1498), + [anon_sym_U_SQUOTE] = ACTIONS(1498), + [anon_sym_u8_SQUOTE] = ACTIONS(1498), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_L_DQUOTE] = ACTIONS(1498), + [anon_sym_u_DQUOTE] = ACTIONS(1498), + [anon_sym_U_DQUOTE] = ACTIONS(1498), + [anon_sym_u8_DQUOTE] = ACTIONS(1498), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(1496), + [anon_sym_nullptr] = ACTIONS(1496), + [sym_comment] = ACTIONS(3), + }, + [433] = { + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_if_token2] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym___try] = ACTIONS(1474), + [anon_sym___leave] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + }, + [434] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_RBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [435] = { + [sym_attribute_declaration] = STATE(410), + [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_seh_try_statement] = STATE(368), + [sym_seh_leave_statement] = STATE(368), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62619,22 +64304,22 @@ 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(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62664,51 +64349,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [421] = { + [436] = { [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(213), - [sym_attributed_statement] = STATE(213), - [sym_labeled_statement] = STATE(213), - [sym_expression_statement] = STATE(213), - [sym_if_statement] = STATE(213), - [sym_switch_statement] = STATE(213), - [sym_case_statement] = STATE(213), - [sym_while_statement] = STATE(213), - [sym_do_statement] = STATE(213), - [sym_for_statement] = STATE(213), - [sym_return_statement] = STATE(213), - [sym_break_statement] = STATE(213), - [sym_continue_statement] = STATE(213), - [sym_goto_statement] = STATE(213), - [sym_seh_try_statement] = STATE(213), - [sym_seh_leave_statement] = STATE(213), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [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_seh_try_statement] = STATE(294), + [sym_seh_leave_statement] = STATE(294), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1780), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62716,22 +64401,22 @@ 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(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62761,148 +64446,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [422] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(298), - [sym_attributed_statement] = STATE(298), - [sym_labeled_statement] = STATE(298), - [sym_expression_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_switch_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_do_statement] = STATE(298), - [sym_for_statement] = STATE(298), - [sym_return_statement] = STATE(298), - [sym_break_statement] = STATE(298), - [sym_continue_statement] = STATE(298), - [sym_goto_statement] = STATE(298), - [sym_seh_try_statement] = STATE(298), - [sym_seh_leave_statement] = STATE(298), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [437] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token2] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), [sym_comment] = ACTIONS(3), }, - [423] = { + [438] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token2] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [439] = { [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(302), - [sym_attributed_statement] = STATE(302), - [sym_labeled_statement] = STATE(302), - [sym_expression_statement] = STATE(302), - [sym_if_statement] = STATE(302), - [sym_switch_statement] = STATE(302), - [sym_case_statement] = STATE(302), - [sym_while_statement] = STATE(302), - [sym_do_statement] = STATE(302), - [sym_for_statement] = STATE(302), - [sym_return_statement] = STATE(302), - [sym_break_statement] = STATE(302), - [sym_continue_statement] = STATE(302), - [sym_goto_statement] = STATE(302), - [sym_seh_try_statement] = STATE(302), - [sym_seh_leave_statement] = STATE(302), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [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_seh_try_statement] = STATE(288), + [sym_seh_leave_statement] = STATE(288), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1780), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -62910,22 +64692,22 @@ 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(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -62955,148 +64737,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [424] = { - [sym_attribute_declaration] = STATE(424), - [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_seh_try_statement] = STATE(280), - [sym_seh_leave_statement] = STATE(280), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1812), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_switch] = ACTIONS(1824), - [anon_sym_case] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1830), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_do] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1842), - [anon_sym_break] = ACTIONS(1845), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_goto] = ACTIONS(1851), - [anon_sym___try] = ACTIONS(1854), - [anon_sym___leave] = ACTIONS(1857), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_sizeof] = ACTIONS(1600), - [anon_sym___alignof__] = ACTIONS(1603), - [anon_sym___alignof] = ACTIONS(1603), - [anon_sym__alignof] = ACTIONS(1603), - [anon_sym_alignof] = ACTIONS(1603), - [anon_sym__Alignof] = ACTIONS(1603), - [anon_sym_offsetof] = ACTIONS(1606), - [anon_sym__Generic] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym___asm__] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1615), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym_u_SQUOTE] = ACTIONS(1618), - [anon_sym_U_SQUOTE] = ACTIONS(1618), - [anon_sym_u8_SQUOTE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1624), - [sym_false] = ACTIONS(1624), - [anon_sym_NULL] = ACTIONS(1627), - [anon_sym_nullptr] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - }, - [425] = { + [440] = { [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(319), - [sym_attributed_statement] = STATE(319), - [sym_labeled_statement] = STATE(319), - [sym_expression_statement] = STATE(319), - [sym_if_statement] = STATE(319), - [sym_switch_statement] = STATE(319), - [sym_case_statement] = STATE(319), - [sym_while_statement] = STATE(319), - [sym_do_statement] = STATE(319), - [sym_for_statement] = STATE(319), - [sym_return_statement] = STATE(319), - [sym_break_statement] = STATE(319), - [sym_continue_statement] = STATE(319), - [sym_goto_statement] = STATE(319), - [sym_seh_try_statement] = STATE(319), - [sym_seh_leave_statement] = STATE(319), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), + [sym_compound_statement] = STATE(230), + [sym_attributed_statement] = STATE(230), + [sym_labeled_statement] = STATE(230), + [sym_expression_statement] = STATE(230), + [sym_if_statement] = STATE(230), + [sym_switch_statement] = STATE(230), + [sym_case_statement] = STATE(230), + [sym_while_statement] = STATE(230), + [sym_do_statement] = STATE(230), + [sym_for_statement] = STATE(230), + [sym_return_statement] = STATE(230), + [sym_break_statement] = STATE(230), + [sym_continue_statement] = STATE(230), + [sym_goto_statement] = STATE(230), + [sym_seh_try_statement] = STATE(230), + [sym_seh_leave_statement] = STATE(230), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1780), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63104,22 +64789,22 @@ 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(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63149,51 +64834,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [426] = { - [sym_attribute_declaration] = STATE(452), - [sym_compound_statement] = STATE(321), - [sym_attributed_statement] = STATE(322), - [sym_labeled_statement] = STATE(323), - [sym_expression_statement] = STATE(324), - [sym_if_statement] = STATE(326), - [sym_switch_statement] = STATE(327), - [sym_case_statement] = STATE(328), - [sym_while_statement] = STATE(329), - [sym_do_statement] = STATE(330), - [sym_for_statement] = STATE(331), - [sym_return_statement] = STATE(332), - [sym_break_statement] = STATE(333), - [sym_continue_statement] = STATE(334), - [sym_goto_statement] = STATE(336), - [sym_seh_try_statement] = STATE(337), - [sym_seh_leave_statement] = STATE(338), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(452), - [sym_identifier] = ACTIONS(1810), + [441] = { + [sym_attribute_declaration] = STATE(448), + [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_seh_try_statement] = STATE(91), + [sym_seh_leave_statement] = STATE(91), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1556), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63201,22 +64886,22 @@ 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(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63246,342 +64931,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [427] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(341), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(341), - [sym_expression_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_switch_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_do_statement] = STATE(341), - [sym_for_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_break_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_goto_statement] = STATE(341), - [sym_seh_try_statement] = STATE(341), - [sym_seh_leave_statement] = STATE(341), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1860), - [anon_sym_LPAREN2] = ACTIONS(1537), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1543), - [anon_sym_PLUS] = ACTIONS(1543), - [anon_sym_STAR] = ACTIONS(1546), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1775), - [anon_sym_case] = ACTIONS(1869), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_do] = ACTIONS(1787), - [anon_sym_for] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_goto] = ACTIONS(1802), - [anon_sym___try] = ACTIONS(1881), - [anon_sym___leave] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_sizeof] = ACTIONS(1600), - [anon_sym___alignof__] = ACTIONS(1603), - [anon_sym___alignof] = ACTIONS(1603), - [anon_sym__alignof] = ACTIONS(1603), - [anon_sym_alignof] = ACTIONS(1603), - [anon_sym__Alignof] = ACTIONS(1603), - [anon_sym_offsetof] = ACTIONS(1606), - [anon_sym__Generic] = ACTIONS(1609), - [anon_sym_asm] = ACTIONS(1612), - [anon_sym___asm__] = ACTIONS(1612), - [sym_number_literal] = ACTIONS(1615), - [anon_sym_L_SQUOTE] = ACTIONS(1618), - [anon_sym_u_SQUOTE] = ACTIONS(1618), - [anon_sym_U_SQUOTE] = ACTIONS(1618), - [anon_sym_u8_SQUOTE] = ACTIONS(1618), - [anon_sym_SQUOTE] = ACTIONS(1618), - [anon_sym_L_DQUOTE] = ACTIONS(1621), - [anon_sym_u_DQUOTE] = ACTIONS(1621), - [anon_sym_U_DQUOTE] = ACTIONS(1621), - [anon_sym_u8_DQUOTE] = ACTIONS(1621), - [anon_sym_DQUOTE] = ACTIONS(1621), - [sym_true] = ACTIONS(1624), - [sym_false] = ACTIONS(1624), - [anon_sym_NULL] = ACTIONS(1627), - [anon_sym_nullptr] = ACTIONS(1627), - [sym_comment] = ACTIONS(3), - }, - [428] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token2] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - }, - [429] = { - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_SEMI] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym___try] = ACTIONS(1464), - [anon_sym___leave] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [442] = { + [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___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_RBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym___try] = ACTIONS(1414), + [anon_sym___leave] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = 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), }, - [430] = { - [sym_attribute_declaration] = STATE(436), - [sym_compound_statement] = STATE(198), - [sym_attributed_statement] = STATE(201), - [sym_labeled_statement] = STATE(175), - [sym_expression_statement] = STATE(180), - [sym_if_statement] = STATE(182), - [sym_switch_statement] = STATE(183), - [sym_case_statement] = STATE(187), - [sym_while_statement] = STATE(193), - [sym_do_statement] = STATE(173), - [sym_for_statement] = STATE(176), - [sym_return_statement] = STATE(171), - [sym_break_statement] = STATE(170), - [sym_continue_statement] = STATE(169), - [sym_goto_statement] = STATE(168), - [sym_seh_try_statement] = STATE(167), + [443] = { + [sym_attribute_declaration] = STATE(391), + [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_seh_try_statement] = STATE(166), [sym_seh_leave_statement] = STATE(166), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(436), - [sym_identifier] = ACTIONS(1638), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(1546), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63590,7 +65081,7 @@ 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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(201), [anon_sym_if] = ACTIONS(203), [anon_sym_switch] = ACTIONS(205), @@ -63634,51 +65125,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [431] = { - [sym_attribute_declaration] = STATE(427), - [sym_compound_statement] = STATE(341), - [sym_attributed_statement] = STATE(341), - [sym_labeled_statement] = STATE(341), - [sym_expression_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_switch_statement] = STATE(341), - [sym_case_statement] = STATE(341), - [sym_while_statement] = STATE(341), - [sym_do_statement] = STATE(341), - [sym_for_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_break_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_goto_statement] = STATE(341), - [sym_seh_try_statement] = STATE(341), - [sym_seh_leave_statement] = STATE(341), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(427), - [sym_identifier] = ACTIONS(1808), + [444] = { + [sym_attribute_declaration] = STATE(448), + [sym_compound_statement] = STATE(105), + [sym_attributed_statement] = STATE(104), + [sym_labeled_statement] = STATE(103), + [sym_expression_statement] = STATE(102), + [sym_if_statement] = STATE(101), + [sym_switch_statement] = STATE(100), + [sym_case_statement] = STATE(99), + [sym_while_statement] = STATE(98), + [sym_do_statement] = STATE(96), + [sym_for_statement] = STATE(95), + [sym_return_statement] = STATE(94), + [sym_break_statement] = STATE(93), + [sym_continue_statement] = STATE(114), + [sym_goto_statement] = STATE(119), + [sym_seh_try_statement] = STATE(127), + [sym_seh_leave_statement] = STATE(128), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(448), + [sym_identifier] = ACTIONS(1556), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63686,22 +65177,22 @@ 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(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63731,51 +65222,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [432] = { - [sym_attribute_declaration] = STATE(431), - [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_seh_try_statement] = STATE(263), - [sym_seh_leave_statement] = STATE(263), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1808), + [445] = { + [sym_attribute_declaration] = STATE(391), + [sym_compound_statement] = STATE(203), + [sym_attributed_statement] = STATE(202), + [sym_labeled_statement] = STATE(201), + [sym_expression_statement] = STATE(199), + [sym_if_statement] = STATE(197), + [sym_switch_statement] = STATE(191), + [sym_case_statement] = STATE(190), + [sym_while_statement] = STATE(167), + [sym_do_statement] = STATE(188), + [sym_for_statement] = STATE(187), + [sym_return_statement] = STATE(186), + [sym_break_statement] = STATE(185), + [sym_continue_statement] = STATE(179), + [sym_goto_statement] = STATE(178), + [sym_seh_try_statement] = STATE(177), + [sym_seh_leave_statement] = STATE(208), + [sym__expression] = STATE(1242), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2212), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(1546), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -63783,22 +65274,22 @@ 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(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym_SEMI] = ACTIONS(193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_switch] = ACTIONS(205), + [anon_sym_case] = ACTIONS(207), + [anon_sym_default] = ACTIONS(209), + [anon_sym_while] = ACTIONS(211), + [anon_sym_do] = ACTIONS(213), + [anon_sym_for] = ACTIONS(215), + [anon_sym_return] = ACTIONS(217), + [anon_sym_break] = ACTIONS(219), + [anon_sym_continue] = ACTIONS(221), + [anon_sym_goto] = ACTIONS(223), + [anon_sym___try] = ACTIONS(225), + [anon_sym___leave] = ACTIONS(227), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -63828,201 +65319,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [433] = { - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token2] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym___try] = ACTIONS(1476), - [anon_sym___leave] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - }, - [434] = { - [sym_identifier] = ACTIONS(1428), - [aux_sym_preproc_include_token1] = ACTIONS(1428), - [aux_sym_preproc_def_token1] = ACTIONS(1428), - [aux_sym_preproc_if_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1428), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1428), - [sym_preproc_directive] = ACTIONS(1428), - [anon_sym_LPAREN2] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym___extension__] = ACTIONS(1428), - [anon_sym_typedef] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym___attribute__] = ACTIONS(1428), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1430), - [anon_sym___declspec] = ACTIONS(1428), - [anon_sym___cdecl] = ACTIONS(1428), - [anon_sym___clrcall] = ACTIONS(1428), - [anon_sym___stdcall] = ACTIONS(1428), - [anon_sym___fastcall] = ACTIONS(1428), - [anon_sym___thiscall] = ACTIONS(1428), - [anon_sym___vectorcall] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_signed] = ACTIONS(1428), - [anon_sym_unsigned] = ACTIONS(1428), - [anon_sym_long] = ACTIONS(1428), - [anon_sym_short] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_auto] = ACTIONS(1428), - [anon_sym_register] = ACTIONS(1428), - [anon_sym_inline] = ACTIONS(1428), - [anon_sym___inline] = ACTIONS(1428), - [anon_sym___inline__] = ACTIONS(1428), - [anon_sym___forceinline] = ACTIONS(1428), - [anon_sym_thread_local] = ACTIONS(1428), - [anon_sym___thread] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_constexpr] = ACTIONS(1428), - [anon_sym_volatile] = ACTIONS(1428), - [anon_sym_restrict] = ACTIONS(1428), - [anon_sym___restrict__] = ACTIONS(1428), - [anon_sym__Atomic] = ACTIONS(1428), - [anon_sym__Noreturn] = ACTIONS(1428), - [anon_sym_noreturn] = ACTIONS(1428), - [sym_primitive_type] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [anon_sym_do] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_goto] = ACTIONS(1428), - [anon_sym___try] = ACTIONS(1428), - [anon_sym___leave] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1430), - [anon_sym_sizeof] = ACTIONS(1428), - [anon_sym___alignof__] = ACTIONS(1428), - [anon_sym___alignof] = ACTIONS(1428), - [anon_sym__alignof] = ACTIONS(1428), - [anon_sym_alignof] = ACTIONS(1428), - [anon_sym__Alignof] = ACTIONS(1428), - [anon_sym_offsetof] = ACTIONS(1428), - [anon_sym__Generic] = ACTIONS(1428), - [anon_sym_asm] = ACTIONS(1428), - [anon_sym___asm__] = ACTIONS(1428), - [sym_number_literal] = ACTIONS(1430), - [anon_sym_L_SQUOTE] = ACTIONS(1430), - [anon_sym_u_SQUOTE] = ACTIONS(1430), - [anon_sym_U_SQUOTE] = ACTIONS(1430), - [anon_sym_u8_SQUOTE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1430), - [anon_sym_L_DQUOTE] = ACTIONS(1430), - [anon_sym_u_DQUOTE] = ACTIONS(1430), - [anon_sym_U_DQUOTE] = ACTIONS(1430), - [anon_sym_u8_DQUOTE] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1430), - [sym_true] = ACTIONS(1428), - [sym_false] = ACTIONS(1428), - [anon_sym_NULL] = ACTIONS(1428), - [anon_sym_nullptr] = ACTIONS(1428), + [446] = { + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym___try] = ACTIONS(1462), + [anon_sym___leave] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [435] = { + [447] = { [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), [aux_sym_preproc_def_token1] = ACTIONS(1504), @@ -64119,51 +65513,1312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [436] = { - [sym_attribute_declaration] = STATE(362), - [sym_compound_statement] = STATE(181), - [sym_attributed_statement] = STATE(181), - [sym_labeled_statement] = STATE(181), - [sym_expression_statement] = STATE(181), - [sym_if_statement] = STATE(181), - [sym_switch_statement] = STATE(181), - [sym_case_statement] = STATE(181), - [sym_while_statement] = STATE(181), - [sym_do_statement] = STATE(181), - [sym_for_statement] = STATE(181), - [sym_return_statement] = STATE(181), - [sym_break_statement] = STATE(181), - [sym_continue_statement] = STATE(181), - [sym_goto_statement] = STATE(181), - [sym_seh_try_statement] = STATE(181), - [sym_seh_leave_statement] = STATE(181), - [sym__expression] = STATE(1220), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1990), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1638), + [448] = { + [sym_attribute_declaration] = STATE(417), + [sym_compound_statement] = STATE(133), + [sym_attributed_statement] = STATE(133), + [sym_labeled_statement] = STATE(133), + [sym_expression_statement] = STATE(133), + [sym_if_statement] = STATE(133), + [sym_switch_statement] = STATE(133), + [sym_case_statement] = STATE(133), + [sym_while_statement] = STATE(133), + [sym_do_statement] = STATE(133), + [sym_for_statement] = STATE(133), + [sym_return_statement] = STATE(133), + [sym_break_statement] = STATE(133), + [sym_continue_statement] = STATE(133), + [sym_goto_statement] = STATE(133), + [sym_seh_try_statement] = STATE(133), + [sym_seh_leave_statement] = STATE(133), + [sym__expression] = STATE(1263), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2260), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(417), + [sym_identifier] = ACTIONS(1556), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(129), + [anon_sym_if] = ACTIONS(131), + [anon_sym_switch] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_default] = ACTIONS(137), + [anon_sym_while] = ACTIONS(139), + [anon_sym_do] = ACTIONS(141), + [anon_sym_for] = ACTIONS(143), + [anon_sym_return] = ACTIONS(145), + [anon_sym_break] = ACTIONS(147), + [anon_sym_continue] = ACTIONS(149), + [anon_sym_goto] = ACTIONS(151), + [anon_sym___try] = ACTIONS(153), + [anon_sym___leave] = ACTIONS(155), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [449] = { + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token2] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym___try] = ACTIONS(1486), + [anon_sym___leave] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [450] = { + [sym_attribute_declaration] = STATE(450), + [sym_compound_statement] = STATE(349), + [sym_attributed_statement] = STATE(349), + [sym_labeled_statement] = STATE(349), + [sym_expression_statement] = STATE(349), + [sym_if_statement] = STATE(349), + [sym_switch_statement] = STATE(349), + [sym_case_statement] = STATE(349), + [sym_while_statement] = STATE(349), + [sym_do_statement] = STATE(349), + [sym_for_statement] = STATE(349), + [sym_return_statement] = STATE(349), + [sym_break_statement] = STATE(349), + [sym_continue_statement] = STATE(349), + [sym_goto_statement] = STATE(349), + [sym_seh_try_statement] = STATE(349), + [sym_seh_leave_statement] = STATE(349), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(450), + [sym_identifier] = ACTIONS(1878), + [anon_sym_LPAREN2] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1572), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_SEMI] = ACTIONS(1661), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1578), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1744), + [anon_sym_case] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1887), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_do] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1762), + [anon_sym_break] = ACTIONS(1765), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_goto] = ACTIONS(1771), + [anon_sym___try] = ACTIONS(1896), + [anon_sym___leave] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_sizeof] = ACTIONS(1626), + [anon_sym___alignof__] = ACTIONS(1629), + [anon_sym___alignof] = ACTIONS(1629), + [anon_sym__alignof] = ACTIONS(1629), + [anon_sym_alignof] = ACTIONS(1629), + [anon_sym__Alignof] = ACTIONS(1629), + [anon_sym_offsetof] = ACTIONS(1632), + [anon_sym__Generic] = ACTIONS(1635), + [anon_sym_asm] = ACTIONS(1638), + [anon_sym___asm__] = ACTIONS(1638), + [sym_number_literal] = ACTIONS(1641), + [anon_sym_L_SQUOTE] = ACTIONS(1644), + [anon_sym_u_SQUOTE] = ACTIONS(1644), + [anon_sym_U_SQUOTE] = ACTIONS(1644), + [anon_sym_u8_SQUOTE] = ACTIONS(1644), + [anon_sym_SQUOTE] = ACTIONS(1644), + [anon_sym_L_DQUOTE] = ACTIONS(1647), + [anon_sym_u_DQUOTE] = ACTIONS(1647), + [anon_sym_U_DQUOTE] = ACTIONS(1647), + [anon_sym_u8_DQUOTE] = ACTIONS(1647), + [anon_sym_DQUOTE] = ACTIONS(1647), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [anon_sym_NULL] = ACTIONS(1653), + [anon_sym_nullptr] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + }, + [451] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_RBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [452] = { + [sym_attribute_declaration] = STATE(431), + [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_seh_try_statement] = STATE(267), + [sym_seh_leave_statement] = STATE(267), + [sym__expression] = STATE(1268), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2092), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(431), + [sym_identifier] = ACTIONS(1780), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(551), + [anon_sym_if] = ACTIONS(553), + [anon_sym_switch] = ACTIONS(555), + [anon_sym_case] = ACTIONS(557), + [anon_sym_default] = ACTIONS(559), + [anon_sym_while] = ACTIONS(561), + [anon_sym_do] = ACTIONS(563), + [anon_sym_for] = ACTIONS(565), + [anon_sym_return] = ACTIONS(567), + [anon_sym_break] = ACTIONS(569), + [anon_sym_continue] = ACTIONS(571), + [anon_sym_goto] = ACTIONS(573), + [anon_sym___try] = ACTIONS(575), + [anon_sym___leave] = ACTIONS(577), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [453] = { + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token2] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym_SEMI] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym___try] = ACTIONS(1446), + [anon_sym___leave] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), + [sym_comment] = ACTIONS(3), + }, + [454] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [455] = { + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token2] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym___try] = ACTIONS(1442), + [anon_sym___leave] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), + [sym_comment] = ACTIONS(3), + }, + [456] = { + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token2] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym___try] = ACTIONS(1438), + [anon_sym___leave] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), + [sym_comment] = ACTIONS(3), + }, + [457] = { + [sym_attribute_declaration] = STATE(410), + [sym_compound_statement] = STATE(529), + [sym_attributed_statement] = STATE(529), + [sym_labeled_statement] = STATE(529), + [sym_expression_statement] = STATE(529), + [sym_if_statement] = STATE(529), + [sym_switch_statement] = STATE(529), + [sym_case_statement] = STATE(529), + [sym_while_statement] = STATE(529), + [sym_do_statement] = STATE(529), + [sym_for_statement] = STATE(529), + [sym_return_statement] = STATE(529), + [sym_break_statement] = STATE(529), + [sym_continue_statement] = STATE(529), + [sym_goto_statement] = STATE(529), + [sym_seh_try_statement] = STATE(529), + [sym_seh_leave_statement] = STATE(529), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(41), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_switch] = ACTIONS(59), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), + [anon_sym_do] = ACTIONS(67), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(71), + [anon_sym_break] = ACTIONS(73), + [anon_sym_continue] = ACTIONS(75), + [anon_sym_goto] = ACTIONS(77), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + }, + [458] = { + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym___try] = ACTIONS(1454), + [anon_sym___leave] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), + [sym_comment] = ACTIONS(3), + }, + [459] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), + [sym_comment] = ACTIONS(3), + }, + [460] = { + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token2] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym___try] = ACTIONS(1500), + [anon_sym___leave] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), + [sym_comment] = ACTIONS(3), + }, + [461] = { + [sym_attribute_declaration] = STATE(390), + [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_seh_try_statement] = STATE(266), + [sym_seh_leave_statement] = STATE(266), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64171,22 +66826,22 @@ 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(193), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(201), - [anon_sym_if] = ACTIONS(203), - [anon_sym_switch] = ACTIONS(205), - [anon_sym_case] = ACTIONS(207), - [anon_sym_default] = ACTIONS(209), - [anon_sym_while] = ACTIONS(211), - [anon_sym_do] = ACTIONS(213), - [anon_sym_for] = ACTIONS(215), - [anon_sym_return] = ACTIONS(217), - [anon_sym_break] = ACTIONS(219), - [anon_sym_continue] = ACTIONS(221), - [anon_sym_goto] = ACTIONS(223), - [anon_sym___try] = ACTIONS(225), - [anon_sym___leave] = ACTIONS(227), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64216,148 +66871,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [437] = { - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token2] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym___try] = ACTIONS(1424), - [anon_sym___leave] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [462] = { + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token2] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym___try] = ACTIONS(1434), + [anon_sym___leave] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [438] = { - [sym_attribute_declaration] = STATE(431), - [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_seh_try_statement] = STATE(305), - [sym_seh_leave_statement] = STATE(305), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1808), + [463] = { + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token2] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym_SEMI] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym___try] = ACTIONS(1512), + [anon_sym___leave] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), + [sym_comment] = ACTIONS(3), + }, + [464] = { + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token2] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_SEMI] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym___try] = ACTIONS(1508), + [anon_sym___leave] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), + [sym_comment] = ACTIONS(3), + }, + [465] = { + [sym_attribute_declaration] = STATE(426), + [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_seh_try_statement] = STATE(368), + [sym_seh_leave_statement] = STATE(368), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64365,8 +67214,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(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -64379,8 +67228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64410,148 +67259,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [439] = { - [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___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym___try] = ACTIONS(1402), - [anon_sym___leave] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = 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), - }, - [440] = { - [sym_attribute_declaration] = STATE(431), - [sym_compound_statement] = STATE(216), - [sym_attributed_statement] = STATE(216), - [sym_labeled_statement] = STATE(216), - [sym_expression_statement] = STATE(216), - [sym_if_statement] = STATE(216), - [sym_switch_statement] = STATE(216), - [sym_case_statement] = STATE(216), - [sym_while_statement] = STATE(216), - [sym_do_statement] = STATE(216), - [sym_for_statement] = STATE(216), - [sym_return_statement] = STATE(216), - [sym_break_statement] = STATE(216), - [sym_continue_statement] = STATE(216), - [sym_goto_statement] = STATE(216), - [sym_seh_try_statement] = STATE(216), - [sym_seh_leave_statement] = STATE(216), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1808), + [466] = { + [sym_attribute_declaration] = STATE(410), + [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_seh_try_statement] = STATE(284), + [sym_seh_leave_statement] = STATE(284), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -64559,22 +67311,22 @@ 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(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(57), + [anon_sym_if] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(61), - [anon_sym_default] = ACTIONS(63), - [anon_sym_while] = ACTIONS(65), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(69), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), + [anon_sym___try] = ACTIONS(1269), + [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -64604,730 +67356,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [441] = { - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token2] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym___try] = ACTIONS(1432), - [anon_sym___leave] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - }, - [442] = { - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token2] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym___try] = ACTIONS(1436), - [anon_sym___leave] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - }, - [443] = { - [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___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym___try] = ACTIONS(1410), - [anon_sym___leave] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = 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), - }, - [444] = { - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token2] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym___try] = ACTIONS(1484), - [anon_sym___leave] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), - [sym_comment] = ACTIONS(3), - }, - [445] = { - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token2] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym___try] = ACTIONS(1444), - [anon_sym___leave] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), - [sym_comment] = ACTIONS(3), - }, - [446] = { - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token2] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym___try] = ACTIONS(1460), - [anon_sym___leave] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - }, - [447] = { - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token2] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym___try] = ACTIONS(1472), - [anon_sym___leave] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), - [sym_comment] = ACTIONS(3), - }, - [448] = { - [sym_attribute_declaration] = STATE(376), - [sym_compound_statement] = STATE(503), - [sym_attributed_statement] = STATE(503), - [sym_labeled_statement] = STATE(503), - [sym_expression_statement] = STATE(503), - [sym_if_statement] = STATE(503), - [sym_switch_statement] = STATE(503), - [sym_case_statement] = STATE(503), - [sym_while_statement] = STATE(503), - [sym_do_statement] = STATE(503), - [sym_for_statement] = STATE(503), - [sym_return_statement] = STATE(503), - [sym_break_statement] = STATE(503), - [sym_continue_statement] = STATE(503), - [sym_goto_statement] = STATE(503), - [sym_seh_try_statement] = STATE(503), - [sym_seh_leave_statement] = STATE(503), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), + [467] = { + [sym_attribute_declaration] = STATE(390), + [sym_compound_statement] = STATE(270), + [sym_attributed_statement] = STATE(271), + [sym_labeled_statement] = STATE(275), + [sym_expression_statement] = STATE(281), + [sym_if_statement] = STATE(282), + [sym_switch_statement] = STATE(283), + [sym_case_statement] = STATE(289), + [sym_while_statement] = STATE(295), + [sym_do_statement] = STATE(297), + [sym_for_statement] = STATE(300), + [sym_return_statement] = STATE(301), + [sym_break_statement] = STATE(302), + [sym_continue_statement] = STATE(303), + [sym_goto_statement] = STATE(304), + [sym_seh_try_statement] = STATE(305), + [sym_seh_leave_statement] = STATE(306), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(390), + [sym_identifier] = ACTIONS(1656), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65336,20 +67409,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), + [anon_sym_LBRACE] = ACTIONS(499), + [anon_sym_if] = ACTIONS(503), + [anon_sym_switch] = ACTIONS(505), + [anon_sym_case] = ACTIONS(507), + [anon_sym_default] = ACTIONS(509), + [anon_sym_while] = ACTIONS(511), + [anon_sym_do] = ACTIONS(513), + [anon_sym_for] = ACTIONS(515), + [anon_sym_return] = ACTIONS(517), + [anon_sym_break] = ACTIONS(519), + [anon_sym_continue] = ACTIONS(521), + [anon_sym_goto] = ACTIONS(523), + [anon_sym___try] = ACTIONS(525), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -65380,51 +67453,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [449] = { - [sym_attribute_declaration] = STATE(376), - [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_seh_try_statement] = STATE(282), - [sym_seh_leave_statement] = STATE(282), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), + [468] = { + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token2] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym___try] = ACTIONS(1466), + [anon_sym___leave] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), + [sym_comment] = ACTIONS(3), + }, + [469] = { + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym_SEMI] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_RBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym___try] = ACTIONS(1450), + [anon_sym___leave] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [470] = { + [sym_attribute_declaration] = STATE(410), + [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_seh_try_statement] = STATE(307), + [sym_seh_leave_statement] = STATE(307), + [sym__expression] = STATE(1243), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2110), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(410), + [sym_identifier] = ACTIONS(1550), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65433,20 +67700,20 @@ 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(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), + [anon_sym_if] = ACTIONS(1263), [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), + [anon_sym_case] = ACTIONS(1552), + [anon_sym_default] = ACTIONS(1554), + [anon_sym_while] = ACTIONS(1265), [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), + [anon_sym_for] = ACTIONS(1267), [anon_sym_return] = ACTIONS(71), [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), + [anon_sym___try] = ACTIONS(1269), [anon_sym___leave] = ACTIONS(527), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), @@ -65477,148 +67744,633 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [450] = { - [sym_attribute_declaration] = STATE(376), - [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_seh_try_statement] = STATE(305), - [sym_seh_leave_statement] = STATE(305), - [sym__expression] = STATE(1225), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2035), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1630), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_if] = ACTIONS(1278), - [anon_sym_switch] = ACTIONS(59), - [anon_sym_case] = ACTIONS(1634), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_while] = ACTIONS(1280), - [anon_sym_do] = ACTIONS(67), - [anon_sym_for] = ACTIONS(1282), - [anon_sym_return] = ACTIONS(71), - [anon_sym_break] = ACTIONS(73), - [anon_sym_continue] = ACTIONS(75), - [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1284), - [anon_sym___leave] = ACTIONS(527), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), + [471] = { + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1418), + [aux_sym_preproc_def_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token1] = ACTIONS(1418), + [aux_sym_preproc_if_token2] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1418), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1418), + [sym_preproc_directive] = ACTIONS(1418), + [anon_sym_LPAREN2] = ACTIONS(1420), + [anon_sym_BANG] = ACTIONS(1420), + [anon_sym_TILDE] = ACTIONS(1420), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_AMP] = ACTIONS(1420), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym___extension__] = ACTIONS(1418), + [anon_sym_typedef] = ACTIONS(1418), + [anon_sym_extern] = ACTIONS(1418), + [anon_sym___attribute__] = ACTIONS(1418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), + [anon_sym___declspec] = ACTIONS(1418), + [anon_sym___cdecl] = ACTIONS(1418), + [anon_sym___clrcall] = ACTIONS(1418), + [anon_sym___stdcall] = ACTIONS(1418), + [anon_sym___fastcall] = ACTIONS(1418), + [anon_sym___thiscall] = ACTIONS(1418), + [anon_sym___vectorcall] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_signed] = ACTIONS(1418), + [anon_sym_unsigned] = ACTIONS(1418), + [anon_sym_long] = ACTIONS(1418), + [anon_sym_short] = ACTIONS(1418), + [anon_sym_static] = ACTIONS(1418), + [anon_sym_auto] = ACTIONS(1418), + [anon_sym_register] = ACTIONS(1418), + [anon_sym_inline] = ACTIONS(1418), + [anon_sym___inline] = ACTIONS(1418), + [anon_sym___inline__] = ACTIONS(1418), + [anon_sym___forceinline] = ACTIONS(1418), + [anon_sym_thread_local] = ACTIONS(1418), + [anon_sym___thread] = ACTIONS(1418), + [anon_sym_const] = ACTIONS(1418), + [anon_sym_constexpr] = ACTIONS(1418), + [anon_sym_volatile] = ACTIONS(1418), + [anon_sym_restrict] = ACTIONS(1418), + [anon_sym___restrict__] = ACTIONS(1418), + [anon_sym__Atomic] = ACTIONS(1418), + [anon_sym__Noreturn] = ACTIONS(1418), + [anon_sym_noreturn] = ACTIONS(1418), + [sym_primitive_type] = ACTIONS(1418), + [anon_sym_enum] = ACTIONS(1418), + [anon_sym_struct] = ACTIONS(1418), + [anon_sym_union] = ACTIONS(1418), + [anon_sym_if] = ACTIONS(1418), + [anon_sym_switch] = ACTIONS(1418), + [anon_sym_case] = ACTIONS(1418), + [anon_sym_default] = ACTIONS(1418), + [anon_sym_while] = ACTIONS(1418), + [anon_sym_do] = ACTIONS(1418), + [anon_sym_for] = ACTIONS(1418), + [anon_sym_return] = ACTIONS(1418), + [anon_sym_break] = ACTIONS(1418), + [anon_sym_continue] = ACTIONS(1418), + [anon_sym_goto] = ACTIONS(1418), + [anon_sym___try] = ACTIONS(1418), + [anon_sym___leave] = ACTIONS(1418), + [anon_sym_DASH_DASH] = ACTIONS(1420), + [anon_sym_PLUS_PLUS] = ACTIONS(1420), + [anon_sym_sizeof] = ACTIONS(1418), + [anon_sym___alignof__] = ACTIONS(1418), + [anon_sym___alignof] = ACTIONS(1418), + [anon_sym__alignof] = ACTIONS(1418), + [anon_sym_alignof] = ACTIONS(1418), + [anon_sym__Alignof] = 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), + }, + [472] = { + [sym_identifier] = ACTIONS(1426), + [aux_sym_preproc_include_token1] = ACTIONS(1426), + [aux_sym_preproc_def_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token1] = ACTIONS(1426), + [aux_sym_preproc_if_token2] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1426), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1426), + [sym_preproc_directive] = ACTIONS(1426), + [anon_sym_LPAREN2] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = 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), }, - [451] = { - [sym_attribute_declaration] = STATE(431), - [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_seh_try_statement] = STATE(282), - [sym_seh_leave_statement] = STATE(282), - [sym__expression] = STATE(1226), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2094), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(431), - [sym_identifier] = ACTIONS(1808), + [473] = { + [sym_identifier] = ACTIONS(1422), + [aux_sym_preproc_include_token1] = ACTIONS(1422), + [aux_sym_preproc_def_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token1] = ACTIONS(1422), + [aux_sym_preproc_if_token2] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1422), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1422), + [sym_preproc_directive] = ACTIONS(1422), + [anon_sym_LPAREN2] = ACTIONS(1424), + [anon_sym_BANG] = ACTIONS(1424), + [anon_sym_TILDE] = ACTIONS(1424), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1424), + [anon_sym_AMP] = ACTIONS(1424), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = 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), + }, + [474] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [475] = { + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token2] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym_SEMI] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym___try] = ACTIONS(1458), + [anon_sym___leave] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), + [sym_comment] = ACTIONS(3), + }, + [476] = { + [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___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym___try] = ACTIONS(1426), + [anon_sym___leave] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = 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), + }, + [477] = { + [sym_attribute_declaration] = STATE(426), + [sym_compound_statement] = STATE(370), + [sym_attributed_statement] = STATE(375), + [sym_labeled_statement] = STATE(377), + [sym_expression_statement] = STATE(273), + [sym_if_statement] = STATE(263), + [sym_switch_statement] = STATE(354), + [sym_case_statement] = STATE(352), + [sym_while_statement] = STATE(351), + [sym_do_statement] = STATE(347), + [sym_for_statement] = STATE(345), + [sym_return_statement] = STATE(343), + [sym_break_statement] = STATE(336), + [sym_continue_statement] = STATE(334), + [sym_goto_statement] = STATE(332), + [sym_seh_try_statement] = STATE(317), + [sym_seh_leave_statement] = STATE(286), + [sym__expression] = STATE(1284), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2035), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_attributed_declarator_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -65626,8 +68378,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(1099), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), + [anon_sym_SEMI] = ACTIONS(1247), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1548), [anon_sym_LBRACE] = ACTIONS(41), [anon_sym_if] = ACTIONS(57), [anon_sym_switch] = ACTIONS(59), @@ -65640,105 +68392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(73), [anon_sym_continue] = ACTIONS(75), [anon_sym_goto] = ACTIONS(77), - [anon_sym___try] = ACTIONS(1101), - [anon_sym___leave] = ACTIONS(1103), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_sizeof] = ACTIONS(81), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [452] = { - [sym_attribute_declaration] = STATE(424), - [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_seh_try_statement] = STATE(280), - [sym_seh_leave_statement] = STATE(280), - [sym__expression] = STATE(1217), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(1935), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_attributed_declarator_repeat1] = STATE(424), - [sym_identifier] = ACTIONS(1810), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_STAR] = ACTIONS(25), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1632), - [anon_sym_LBRACE] = ACTIONS(553), - [anon_sym_if] = ACTIONS(555), - [anon_sym_switch] = ACTIONS(557), - [anon_sym_case] = ACTIONS(559), - [anon_sym_default] = ACTIONS(561), - [anon_sym_while] = ACTIONS(563), - [anon_sym_do] = ACTIONS(565), - [anon_sym_for] = ACTIONS(567), - [anon_sym_return] = ACTIONS(569), - [anon_sym_break] = ACTIONS(571), - [anon_sym_continue] = ACTIONS(573), - [anon_sym_goto] = ACTIONS(575), - [anon_sym___try] = ACTIONS(577), - [anon_sym___leave] = ACTIONS(579), + [anon_sym___try] = ACTIONS(1249), + [anon_sym___leave] = ACTIONS(1251), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -65768,362 +68423,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [453] = { - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token2] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym___try] = ACTIONS(1480), - [anon_sym___leave] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [478] = { + [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___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym___try] = ACTIONS(1422), + [anon_sym___leave] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = 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), }, - [454] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1500), - [aux_sym_preproc_include_token1] = ACTIONS(1500), - [aux_sym_preproc_def_token1] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1502), - [aux_sym_preproc_if_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), - [sym_preproc_directive] = ACTIONS(1500), - [anon_sym_LPAREN2] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1502), - [anon_sym___extension__] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym___attribute__] = ACTIONS(1500), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), - [anon_sym___declspec] = ACTIONS(1500), - [anon_sym___cdecl] = ACTIONS(1500), - [anon_sym___clrcall] = ACTIONS(1500), - [anon_sym___stdcall] = ACTIONS(1500), - [anon_sym___fastcall] = ACTIONS(1500), - [anon_sym___thiscall] = ACTIONS(1500), - [anon_sym___vectorcall] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_signed] = ACTIONS(1500), - [anon_sym_unsigned] = ACTIONS(1500), - [anon_sym_long] = ACTIONS(1500), - [anon_sym_short] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_auto] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym___inline] = ACTIONS(1500), - [anon_sym___inline__] = ACTIONS(1500), - [anon_sym___forceinline] = ACTIONS(1500), - [anon_sym_thread_local] = ACTIONS(1500), - [anon_sym___thread] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [anon_sym_constexpr] = ACTIONS(1500), - [anon_sym_volatile] = ACTIONS(1500), - [anon_sym_restrict] = ACTIONS(1500), - [anon_sym___restrict__] = ACTIONS(1500), - [anon_sym__Atomic] = ACTIONS(1500), - [anon_sym__Noreturn] = ACTIONS(1500), - [anon_sym_noreturn] = ACTIONS(1500), - [sym_primitive_type] = ACTIONS(1500), - [anon_sym_enum] = ACTIONS(1500), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_union] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_goto] = ACTIONS(1500), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_sizeof] = ACTIONS(1500), - [anon_sym___alignof__] = ACTIONS(1500), - [anon_sym___alignof] = ACTIONS(1500), - [anon_sym__alignof] = ACTIONS(1500), - [anon_sym_alignof] = ACTIONS(1500), - [anon_sym__Alignof] = ACTIONS(1500), - [anon_sym_offsetof] = ACTIONS(1500), - [anon_sym__Generic] = ACTIONS(1500), - [anon_sym_asm] = ACTIONS(1500), - [anon_sym___asm__] = ACTIONS(1500), - [sym_number_literal] = ACTIONS(1502), - [anon_sym_L_SQUOTE] = ACTIONS(1502), - [anon_sym_u_SQUOTE] = ACTIONS(1502), - [anon_sym_U_SQUOTE] = ACTIONS(1502), - [anon_sym_u8_SQUOTE] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_L_DQUOTE] = ACTIONS(1502), - [anon_sym_u_DQUOTE] = ACTIONS(1502), - [anon_sym_U_DQUOTE] = ACTIONS(1502), - [anon_sym_u8_DQUOTE] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym_true] = ACTIONS(1500), - [sym_false] = ACTIONS(1500), - [anon_sym_NULL] = ACTIONS(1500), - [anon_sym_nullptr] = ACTIONS(1500), + [479] = { + [ts_builtin_sym_end] = ACTIONS(1484), + [sym_identifier] = ACTIONS(1482), + [aux_sym_preproc_include_token1] = ACTIONS(1482), + [aux_sym_preproc_def_token1] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(1484), + [aux_sym_preproc_if_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1482), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1482), + [sym_preproc_directive] = ACTIONS(1482), + [anon_sym_LPAREN2] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym___extension__] = ACTIONS(1482), + [anon_sym_typedef] = ACTIONS(1482), + [anon_sym_extern] = ACTIONS(1482), + [anon_sym___attribute__] = ACTIONS(1482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1484), + [anon_sym___declspec] = ACTIONS(1482), + [anon_sym___cdecl] = ACTIONS(1482), + [anon_sym___clrcall] = ACTIONS(1482), + [anon_sym___stdcall] = ACTIONS(1482), + [anon_sym___fastcall] = ACTIONS(1482), + [anon_sym___thiscall] = ACTIONS(1482), + [anon_sym___vectorcall] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_signed] = ACTIONS(1482), + [anon_sym_unsigned] = ACTIONS(1482), + [anon_sym_long] = ACTIONS(1482), + [anon_sym_short] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_auto] = ACTIONS(1482), + [anon_sym_register] = ACTIONS(1482), + [anon_sym_inline] = ACTIONS(1482), + [anon_sym___inline] = ACTIONS(1482), + [anon_sym___inline__] = ACTIONS(1482), + [anon_sym___forceinline] = ACTIONS(1482), + [anon_sym_thread_local] = ACTIONS(1482), + [anon_sym___thread] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_constexpr] = ACTIONS(1482), + [anon_sym_volatile] = ACTIONS(1482), + [anon_sym_restrict] = ACTIONS(1482), + [anon_sym___restrict__] = ACTIONS(1482), + [anon_sym__Atomic] = ACTIONS(1482), + [anon_sym__Noreturn] = ACTIONS(1482), + [anon_sym_noreturn] = ACTIONS(1482), + [sym_primitive_type] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_switch] = ACTIONS(1482), + [anon_sym_case] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [anon_sym_do] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_goto] = ACTIONS(1482), + [anon_sym_DASH_DASH] = ACTIONS(1484), + [anon_sym_PLUS_PLUS] = ACTIONS(1484), + [anon_sym_sizeof] = ACTIONS(1482), + [anon_sym___alignof__] = ACTIONS(1482), + [anon_sym___alignof] = ACTIONS(1482), + [anon_sym__alignof] = ACTIONS(1482), + [anon_sym_alignof] = ACTIONS(1482), + [anon_sym__Alignof] = ACTIONS(1482), + [anon_sym_offsetof] = ACTIONS(1482), + [anon_sym__Generic] = ACTIONS(1482), + [anon_sym_asm] = ACTIONS(1482), + [anon_sym___asm__] = ACTIONS(1482), + [sym_number_literal] = ACTIONS(1484), + [anon_sym_L_SQUOTE] = ACTIONS(1484), + [anon_sym_u_SQUOTE] = ACTIONS(1484), + [anon_sym_U_SQUOTE] = ACTIONS(1484), + [anon_sym_u8_SQUOTE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1484), + [anon_sym_L_DQUOTE] = ACTIONS(1484), + [anon_sym_u_DQUOTE] = ACTIONS(1484), + [anon_sym_U_DQUOTE] = ACTIONS(1484), + [anon_sym_u8_DQUOTE] = ACTIONS(1484), + [anon_sym_DQUOTE] = ACTIONS(1484), + [sym_true] = ACTIONS(1482), + [sym_false] = ACTIONS(1482), + [anon_sym_NULL] = ACTIONS(1482), + [anon_sym_nullptr] = ACTIONS(1482), [sym_comment] = ACTIONS(3), }, - [455] = { - [ts_builtin_sym_end] = ACTIONS(1450), - [sym_identifier] = ACTIONS(1448), - [aux_sym_preproc_include_token1] = ACTIONS(1448), - [aux_sym_preproc_def_token1] = ACTIONS(1448), - [anon_sym_COMMA] = ACTIONS(1450), - [aux_sym_preproc_if_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1448), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1448), - [sym_preproc_directive] = ACTIONS(1448), - [anon_sym_LPAREN2] = ACTIONS(1450), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1450), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym___extension__] = ACTIONS(1448), - [anon_sym_typedef] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym___attribute__] = ACTIONS(1448), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1450), - [anon_sym___declspec] = ACTIONS(1448), - [anon_sym___cdecl] = ACTIONS(1448), - [anon_sym___clrcall] = ACTIONS(1448), - [anon_sym___stdcall] = ACTIONS(1448), - [anon_sym___fastcall] = ACTIONS(1448), - [anon_sym___thiscall] = ACTIONS(1448), - [anon_sym___vectorcall] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1450), - [anon_sym_signed] = ACTIONS(1448), - [anon_sym_unsigned] = ACTIONS(1448), - [anon_sym_long] = ACTIONS(1448), - [anon_sym_short] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_auto] = ACTIONS(1448), - [anon_sym_register] = ACTIONS(1448), - [anon_sym_inline] = ACTIONS(1448), - [anon_sym___inline] = ACTIONS(1448), - [anon_sym___inline__] = ACTIONS(1448), - [anon_sym___forceinline] = ACTIONS(1448), - [anon_sym_thread_local] = ACTIONS(1448), - [anon_sym___thread] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_constexpr] = ACTIONS(1448), - [anon_sym_volatile] = ACTIONS(1448), - [anon_sym_restrict] = ACTIONS(1448), - [anon_sym___restrict__] = ACTIONS(1448), - [anon_sym__Atomic] = ACTIONS(1448), - [anon_sym__Noreturn] = ACTIONS(1448), - [anon_sym_noreturn] = ACTIONS(1448), - [sym_primitive_type] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_do] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_goto] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_sizeof] = ACTIONS(1448), - [anon_sym___alignof__] = ACTIONS(1448), - [anon_sym___alignof] = ACTIONS(1448), - [anon_sym__alignof] = ACTIONS(1448), - [anon_sym_alignof] = ACTIONS(1448), - [anon_sym__Alignof] = ACTIONS(1448), - [anon_sym_offsetof] = ACTIONS(1448), - [anon_sym__Generic] = ACTIONS(1448), - [anon_sym_asm] = ACTIONS(1448), - [anon_sym___asm__] = ACTIONS(1448), - [sym_number_literal] = ACTIONS(1450), - [anon_sym_L_SQUOTE] = ACTIONS(1450), - [anon_sym_u_SQUOTE] = ACTIONS(1450), - [anon_sym_U_SQUOTE] = ACTIONS(1450), - [anon_sym_u8_SQUOTE] = ACTIONS(1450), - [anon_sym_SQUOTE] = ACTIONS(1450), - [anon_sym_L_DQUOTE] = ACTIONS(1450), - [anon_sym_u_DQUOTE] = ACTIONS(1450), - [anon_sym_U_DQUOTE] = ACTIONS(1450), - [anon_sym_u8_DQUOTE] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(1450), - [sym_true] = ACTIONS(1448), - [sym_false] = ACTIONS(1448), - [anon_sym_NULL] = ACTIONS(1448), - [anon_sym_nullptr] = ACTIONS(1448), + [480] = { + [ts_builtin_sym_end] = ACTIONS(1476), + [sym_identifier] = ACTIONS(1474), + [aux_sym_preproc_include_token1] = ACTIONS(1474), + [aux_sym_preproc_def_token1] = ACTIONS(1474), + [anon_sym_COMMA] = ACTIONS(1476), + [aux_sym_preproc_if_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1474), + [sym_preproc_directive] = ACTIONS(1474), + [anon_sym_LPAREN2] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym___extension__] = ACTIONS(1474), + [anon_sym_typedef] = ACTIONS(1474), + [anon_sym_extern] = ACTIONS(1474), + [anon_sym___attribute__] = ACTIONS(1474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1476), + [anon_sym___declspec] = ACTIONS(1474), + [anon_sym___cdecl] = ACTIONS(1474), + [anon_sym___clrcall] = ACTIONS(1474), + [anon_sym___stdcall] = ACTIONS(1474), + [anon_sym___fastcall] = ACTIONS(1474), + [anon_sym___thiscall] = ACTIONS(1474), + [anon_sym___vectorcall] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_signed] = ACTIONS(1474), + [anon_sym_unsigned] = ACTIONS(1474), + [anon_sym_long] = ACTIONS(1474), + [anon_sym_short] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_auto] = ACTIONS(1474), + [anon_sym_register] = ACTIONS(1474), + [anon_sym_inline] = ACTIONS(1474), + [anon_sym___inline] = ACTIONS(1474), + [anon_sym___inline__] = ACTIONS(1474), + [anon_sym___forceinline] = ACTIONS(1474), + [anon_sym_thread_local] = ACTIONS(1474), + [anon_sym___thread] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_constexpr] = ACTIONS(1474), + [anon_sym_volatile] = ACTIONS(1474), + [anon_sym_restrict] = ACTIONS(1474), + [anon_sym___restrict__] = ACTIONS(1474), + [anon_sym__Atomic] = ACTIONS(1474), + [anon_sym__Noreturn] = ACTIONS(1474), + [anon_sym_noreturn] = ACTIONS(1474), + [sym_primitive_type] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_switch] = ACTIONS(1474), + [anon_sym_case] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [anon_sym_do] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_goto] = ACTIONS(1474), + [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PLUS_PLUS] = ACTIONS(1476), + [anon_sym_sizeof] = ACTIONS(1474), + [anon_sym___alignof__] = ACTIONS(1474), + [anon_sym___alignof] = ACTIONS(1474), + [anon_sym__alignof] = ACTIONS(1474), + [anon_sym_alignof] = ACTIONS(1474), + [anon_sym__Alignof] = ACTIONS(1474), + [anon_sym_offsetof] = ACTIONS(1474), + [anon_sym__Generic] = ACTIONS(1474), + [anon_sym_asm] = ACTIONS(1474), + [anon_sym___asm__] = ACTIONS(1474), + [sym_number_literal] = ACTIONS(1476), + [anon_sym_L_SQUOTE] = ACTIONS(1476), + [anon_sym_u_SQUOTE] = ACTIONS(1476), + [anon_sym_U_SQUOTE] = ACTIONS(1476), + [anon_sym_u8_SQUOTE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1476), + [anon_sym_L_DQUOTE] = ACTIONS(1476), + [anon_sym_u_DQUOTE] = ACTIONS(1476), + [anon_sym_U_DQUOTE] = ACTIONS(1476), + [anon_sym_u8_DQUOTE] = ACTIONS(1476), + [anon_sym_DQUOTE] = ACTIONS(1476), + [sym_true] = ACTIONS(1474), + [sym_false] = ACTIONS(1474), + [anon_sym_NULL] = ACTIONS(1474), + [anon_sym_nullptr] = ACTIONS(1474), [sym_comment] = ACTIONS(3), }, - [456] = { - [sym__expression] = STATE(991), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(814), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(814), - [sym_call_expression] = STATE(814), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(814), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(814), - [sym_initializer_list] = STATE(813), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_identifier] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1887), - [anon_sym_TILDE] = ACTIONS(1889), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1512), - [anon_sym_EQ] = ACTIONS(1518), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_STAR_EQ] = ACTIONS(1512), - [anon_sym_SLASH_EQ] = ACTIONS(1512), - [anon_sym_PERCENT_EQ] = ACTIONS(1512), - [anon_sym_PLUS_EQ] = ACTIONS(1512), - [anon_sym_DASH_EQ] = ACTIONS(1512), - [anon_sym_LT_LT_EQ] = ACTIONS(1512), - [anon_sym_GT_GT_EQ] = ACTIONS(1512), - [anon_sym_AMP_EQ] = ACTIONS(1512), - [anon_sym_CARET_EQ] = ACTIONS(1512), - [anon_sym_PIPE_EQ] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1891), + [481] = { + [sym__expression] = STATE(1013), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(843), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(843), + [sym_call_expression] = STATE(843), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(843), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(843), + [sym_initializer_list] = STATE(827), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_identifier] = ACTIONS(1532), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1520), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1520), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1520), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1520), + [anon_sym_GT_GT] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_EQ] = ACTIONS(1520), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_STAR_EQ] = ACTIONS(1522), + [anon_sym_SLASH_EQ] = ACTIONS(1522), + [anon_sym_PERCENT_EQ] = ACTIONS(1522), + [anon_sym_PLUS_EQ] = ACTIONS(1522), + [anon_sym_DASH_EQ] = ACTIONS(1522), + [anon_sym_LT_LT_EQ] = ACTIONS(1522), + [anon_sym_GT_GT_EQ] = ACTIONS(1522), + [anon_sym_AMP_EQ] = ACTIONS(1522), + [anon_sym_CARET_EQ] = ACTIONS(1522), + [anon_sym_PIPE_EQ] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1903), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -66133,8 +68788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -66152,665 +68807,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [457] = { - [ts_builtin_sym_end] = ACTIONS(1454), - [sym_identifier] = ACTIONS(1452), - [aux_sym_preproc_include_token1] = ACTIONS(1452), - [aux_sym_preproc_def_token1] = ACTIONS(1452), - [aux_sym_preproc_if_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1452), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1452), - [sym_preproc_directive] = ACTIONS(1452), - [anon_sym_LPAREN2] = ACTIONS(1454), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1452), - [anon_sym_PLUS] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1454), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym___extension__] = ACTIONS(1452), - [anon_sym_typedef] = ACTIONS(1452), - [anon_sym_extern] = ACTIONS(1452), - [anon_sym___attribute__] = ACTIONS(1452), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1454), - [anon_sym___declspec] = ACTIONS(1452), - [anon_sym___cdecl] = ACTIONS(1452), - [anon_sym___clrcall] = ACTIONS(1452), - [anon_sym___stdcall] = ACTIONS(1452), - [anon_sym___fastcall] = ACTIONS(1452), - [anon_sym___thiscall] = ACTIONS(1452), - [anon_sym___vectorcall] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_signed] = ACTIONS(1452), - [anon_sym_unsigned] = ACTIONS(1452), - [anon_sym_long] = ACTIONS(1452), - [anon_sym_short] = ACTIONS(1452), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_auto] = ACTIONS(1452), - [anon_sym_register] = ACTIONS(1452), - [anon_sym_inline] = ACTIONS(1452), - [anon_sym___inline] = ACTIONS(1452), - [anon_sym___inline__] = ACTIONS(1452), - [anon_sym___forceinline] = ACTIONS(1452), - [anon_sym_thread_local] = ACTIONS(1452), - [anon_sym___thread] = ACTIONS(1452), - [anon_sym_const] = ACTIONS(1452), - [anon_sym_constexpr] = ACTIONS(1452), - [anon_sym_volatile] = ACTIONS(1452), - [anon_sym_restrict] = ACTIONS(1452), - [anon_sym___restrict__] = ACTIONS(1452), - [anon_sym__Atomic] = ACTIONS(1452), - [anon_sym__Noreturn] = ACTIONS(1452), - [anon_sym_noreturn] = ACTIONS(1452), - [sym_primitive_type] = ACTIONS(1452), - [anon_sym_enum] = ACTIONS(1452), - [anon_sym_struct] = ACTIONS(1452), - [anon_sym_union] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1452), - [anon_sym_default] = ACTIONS(1452), - [anon_sym_while] = ACTIONS(1452), - [anon_sym_do] = ACTIONS(1452), - [anon_sym_for] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1452), - [anon_sym_break] = ACTIONS(1452), - [anon_sym_continue] = ACTIONS(1452), - [anon_sym_goto] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1454), - [anon_sym_sizeof] = ACTIONS(1452), - [anon_sym___alignof__] = ACTIONS(1452), - [anon_sym___alignof] = ACTIONS(1452), - [anon_sym__alignof] = ACTIONS(1452), - [anon_sym_alignof] = ACTIONS(1452), - [anon_sym__Alignof] = ACTIONS(1452), - [anon_sym_offsetof] = ACTIONS(1452), - [anon_sym__Generic] = ACTIONS(1452), - [anon_sym_asm] = ACTIONS(1452), - [anon_sym___asm__] = ACTIONS(1452), - [sym_number_literal] = ACTIONS(1454), - [anon_sym_L_SQUOTE] = ACTIONS(1454), - [anon_sym_u_SQUOTE] = ACTIONS(1454), - [anon_sym_U_SQUOTE] = ACTIONS(1454), - [anon_sym_u8_SQUOTE] = ACTIONS(1454), - [anon_sym_SQUOTE] = ACTIONS(1454), - [anon_sym_L_DQUOTE] = ACTIONS(1454), - [anon_sym_u_DQUOTE] = ACTIONS(1454), - [anon_sym_U_DQUOTE] = ACTIONS(1454), - [anon_sym_u8_DQUOTE] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1454), - [sym_true] = ACTIONS(1452), - [sym_false] = ACTIONS(1452), - [anon_sym_NULL] = ACTIONS(1452), - [anon_sym_nullptr] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - }, - [458] = { - [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___extension__] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym___attribute__] = ACTIONS(1410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1412), - [anon_sym___declspec] = ACTIONS(1410), - [anon_sym___cdecl] = ACTIONS(1410), - [anon_sym___clrcall] = ACTIONS(1410), - [anon_sym___stdcall] = ACTIONS(1410), - [anon_sym___fastcall] = ACTIONS(1410), - [anon_sym___thiscall] = ACTIONS(1410), - [anon_sym___vectorcall] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_signed] = ACTIONS(1410), - [anon_sym_unsigned] = ACTIONS(1410), - [anon_sym_long] = ACTIONS(1410), - [anon_sym_short] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_auto] = ACTIONS(1410), - [anon_sym_register] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym___inline] = ACTIONS(1410), - [anon_sym___inline__] = ACTIONS(1410), - [anon_sym___forceinline] = ACTIONS(1410), - [anon_sym_thread_local] = ACTIONS(1410), - [anon_sym___thread] = ACTIONS(1410), - [anon_sym_const] = ACTIONS(1410), - [anon_sym_constexpr] = ACTIONS(1410), - [anon_sym_volatile] = ACTIONS(1410), - [anon_sym_restrict] = ACTIONS(1410), - [anon_sym___restrict__] = ACTIONS(1410), - [anon_sym__Atomic] = ACTIONS(1410), - [anon_sym__Noreturn] = ACTIONS(1410), - [anon_sym_noreturn] = ACTIONS(1410), - [sym_primitive_type] = ACTIONS(1410), - [anon_sym_enum] = ACTIONS(1410), - [anon_sym_struct] = ACTIONS(1410), - [anon_sym_union] = ACTIONS(1410), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_while] = ACTIONS(1410), - [anon_sym_do] = ACTIONS(1410), - [anon_sym_for] = ACTIONS(1410), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_goto] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_sizeof] = ACTIONS(1410), - [anon_sym___alignof__] = ACTIONS(1410), - [anon_sym___alignof] = ACTIONS(1410), - [anon_sym__alignof] = ACTIONS(1410), - [anon_sym_alignof] = ACTIONS(1410), - [anon_sym__Alignof] = 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), - }, - [459] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1414), - [aux_sym_preproc_include_token1] = ACTIONS(1414), - [aux_sym_preproc_def_token1] = ACTIONS(1414), - [aux_sym_preproc_if_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), - [sym_preproc_directive] = ACTIONS(1414), - [anon_sym_LPAREN2] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym___extension__] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym___attribute__] = ACTIONS(1414), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), - [anon_sym___declspec] = ACTIONS(1414), - [anon_sym___cdecl] = ACTIONS(1414), - [anon_sym___clrcall] = ACTIONS(1414), - [anon_sym___stdcall] = ACTIONS(1414), - [anon_sym___fastcall] = ACTIONS(1414), - [anon_sym___thiscall] = ACTIONS(1414), - [anon_sym___vectorcall] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_signed] = ACTIONS(1414), - [anon_sym_unsigned] = ACTIONS(1414), - [anon_sym_long] = ACTIONS(1414), - [anon_sym_short] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_auto] = ACTIONS(1414), - [anon_sym_register] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym___inline] = ACTIONS(1414), - [anon_sym___inline__] = ACTIONS(1414), - [anon_sym___forceinline] = ACTIONS(1414), - [anon_sym_thread_local] = ACTIONS(1414), - [anon_sym___thread] = ACTIONS(1414), - [anon_sym_const] = ACTIONS(1414), - [anon_sym_constexpr] = ACTIONS(1414), - [anon_sym_volatile] = ACTIONS(1414), - [anon_sym_restrict] = ACTIONS(1414), - [anon_sym___restrict__] = ACTIONS(1414), - [anon_sym__Atomic] = ACTIONS(1414), - [anon_sym__Noreturn] = ACTIONS(1414), - [anon_sym_noreturn] = ACTIONS(1414), - [sym_primitive_type] = ACTIONS(1414), - [anon_sym_enum] = ACTIONS(1414), - [anon_sym_struct] = ACTIONS(1414), - [anon_sym_union] = ACTIONS(1414), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_while] = ACTIONS(1414), - [anon_sym_do] = ACTIONS(1414), - [anon_sym_for] = ACTIONS(1414), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_goto] = ACTIONS(1414), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_sizeof] = ACTIONS(1414), - [anon_sym___alignof__] = ACTIONS(1414), - [anon_sym___alignof] = ACTIONS(1414), - [anon_sym__alignof] = ACTIONS(1414), - [anon_sym_alignof] = ACTIONS(1414), - [anon_sym__Alignof] = 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), + [482] = { + [ts_builtin_sym_end] = ACTIONS(1436), + [sym_identifier] = ACTIONS(1434), + [aux_sym_preproc_include_token1] = ACTIONS(1434), + [aux_sym_preproc_def_token1] = ACTIONS(1434), + [aux_sym_preproc_if_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1434), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1434), + [sym_preproc_directive] = ACTIONS(1434), + [anon_sym_LPAREN2] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1434), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1434), + [anon_sym_typedef] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym___attribute__] = ACTIONS(1434), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1436), + [anon_sym___declspec] = ACTIONS(1434), + [anon_sym___cdecl] = ACTIONS(1434), + [anon_sym___clrcall] = ACTIONS(1434), + [anon_sym___stdcall] = ACTIONS(1434), + [anon_sym___fastcall] = ACTIONS(1434), + [anon_sym___thiscall] = ACTIONS(1434), + [anon_sym___vectorcall] = ACTIONS(1434), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_signed] = ACTIONS(1434), + [anon_sym_unsigned] = ACTIONS(1434), + [anon_sym_long] = ACTIONS(1434), + [anon_sym_short] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_auto] = ACTIONS(1434), + [anon_sym_register] = ACTIONS(1434), + [anon_sym_inline] = ACTIONS(1434), + [anon_sym___inline] = ACTIONS(1434), + [anon_sym___inline__] = ACTIONS(1434), + [anon_sym___forceinline] = ACTIONS(1434), + [anon_sym_thread_local] = ACTIONS(1434), + [anon_sym___thread] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_constexpr] = ACTIONS(1434), + [anon_sym_volatile] = ACTIONS(1434), + [anon_sym_restrict] = ACTIONS(1434), + [anon_sym___restrict__] = ACTIONS(1434), + [anon_sym__Atomic] = ACTIONS(1434), + [anon_sym__Noreturn] = ACTIONS(1434), + [anon_sym_noreturn] = ACTIONS(1434), + [sym_primitive_type] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_switch] = ACTIONS(1434), + [anon_sym_case] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [anon_sym_do] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_goto] = ACTIONS(1434), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_sizeof] = ACTIONS(1434), + [anon_sym___alignof__] = ACTIONS(1434), + [anon_sym___alignof] = ACTIONS(1434), + [anon_sym__alignof] = ACTIONS(1434), + [anon_sym_alignof] = ACTIONS(1434), + [anon_sym__Alignof] = ACTIONS(1434), + [anon_sym_offsetof] = ACTIONS(1434), + [anon_sym__Generic] = ACTIONS(1434), + [anon_sym_asm] = ACTIONS(1434), + [anon_sym___asm__] = ACTIONS(1434), + [sym_number_literal] = ACTIONS(1436), + [anon_sym_L_SQUOTE] = ACTIONS(1436), + [anon_sym_u_SQUOTE] = ACTIONS(1436), + [anon_sym_U_SQUOTE] = ACTIONS(1436), + [anon_sym_u8_SQUOTE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1436), + [anon_sym_L_DQUOTE] = ACTIONS(1436), + [anon_sym_u_DQUOTE] = ACTIONS(1436), + [anon_sym_U_DQUOTE] = ACTIONS(1436), + [anon_sym_u8_DQUOTE] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(1436), + [sym_true] = ACTIONS(1434), + [sym_false] = ACTIONS(1434), + [anon_sym_NULL] = ACTIONS(1434), + [anon_sym_nullptr] = ACTIONS(1434), [sym_comment] = ACTIONS(3), }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1468), - [aux_sym_preproc_include_token1] = ACTIONS(1468), - [aux_sym_preproc_def_token1] = ACTIONS(1468), - [aux_sym_preproc_if_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1468), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1468), - [sym_preproc_directive] = ACTIONS(1468), - [anon_sym_LPAREN2] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1468), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym___extension__] = ACTIONS(1468), - [anon_sym_typedef] = ACTIONS(1468), - [anon_sym_extern] = ACTIONS(1468), - [anon_sym___attribute__] = ACTIONS(1468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1470), - [anon_sym___declspec] = ACTIONS(1468), - [anon_sym___cdecl] = ACTIONS(1468), - [anon_sym___clrcall] = ACTIONS(1468), - [anon_sym___stdcall] = ACTIONS(1468), - [anon_sym___fastcall] = ACTIONS(1468), - [anon_sym___thiscall] = ACTIONS(1468), - [anon_sym___vectorcall] = ACTIONS(1468), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_signed] = ACTIONS(1468), - [anon_sym_unsigned] = ACTIONS(1468), - [anon_sym_long] = ACTIONS(1468), - [anon_sym_short] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_auto] = ACTIONS(1468), - [anon_sym_register] = ACTIONS(1468), - [anon_sym_inline] = ACTIONS(1468), - [anon_sym___inline] = ACTIONS(1468), - [anon_sym___inline__] = ACTIONS(1468), - [anon_sym___forceinline] = ACTIONS(1468), - [anon_sym_thread_local] = ACTIONS(1468), - [anon_sym___thread] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_constexpr] = ACTIONS(1468), - [anon_sym_volatile] = ACTIONS(1468), - [anon_sym_restrict] = ACTIONS(1468), - [anon_sym___restrict__] = ACTIONS(1468), - [anon_sym__Atomic] = ACTIONS(1468), - [anon_sym__Noreturn] = ACTIONS(1468), - [anon_sym_noreturn] = ACTIONS(1468), - [sym_primitive_type] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_switch] = ACTIONS(1468), - [anon_sym_case] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [anon_sym_do] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_goto] = ACTIONS(1468), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_sizeof] = ACTIONS(1468), - [anon_sym___alignof__] = ACTIONS(1468), - [anon_sym___alignof] = ACTIONS(1468), - [anon_sym__alignof] = ACTIONS(1468), - [anon_sym_alignof] = ACTIONS(1468), - [anon_sym__Alignof] = ACTIONS(1468), - [anon_sym_offsetof] = ACTIONS(1468), - [anon_sym__Generic] = ACTIONS(1468), - [anon_sym_asm] = ACTIONS(1468), - [anon_sym___asm__] = ACTIONS(1468), - [sym_number_literal] = ACTIONS(1470), - [anon_sym_L_SQUOTE] = ACTIONS(1470), - [anon_sym_u_SQUOTE] = ACTIONS(1470), - [anon_sym_U_SQUOTE] = ACTIONS(1470), - [anon_sym_u8_SQUOTE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1470), - [anon_sym_L_DQUOTE] = ACTIONS(1470), - [anon_sym_u_DQUOTE] = ACTIONS(1470), - [anon_sym_U_DQUOTE] = ACTIONS(1470), - [anon_sym_u8_DQUOTE] = ACTIONS(1470), - [anon_sym_DQUOTE] = ACTIONS(1470), - [sym_true] = ACTIONS(1468), - [sym_false] = ACTIONS(1468), - [anon_sym_NULL] = ACTIONS(1468), - [anon_sym_nullptr] = ACTIONS(1468), + [483] = { + [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___extension__] = ACTIONS(1422), + [anon_sym_typedef] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym___attribute__] = ACTIONS(1422), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1424), + [anon_sym___declspec] = ACTIONS(1422), + [anon_sym___cdecl] = ACTIONS(1422), + [anon_sym___clrcall] = ACTIONS(1422), + [anon_sym___stdcall] = ACTIONS(1422), + [anon_sym___fastcall] = ACTIONS(1422), + [anon_sym___thiscall] = ACTIONS(1422), + [anon_sym___vectorcall] = ACTIONS(1422), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_signed] = ACTIONS(1422), + [anon_sym_unsigned] = ACTIONS(1422), + [anon_sym_long] = ACTIONS(1422), + [anon_sym_short] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_auto] = ACTIONS(1422), + [anon_sym_register] = ACTIONS(1422), + [anon_sym_inline] = ACTIONS(1422), + [anon_sym___inline] = ACTIONS(1422), + [anon_sym___inline__] = ACTIONS(1422), + [anon_sym___forceinline] = ACTIONS(1422), + [anon_sym_thread_local] = ACTIONS(1422), + [anon_sym___thread] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_constexpr] = ACTIONS(1422), + [anon_sym_volatile] = ACTIONS(1422), + [anon_sym_restrict] = ACTIONS(1422), + [anon_sym___restrict__] = ACTIONS(1422), + [anon_sym__Atomic] = ACTIONS(1422), + [anon_sym__Noreturn] = ACTIONS(1422), + [anon_sym_noreturn] = ACTIONS(1422), + [sym_primitive_type] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_switch] = ACTIONS(1422), + [anon_sym_case] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_do] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_goto] = ACTIONS(1422), + [anon_sym_DASH_DASH] = ACTIONS(1424), + [anon_sym_PLUS_PLUS] = ACTIONS(1424), + [anon_sym_sizeof] = ACTIONS(1422), + [anon_sym___alignof__] = ACTIONS(1422), + [anon_sym___alignof] = ACTIONS(1422), + [anon_sym__alignof] = ACTIONS(1422), + [anon_sym_alignof] = ACTIONS(1422), + [anon_sym__Alignof] = 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), }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(1478), - [sym_identifier] = ACTIONS(1476), - [aux_sym_preproc_include_token1] = ACTIONS(1476), - [aux_sym_preproc_def_token1] = ACTIONS(1476), - [aux_sym_preproc_if_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1476), - [sym_preproc_directive] = ACTIONS(1476), - [anon_sym_LPAREN2] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym___extension__] = ACTIONS(1476), - [anon_sym_typedef] = ACTIONS(1476), - [anon_sym_extern] = ACTIONS(1476), - [anon_sym___attribute__] = ACTIONS(1476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1478), - [anon_sym___declspec] = ACTIONS(1476), - [anon_sym___cdecl] = ACTIONS(1476), - [anon_sym___clrcall] = ACTIONS(1476), - [anon_sym___stdcall] = ACTIONS(1476), - [anon_sym___fastcall] = ACTIONS(1476), - [anon_sym___thiscall] = ACTIONS(1476), - [anon_sym___vectorcall] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_signed] = ACTIONS(1476), - [anon_sym_unsigned] = ACTIONS(1476), - [anon_sym_long] = ACTIONS(1476), - [anon_sym_short] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_auto] = ACTIONS(1476), - [anon_sym_register] = ACTIONS(1476), - [anon_sym_inline] = ACTIONS(1476), - [anon_sym___inline] = ACTIONS(1476), - [anon_sym___inline__] = ACTIONS(1476), - [anon_sym___forceinline] = ACTIONS(1476), - [anon_sym_thread_local] = ACTIONS(1476), - [anon_sym___thread] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_constexpr] = ACTIONS(1476), - [anon_sym_volatile] = ACTIONS(1476), - [anon_sym_restrict] = ACTIONS(1476), - [anon_sym___restrict__] = ACTIONS(1476), - [anon_sym__Atomic] = ACTIONS(1476), - [anon_sym__Noreturn] = ACTIONS(1476), - [anon_sym_noreturn] = ACTIONS(1476), - [sym_primitive_type] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [anon_sym_do] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_goto] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1478), - [anon_sym_sizeof] = ACTIONS(1476), - [anon_sym___alignof__] = ACTIONS(1476), - [anon_sym___alignof] = ACTIONS(1476), - [anon_sym__alignof] = ACTIONS(1476), - [anon_sym_alignof] = ACTIONS(1476), - [anon_sym__Alignof] = ACTIONS(1476), - [anon_sym_offsetof] = ACTIONS(1476), - [anon_sym__Generic] = ACTIONS(1476), - [anon_sym_asm] = ACTIONS(1476), - [anon_sym___asm__] = ACTIONS(1476), - [sym_number_literal] = ACTIONS(1478), - [anon_sym_L_SQUOTE] = ACTIONS(1478), - [anon_sym_u_SQUOTE] = ACTIONS(1478), - [anon_sym_U_SQUOTE] = ACTIONS(1478), - [anon_sym_u8_SQUOTE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1478), - [anon_sym_L_DQUOTE] = ACTIONS(1478), - [anon_sym_u_DQUOTE] = ACTIONS(1478), - [anon_sym_U_DQUOTE] = ACTIONS(1478), - [anon_sym_u8_DQUOTE] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym_true] = ACTIONS(1476), - [sym_false] = ACTIONS(1476), - [anon_sym_NULL] = ACTIONS(1476), - [anon_sym_nullptr] = ACTIONS(1476), + [484] = { + [ts_builtin_sym_end] = ACTIONS(1444), + [sym_identifier] = ACTIONS(1442), + [aux_sym_preproc_include_token1] = ACTIONS(1442), + [aux_sym_preproc_def_token1] = ACTIONS(1442), + [aux_sym_preproc_if_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1442), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1442), + [sym_preproc_directive] = ACTIONS(1442), + [anon_sym_LPAREN2] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1442), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym___extension__] = ACTIONS(1442), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_extern] = ACTIONS(1442), + [anon_sym___attribute__] = ACTIONS(1442), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1444), + [anon_sym___declspec] = ACTIONS(1442), + [anon_sym___cdecl] = ACTIONS(1442), + [anon_sym___clrcall] = ACTIONS(1442), + [anon_sym___stdcall] = ACTIONS(1442), + [anon_sym___fastcall] = ACTIONS(1442), + [anon_sym___thiscall] = ACTIONS(1442), + [anon_sym___vectorcall] = ACTIONS(1442), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_signed] = ACTIONS(1442), + [anon_sym_unsigned] = ACTIONS(1442), + [anon_sym_long] = ACTIONS(1442), + [anon_sym_short] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_auto] = ACTIONS(1442), + [anon_sym_register] = ACTIONS(1442), + [anon_sym_inline] = ACTIONS(1442), + [anon_sym___inline] = ACTIONS(1442), + [anon_sym___inline__] = ACTIONS(1442), + [anon_sym___forceinline] = ACTIONS(1442), + [anon_sym_thread_local] = ACTIONS(1442), + [anon_sym___thread] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_constexpr] = ACTIONS(1442), + [anon_sym_volatile] = ACTIONS(1442), + [anon_sym_restrict] = ACTIONS(1442), + [anon_sym___restrict__] = ACTIONS(1442), + [anon_sym__Atomic] = ACTIONS(1442), + [anon_sym__Noreturn] = ACTIONS(1442), + [anon_sym_noreturn] = ACTIONS(1442), + [sym_primitive_type] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_switch] = ACTIONS(1442), + [anon_sym_case] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [anon_sym_do] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_goto] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1444), + [anon_sym_PLUS_PLUS] = ACTIONS(1444), + [anon_sym_sizeof] = ACTIONS(1442), + [anon_sym___alignof__] = ACTIONS(1442), + [anon_sym___alignof] = ACTIONS(1442), + [anon_sym__alignof] = ACTIONS(1442), + [anon_sym_alignof] = ACTIONS(1442), + [anon_sym__Alignof] = ACTIONS(1442), + [anon_sym_offsetof] = ACTIONS(1442), + [anon_sym__Generic] = ACTIONS(1442), + [anon_sym_asm] = ACTIONS(1442), + [anon_sym___asm__] = ACTIONS(1442), + [sym_number_literal] = ACTIONS(1444), + [anon_sym_L_SQUOTE] = ACTIONS(1444), + [anon_sym_u_SQUOTE] = ACTIONS(1444), + [anon_sym_U_SQUOTE] = ACTIONS(1444), + [anon_sym_u8_SQUOTE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1444), + [anon_sym_L_DQUOTE] = ACTIONS(1444), + [anon_sym_u_DQUOTE] = ACTIONS(1444), + [anon_sym_U_DQUOTE] = ACTIONS(1444), + [anon_sym_u8_DQUOTE] = ACTIONS(1444), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_true] = ACTIONS(1442), + [sym_false] = ACTIONS(1442), + [anon_sym_NULL] = ACTIONS(1442), + [anon_sym_nullptr] = ACTIONS(1442), [sym_comment] = ACTIONS(3), }, - [462] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1406), - [aux_sym_preproc_include_token1] = ACTIONS(1406), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1406), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1406), - [sym_preproc_directive] = ACTIONS(1406), - [anon_sym_LPAREN2] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1408), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1408), - [anon_sym___extension__] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym___attribute__] = ACTIONS(1406), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1408), - [anon_sym___declspec] = ACTIONS(1406), - [anon_sym___cdecl] = ACTIONS(1406), - [anon_sym___clrcall] = ACTIONS(1406), - [anon_sym___stdcall] = ACTIONS(1406), - [anon_sym___fastcall] = ACTIONS(1406), - [anon_sym___thiscall] = ACTIONS(1406), - [anon_sym___vectorcall] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_signed] = ACTIONS(1406), - [anon_sym_unsigned] = ACTIONS(1406), - [anon_sym_long] = ACTIONS(1406), - [anon_sym_short] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_auto] = ACTIONS(1406), - [anon_sym_register] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym___inline] = ACTIONS(1406), - [anon_sym___inline__] = ACTIONS(1406), - [anon_sym___forceinline] = ACTIONS(1406), - [anon_sym_thread_local] = ACTIONS(1406), - [anon_sym___thread] = ACTIONS(1406), - [anon_sym_const] = ACTIONS(1406), - [anon_sym_constexpr] = ACTIONS(1406), - [anon_sym_volatile] = ACTIONS(1406), - [anon_sym_restrict] = ACTIONS(1406), - [anon_sym___restrict__] = ACTIONS(1406), - [anon_sym__Atomic] = ACTIONS(1406), - [anon_sym__Noreturn] = ACTIONS(1406), - [anon_sym_noreturn] = ACTIONS(1406), - [sym_primitive_type] = ACTIONS(1406), - [anon_sym_enum] = ACTIONS(1406), - [anon_sym_struct] = ACTIONS(1406), - [anon_sym_union] = ACTIONS(1406), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_while] = ACTIONS(1406), - [anon_sym_do] = ACTIONS(1406), - [anon_sym_for] = ACTIONS(1406), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_goto] = ACTIONS(1406), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_sizeof] = ACTIONS(1406), - [anon_sym___alignof__] = ACTIONS(1406), - [anon_sym___alignof] = ACTIONS(1406), - [anon_sym__alignof] = ACTIONS(1406), - [anon_sym_alignof] = ACTIONS(1406), - [anon_sym__Alignof] = 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), + [485] = { + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [aux_sym_preproc_include_token1] = ACTIONS(1907), + [aux_sym_preproc_def_token1] = ACTIONS(1907), + [aux_sym_preproc_if_token1] = ACTIONS(1907), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1907), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1907), + [sym_preproc_directive] = ACTIONS(1907), + [anon_sym_LPAREN2] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1905), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1905), + [anon_sym___extension__] = ACTIONS(1907), + [anon_sym_typedef] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym___attribute__] = ACTIONS(1907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1905), + [anon_sym___declspec] = ACTIONS(1907), + [anon_sym___cdecl] = ACTIONS(1907), + [anon_sym___clrcall] = ACTIONS(1907), + [anon_sym___stdcall] = ACTIONS(1907), + [anon_sym___fastcall] = ACTIONS(1907), + [anon_sym___thiscall] = ACTIONS(1907), + [anon_sym___vectorcall] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_signed] = ACTIONS(1907), + [anon_sym_unsigned] = ACTIONS(1907), + [anon_sym_long] = ACTIONS(1907), + [anon_sym_short] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_auto] = ACTIONS(1907), + [anon_sym_register] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym___inline] = ACTIONS(1907), + [anon_sym___inline__] = ACTIONS(1907), + [anon_sym___forceinline] = ACTIONS(1907), + [anon_sym_thread_local] = ACTIONS(1907), + [anon_sym___thread] = ACTIONS(1907), + [anon_sym_const] = ACTIONS(1907), + [anon_sym_constexpr] = ACTIONS(1907), + [anon_sym_volatile] = ACTIONS(1907), + [anon_sym_restrict] = ACTIONS(1907), + [anon_sym___restrict__] = ACTIONS(1907), + [anon_sym__Atomic] = ACTIONS(1907), + [anon_sym__Noreturn] = ACTIONS(1907), + [anon_sym_noreturn] = ACTIONS(1907), + [sym_primitive_type] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_struct] = ACTIONS(1907), + [anon_sym_union] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_goto] = ACTIONS(1907), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_sizeof] = ACTIONS(1907), + [anon_sym___alignof__] = ACTIONS(1907), + [anon_sym___alignof] = ACTIONS(1907), + [anon_sym__alignof] = ACTIONS(1907), + [anon_sym_alignof] = ACTIONS(1907), + [anon_sym__Alignof] = ACTIONS(1907), + [anon_sym_offsetof] = ACTIONS(1907), + [anon_sym__Generic] = ACTIONS(1907), + [anon_sym_asm] = ACTIONS(1907), + [anon_sym___asm__] = ACTIONS(1907), + [sym_number_literal] = ACTIONS(1905), + [anon_sym_L_SQUOTE] = ACTIONS(1905), + [anon_sym_u_SQUOTE] = ACTIONS(1905), + [anon_sym_U_SQUOTE] = ACTIONS(1905), + [anon_sym_u8_SQUOTE] = ACTIONS(1905), + [anon_sym_SQUOTE] = ACTIONS(1905), + [anon_sym_L_DQUOTE] = ACTIONS(1905), + [anon_sym_u_DQUOTE] = ACTIONS(1905), + [anon_sym_U_DQUOTE] = ACTIONS(1905), + [anon_sym_u8_DQUOTE] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(1905), + [sym_true] = ACTIONS(1907), + [sym_false] = ACTIONS(1907), + [anon_sym_NULL] = ACTIONS(1907), + [anon_sym_nullptr] = ACTIONS(1907), [sym_comment] = ACTIONS(3), }, - [463] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1488), - [aux_sym_preproc_include_token1] = ACTIONS(1488), - [aux_sym_preproc_def_token1] = ACTIONS(1488), - [aux_sym_preproc_if_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1488), - [sym_preproc_directive] = ACTIONS(1488), - [anon_sym_LPAREN2] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1490), - [anon_sym___extension__] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym___attribute__] = ACTIONS(1488), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1490), - [anon_sym___declspec] = ACTIONS(1488), - [anon_sym___cdecl] = ACTIONS(1488), - [anon_sym___clrcall] = ACTIONS(1488), - [anon_sym___stdcall] = ACTIONS(1488), - [anon_sym___fastcall] = ACTIONS(1488), - [anon_sym___thiscall] = ACTIONS(1488), - [anon_sym___vectorcall] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_signed] = ACTIONS(1488), - [anon_sym_unsigned] = ACTIONS(1488), - [anon_sym_long] = ACTIONS(1488), - [anon_sym_short] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_auto] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym___inline] = ACTIONS(1488), - [anon_sym___inline__] = ACTIONS(1488), - [anon_sym___forceinline] = ACTIONS(1488), - [anon_sym_thread_local] = ACTIONS(1488), - [anon_sym___thread] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [anon_sym_constexpr] = ACTIONS(1488), - [anon_sym_volatile] = ACTIONS(1488), - [anon_sym_restrict] = ACTIONS(1488), - [anon_sym___restrict__] = ACTIONS(1488), - [anon_sym__Atomic] = ACTIONS(1488), - [anon_sym__Noreturn] = ACTIONS(1488), - [anon_sym_noreturn] = ACTIONS(1488), - [sym_primitive_type] = ACTIONS(1488), - [anon_sym_enum] = ACTIONS(1488), - [anon_sym_struct] = ACTIONS(1488), - [anon_sym_union] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_goto] = ACTIONS(1488), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_sizeof] = ACTIONS(1488), - [anon_sym___alignof__] = ACTIONS(1488), - [anon_sym___alignof] = ACTIONS(1488), - [anon_sym__alignof] = ACTIONS(1488), - [anon_sym_alignof] = ACTIONS(1488), - [anon_sym__Alignof] = ACTIONS(1488), - [anon_sym_offsetof] = ACTIONS(1488), - [anon_sym__Generic] = ACTIONS(1488), - [anon_sym_asm] = ACTIONS(1488), - [anon_sym___asm__] = ACTIONS(1488), - [sym_number_literal] = ACTIONS(1490), - [anon_sym_L_SQUOTE] = ACTIONS(1490), - [anon_sym_u_SQUOTE] = ACTIONS(1490), - [anon_sym_U_SQUOTE] = ACTIONS(1490), - [anon_sym_u8_SQUOTE] = ACTIONS(1490), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_L_DQUOTE] = ACTIONS(1490), - [anon_sym_u_DQUOTE] = ACTIONS(1490), - [anon_sym_U_DQUOTE] = ACTIONS(1490), - [anon_sym_u8_DQUOTE] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym_true] = ACTIONS(1488), - [sym_false] = ACTIONS(1488), - [anon_sym_NULL] = ACTIONS(1488), - [anon_sym_nullptr] = ACTIONS(1488), + [486] = { + [ts_builtin_sym_end] = ACTIONS(1440), + [sym_identifier] = ACTIONS(1438), + [aux_sym_preproc_include_token1] = ACTIONS(1438), + [aux_sym_preproc_def_token1] = ACTIONS(1438), + [aux_sym_preproc_if_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1438), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1438), + [sym_preproc_directive] = ACTIONS(1438), + [anon_sym_LPAREN2] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1438), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym___extension__] = ACTIONS(1438), + [anon_sym_typedef] = ACTIONS(1438), + [anon_sym_extern] = ACTIONS(1438), + [anon_sym___attribute__] = ACTIONS(1438), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1440), + [anon_sym___declspec] = ACTIONS(1438), + [anon_sym___cdecl] = ACTIONS(1438), + [anon_sym___clrcall] = ACTIONS(1438), + [anon_sym___stdcall] = ACTIONS(1438), + [anon_sym___fastcall] = ACTIONS(1438), + [anon_sym___thiscall] = ACTIONS(1438), + [anon_sym___vectorcall] = ACTIONS(1438), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_signed] = ACTIONS(1438), + [anon_sym_unsigned] = ACTIONS(1438), + [anon_sym_long] = ACTIONS(1438), + [anon_sym_short] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_auto] = ACTIONS(1438), + [anon_sym_register] = ACTIONS(1438), + [anon_sym_inline] = ACTIONS(1438), + [anon_sym___inline] = ACTIONS(1438), + [anon_sym___inline__] = ACTIONS(1438), + [anon_sym___forceinline] = ACTIONS(1438), + [anon_sym_thread_local] = ACTIONS(1438), + [anon_sym___thread] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_constexpr] = ACTIONS(1438), + [anon_sym_volatile] = ACTIONS(1438), + [anon_sym_restrict] = ACTIONS(1438), + [anon_sym___restrict__] = ACTIONS(1438), + [anon_sym__Atomic] = ACTIONS(1438), + [anon_sym__Noreturn] = ACTIONS(1438), + [anon_sym_noreturn] = ACTIONS(1438), + [sym_primitive_type] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_switch] = ACTIONS(1438), + [anon_sym_case] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [anon_sym_do] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_goto] = ACTIONS(1438), + [anon_sym_DASH_DASH] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1440), + [anon_sym_sizeof] = ACTIONS(1438), + [anon_sym___alignof__] = ACTIONS(1438), + [anon_sym___alignof] = ACTIONS(1438), + [anon_sym__alignof] = ACTIONS(1438), + [anon_sym_alignof] = ACTIONS(1438), + [anon_sym__Alignof] = ACTIONS(1438), + [anon_sym_offsetof] = ACTIONS(1438), + [anon_sym__Generic] = ACTIONS(1438), + [anon_sym_asm] = ACTIONS(1438), + [anon_sym___asm__] = ACTIONS(1438), + [sym_number_literal] = ACTIONS(1440), + [anon_sym_L_SQUOTE] = ACTIONS(1440), + [anon_sym_u_SQUOTE] = ACTIONS(1440), + [anon_sym_U_SQUOTE] = ACTIONS(1440), + [anon_sym_u8_SQUOTE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1440), + [anon_sym_L_DQUOTE] = ACTIONS(1440), + [anon_sym_u_DQUOTE] = ACTIONS(1440), + [anon_sym_U_DQUOTE] = ACTIONS(1440), + [anon_sym_u8_DQUOTE] = ACTIONS(1440), + [anon_sym_DQUOTE] = ACTIONS(1440), + [sym_true] = ACTIONS(1438), + [sym_false] = ACTIONS(1438), + [anon_sym_NULL] = ACTIONS(1438), + [anon_sym_nullptr] = ACTIONS(1438), [sym_comment] = ACTIONS(3), }, - [464] = { + [487] = { [ts_builtin_sym_end] = ACTIONS(1506), [sym_identifier] = ACTIONS(1504), [aux_sym_preproc_include_token1] = ACTIONS(1504), @@ -66904,7 +69371,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1504), [sym_comment] = ACTIONS(3), }, - [465] = { + [488] = { + [ts_builtin_sym_end] = ACTIONS(1472), + [sym_identifier] = ACTIONS(1470), + [aux_sym_preproc_include_token1] = ACTIONS(1470), + [aux_sym_preproc_def_token1] = ACTIONS(1470), + [aux_sym_preproc_if_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1470), + [sym_preproc_directive] = ACTIONS(1470), + [anon_sym_LPAREN2] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym___extension__] = ACTIONS(1470), + [anon_sym_typedef] = ACTIONS(1470), + [anon_sym_extern] = ACTIONS(1470), + [anon_sym___attribute__] = ACTIONS(1470), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1472), + [anon_sym___declspec] = ACTIONS(1470), + [anon_sym___cdecl] = ACTIONS(1470), + [anon_sym___clrcall] = ACTIONS(1470), + [anon_sym___stdcall] = ACTIONS(1470), + [anon_sym___fastcall] = ACTIONS(1470), + [anon_sym___thiscall] = ACTIONS(1470), + [anon_sym___vectorcall] = ACTIONS(1470), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_signed] = ACTIONS(1470), + [anon_sym_unsigned] = ACTIONS(1470), + [anon_sym_long] = ACTIONS(1470), + [anon_sym_short] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_auto] = ACTIONS(1470), + [anon_sym_register] = ACTIONS(1470), + [anon_sym_inline] = ACTIONS(1470), + [anon_sym___inline] = ACTIONS(1470), + [anon_sym___inline__] = ACTIONS(1470), + [anon_sym___forceinline] = ACTIONS(1470), + [anon_sym_thread_local] = ACTIONS(1470), + [anon_sym___thread] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_constexpr] = ACTIONS(1470), + [anon_sym_volatile] = ACTIONS(1470), + [anon_sym_restrict] = ACTIONS(1470), + [anon_sym___restrict__] = ACTIONS(1470), + [anon_sym__Atomic] = ACTIONS(1470), + [anon_sym__Noreturn] = ACTIONS(1470), + [anon_sym_noreturn] = ACTIONS(1470), + [sym_primitive_type] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_switch] = ACTIONS(1470), + [anon_sym_case] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [anon_sym_do] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_goto] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1472), + [anon_sym_PLUS_PLUS] = ACTIONS(1472), + [anon_sym_sizeof] = ACTIONS(1470), + [anon_sym___alignof__] = ACTIONS(1470), + [anon_sym___alignof] = ACTIONS(1470), + [anon_sym__alignof] = ACTIONS(1470), + [anon_sym_alignof] = ACTIONS(1470), + [anon_sym__Alignof] = ACTIONS(1470), + [anon_sym_offsetof] = ACTIONS(1470), + [anon_sym__Generic] = ACTIONS(1470), + [anon_sym_asm] = ACTIONS(1470), + [anon_sym___asm__] = ACTIONS(1470), + [sym_number_literal] = ACTIONS(1472), + [anon_sym_L_SQUOTE] = ACTIONS(1472), + [anon_sym_u_SQUOTE] = ACTIONS(1472), + [anon_sym_U_SQUOTE] = ACTIONS(1472), + [anon_sym_u8_SQUOTE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1472), + [anon_sym_L_DQUOTE] = ACTIONS(1472), + [anon_sym_u_DQUOTE] = ACTIONS(1472), + [anon_sym_U_DQUOTE] = ACTIONS(1472), + [anon_sym_u8_DQUOTE] = ACTIONS(1472), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym_true] = ACTIONS(1470), + [sym_false] = ACTIONS(1470), + [anon_sym_NULL] = ACTIONS(1470), + [anon_sym_nullptr] = ACTIONS(1470), + [sym_comment] = ACTIONS(3), + }, + [489] = { + [ts_builtin_sym_end] = ACTIONS(1452), + [sym_identifier] = ACTIONS(1450), + [aux_sym_preproc_include_token1] = ACTIONS(1450), + [aux_sym_preproc_def_token1] = ACTIONS(1450), + [aux_sym_preproc_if_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1450), + [sym_preproc_directive] = ACTIONS(1450), + [anon_sym_LPAREN2] = ACTIONS(1452), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_DASH] = ACTIONS(1450), + [anon_sym_PLUS] = ACTIONS(1450), + [anon_sym_STAR] = ACTIONS(1452), + [anon_sym_AMP] = ACTIONS(1452), + [anon_sym___extension__] = ACTIONS(1450), + [anon_sym_typedef] = ACTIONS(1450), + [anon_sym_extern] = ACTIONS(1450), + [anon_sym___attribute__] = ACTIONS(1450), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1452), + [anon_sym___declspec] = ACTIONS(1450), + [anon_sym___cdecl] = ACTIONS(1450), + [anon_sym___clrcall] = ACTIONS(1450), + [anon_sym___stdcall] = ACTIONS(1450), + [anon_sym___fastcall] = ACTIONS(1450), + [anon_sym___thiscall] = ACTIONS(1450), + [anon_sym___vectorcall] = ACTIONS(1450), + [anon_sym_LBRACE] = ACTIONS(1452), + [anon_sym_signed] = ACTIONS(1450), + [anon_sym_unsigned] = ACTIONS(1450), + [anon_sym_long] = ACTIONS(1450), + [anon_sym_short] = ACTIONS(1450), + [anon_sym_static] = ACTIONS(1450), + [anon_sym_auto] = ACTIONS(1450), + [anon_sym_register] = ACTIONS(1450), + [anon_sym_inline] = ACTIONS(1450), + [anon_sym___inline] = ACTIONS(1450), + [anon_sym___inline__] = ACTIONS(1450), + [anon_sym___forceinline] = ACTIONS(1450), + [anon_sym_thread_local] = ACTIONS(1450), + [anon_sym___thread] = ACTIONS(1450), + [anon_sym_const] = ACTIONS(1450), + [anon_sym_constexpr] = ACTIONS(1450), + [anon_sym_volatile] = ACTIONS(1450), + [anon_sym_restrict] = ACTIONS(1450), + [anon_sym___restrict__] = ACTIONS(1450), + [anon_sym__Atomic] = ACTIONS(1450), + [anon_sym__Noreturn] = ACTIONS(1450), + [anon_sym_noreturn] = ACTIONS(1450), + [sym_primitive_type] = ACTIONS(1450), + [anon_sym_enum] = ACTIONS(1450), + [anon_sym_struct] = ACTIONS(1450), + [anon_sym_union] = ACTIONS(1450), + [anon_sym_if] = ACTIONS(1450), + [anon_sym_switch] = ACTIONS(1450), + [anon_sym_case] = ACTIONS(1450), + [anon_sym_default] = ACTIONS(1450), + [anon_sym_while] = ACTIONS(1450), + [anon_sym_do] = ACTIONS(1450), + [anon_sym_for] = ACTIONS(1450), + [anon_sym_return] = ACTIONS(1450), + [anon_sym_break] = ACTIONS(1450), + [anon_sym_continue] = ACTIONS(1450), + [anon_sym_goto] = ACTIONS(1450), + [anon_sym_DASH_DASH] = ACTIONS(1452), + [anon_sym_PLUS_PLUS] = ACTIONS(1452), + [anon_sym_sizeof] = ACTIONS(1450), + [anon_sym___alignof__] = ACTIONS(1450), + [anon_sym___alignof] = ACTIONS(1450), + [anon_sym__alignof] = ACTIONS(1450), + [anon_sym_alignof] = ACTIONS(1450), + [anon_sym__Alignof] = ACTIONS(1450), + [anon_sym_offsetof] = ACTIONS(1450), + [anon_sym__Generic] = ACTIONS(1450), + [anon_sym_asm] = ACTIONS(1450), + [anon_sym___asm__] = ACTIONS(1450), + [sym_number_literal] = ACTIONS(1452), + [anon_sym_L_SQUOTE] = ACTIONS(1452), + [anon_sym_u_SQUOTE] = ACTIONS(1452), + [anon_sym_U_SQUOTE] = ACTIONS(1452), + [anon_sym_u8_SQUOTE] = ACTIONS(1452), + [anon_sym_SQUOTE] = ACTIONS(1452), + [anon_sym_L_DQUOTE] = ACTIONS(1452), + [anon_sym_u_DQUOTE] = ACTIONS(1452), + [anon_sym_U_DQUOTE] = ACTIONS(1452), + [anon_sym_u8_DQUOTE] = ACTIONS(1452), + [anon_sym_DQUOTE] = ACTIONS(1452), + [sym_true] = ACTIONS(1450), + [sym_false] = ACTIONS(1450), + [anon_sym_NULL] = ACTIONS(1450), + [anon_sym_nullptr] = ACTIONS(1450), + [sym_comment] = ACTIONS(3), + }, + [490] = { + [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___extension__] = ACTIONS(1430), + [anon_sym_typedef] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym___attribute__] = ACTIONS(1430), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1432), + [anon_sym___declspec] = ACTIONS(1430), + [anon_sym___cdecl] = ACTIONS(1430), + [anon_sym___clrcall] = ACTIONS(1430), + [anon_sym___stdcall] = ACTIONS(1430), + [anon_sym___fastcall] = ACTIONS(1430), + [anon_sym___thiscall] = ACTIONS(1430), + [anon_sym___vectorcall] = ACTIONS(1430), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_signed] = ACTIONS(1430), + [anon_sym_unsigned] = ACTIONS(1430), + [anon_sym_long] = ACTIONS(1430), + [anon_sym_short] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_auto] = ACTIONS(1430), + [anon_sym_register] = ACTIONS(1430), + [anon_sym_inline] = ACTIONS(1430), + [anon_sym___inline] = ACTIONS(1430), + [anon_sym___inline__] = ACTIONS(1430), + [anon_sym___forceinline] = ACTIONS(1430), + [anon_sym_thread_local] = ACTIONS(1430), + [anon_sym___thread] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_constexpr] = ACTIONS(1430), + [anon_sym_volatile] = ACTIONS(1430), + [anon_sym_restrict] = ACTIONS(1430), + [anon_sym___restrict__] = ACTIONS(1430), + [anon_sym__Atomic] = ACTIONS(1430), + [anon_sym__Noreturn] = ACTIONS(1430), + [anon_sym_noreturn] = ACTIONS(1430), + [sym_primitive_type] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_switch] = ACTIONS(1430), + [anon_sym_case] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [anon_sym_do] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_goto] = ACTIONS(1430), + [anon_sym_DASH_DASH] = ACTIONS(1432), + [anon_sym_PLUS_PLUS] = ACTIONS(1432), + [anon_sym_sizeof] = ACTIONS(1430), + [anon_sym___alignof__] = ACTIONS(1430), + [anon_sym___alignof] = ACTIONS(1430), + [anon_sym__alignof] = ACTIONS(1430), + [anon_sym_alignof] = ACTIONS(1430), + [anon_sym__Alignof] = 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] = { + [ts_builtin_sym_end] = ACTIONS(1488), + [sym_identifier] = ACTIONS(1486), + [aux_sym_preproc_include_token1] = ACTIONS(1486), + [aux_sym_preproc_def_token1] = ACTIONS(1486), + [aux_sym_preproc_if_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1486), + [sym_preproc_directive] = ACTIONS(1486), + [anon_sym_LPAREN2] = ACTIONS(1488), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_DASH] = ACTIONS(1486), + [anon_sym_PLUS] = ACTIONS(1486), + [anon_sym_STAR] = ACTIONS(1488), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym___extension__] = ACTIONS(1486), + [anon_sym_typedef] = ACTIONS(1486), + [anon_sym_extern] = ACTIONS(1486), + [anon_sym___attribute__] = ACTIONS(1486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1488), + [anon_sym___declspec] = ACTIONS(1486), + [anon_sym___cdecl] = ACTIONS(1486), + [anon_sym___clrcall] = ACTIONS(1486), + [anon_sym___stdcall] = ACTIONS(1486), + [anon_sym___fastcall] = ACTIONS(1486), + [anon_sym___thiscall] = ACTIONS(1486), + [anon_sym___vectorcall] = ACTIONS(1486), + [anon_sym_LBRACE] = ACTIONS(1488), + [anon_sym_signed] = ACTIONS(1486), + [anon_sym_unsigned] = ACTIONS(1486), + [anon_sym_long] = ACTIONS(1486), + [anon_sym_short] = ACTIONS(1486), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_auto] = ACTIONS(1486), + [anon_sym_register] = ACTIONS(1486), + [anon_sym_inline] = ACTIONS(1486), + [anon_sym___inline] = ACTIONS(1486), + [anon_sym___inline__] = ACTIONS(1486), + [anon_sym___forceinline] = ACTIONS(1486), + [anon_sym_thread_local] = ACTIONS(1486), + [anon_sym___thread] = ACTIONS(1486), + [anon_sym_const] = ACTIONS(1486), + [anon_sym_constexpr] = ACTIONS(1486), + [anon_sym_volatile] = ACTIONS(1486), + [anon_sym_restrict] = ACTIONS(1486), + [anon_sym___restrict__] = ACTIONS(1486), + [anon_sym__Atomic] = ACTIONS(1486), + [anon_sym__Noreturn] = ACTIONS(1486), + [anon_sym_noreturn] = ACTIONS(1486), + [sym_primitive_type] = ACTIONS(1486), + [anon_sym_enum] = ACTIONS(1486), + [anon_sym_struct] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(1486), + [anon_sym_if] = ACTIONS(1486), + [anon_sym_switch] = ACTIONS(1486), + [anon_sym_case] = ACTIONS(1486), + [anon_sym_default] = ACTIONS(1486), + [anon_sym_while] = ACTIONS(1486), + [anon_sym_do] = ACTIONS(1486), + [anon_sym_for] = ACTIONS(1486), + [anon_sym_return] = ACTIONS(1486), + [anon_sym_break] = ACTIONS(1486), + [anon_sym_continue] = ACTIONS(1486), + [anon_sym_goto] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1488), + [anon_sym_PLUS_PLUS] = ACTIONS(1488), + [anon_sym_sizeof] = ACTIONS(1486), + [anon_sym___alignof__] = ACTIONS(1486), + [anon_sym___alignof] = ACTIONS(1486), + [anon_sym__alignof] = ACTIONS(1486), + [anon_sym_alignof] = ACTIONS(1486), + [anon_sym__Alignof] = ACTIONS(1486), + [anon_sym_offsetof] = ACTIONS(1486), + [anon_sym__Generic] = ACTIONS(1486), + [anon_sym_asm] = ACTIONS(1486), + [anon_sym___asm__] = ACTIONS(1486), + [sym_number_literal] = ACTIONS(1488), + [anon_sym_L_SQUOTE] = ACTIONS(1488), + [anon_sym_u_SQUOTE] = ACTIONS(1488), + [anon_sym_U_SQUOTE] = ACTIONS(1488), + [anon_sym_u8_SQUOTE] = ACTIONS(1488), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_L_DQUOTE] = ACTIONS(1488), + [anon_sym_u_DQUOTE] = ACTIONS(1488), + [anon_sym_U_DQUOTE] = ACTIONS(1488), + [anon_sym_u8_DQUOTE] = ACTIONS(1488), + [anon_sym_DQUOTE] = ACTIONS(1488), + [sym_true] = ACTIONS(1486), + [sym_false] = ACTIONS(1486), + [anon_sym_NULL] = ACTIONS(1486), + [anon_sym_nullptr] = ACTIONS(1486), + [sym_comment] = ACTIONS(3), + }, + [492] = { + [ts_builtin_sym_end] = ACTIONS(1480), + [sym_identifier] = ACTIONS(1478), + [aux_sym_preproc_include_token1] = ACTIONS(1478), + [aux_sym_preproc_def_token1] = ACTIONS(1478), + [aux_sym_preproc_if_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1478), + [sym_preproc_directive] = ACTIONS(1478), + [anon_sym_LPAREN2] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_PLUS] = ACTIONS(1478), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym___extension__] = ACTIONS(1478), + [anon_sym_typedef] = ACTIONS(1478), + [anon_sym_extern] = ACTIONS(1478), + [anon_sym___attribute__] = ACTIONS(1478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1480), + [anon_sym___declspec] = ACTIONS(1478), + [anon_sym___cdecl] = ACTIONS(1478), + [anon_sym___clrcall] = ACTIONS(1478), + [anon_sym___stdcall] = ACTIONS(1478), + [anon_sym___fastcall] = ACTIONS(1478), + [anon_sym___thiscall] = ACTIONS(1478), + [anon_sym___vectorcall] = ACTIONS(1478), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_signed] = ACTIONS(1478), + [anon_sym_unsigned] = ACTIONS(1478), + [anon_sym_long] = ACTIONS(1478), + [anon_sym_short] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_auto] = ACTIONS(1478), + [anon_sym_register] = ACTIONS(1478), + [anon_sym_inline] = ACTIONS(1478), + [anon_sym___inline] = ACTIONS(1478), + [anon_sym___inline__] = ACTIONS(1478), + [anon_sym___forceinline] = ACTIONS(1478), + [anon_sym_thread_local] = ACTIONS(1478), + [anon_sym___thread] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_constexpr] = ACTIONS(1478), + [anon_sym_volatile] = ACTIONS(1478), + [anon_sym_restrict] = ACTIONS(1478), + [anon_sym___restrict__] = ACTIONS(1478), + [anon_sym__Atomic] = ACTIONS(1478), + [anon_sym__Noreturn] = ACTIONS(1478), + [anon_sym_noreturn] = ACTIONS(1478), + [sym_primitive_type] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_switch] = ACTIONS(1478), + [anon_sym_case] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [anon_sym_do] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_goto] = ACTIONS(1478), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_sizeof] = ACTIONS(1478), + [anon_sym___alignof__] = ACTIONS(1478), + [anon_sym___alignof] = ACTIONS(1478), + [anon_sym__alignof] = ACTIONS(1478), + [anon_sym_alignof] = ACTIONS(1478), + [anon_sym__Alignof] = ACTIONS(1478), + [anon_sym_offsetof] = ACTIONS(1478), + [anon_sym__Generic] = ACTIONS(1478), + [anon_sym_asm] = ACTIONS(1478), + [anon_sym___asm__] = ACTIONS(1478), + [sym_number_literal] = ACTIONS(1480), + [anon_sym_L_SQUOTE] = ACTIONS(1480), + [anon_sym_u_SQUOTE] = ACTIONS(1480), + [anon_sym_U_SQUOTE] = ACTIONS(1480), + [anon_sym_u8_SQUOTE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1480), + [anon_sym_L_DQUOTE] = ACTIONS(1480), + [anon_sym_u_DQUOTE] = ACTIONS(1480), + [anon_sym_U_DQUOTE] = ACTIONS(1480), + [anon_sym_u8_DQUOTE] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(1480), + [sym_true] = ACTIONS(1478), + [sym_false] = ACTIONS(1478), + [anon_sym_NULL] = ACTIONS(1478), + [anon_sym_nullptr] = ACTIONS(1478), + [sym_comment] = ACTIONS(3), + }, + [493] = { + [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___extension__] = ACTIONS(1426), + [anon_sym_typedef] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym___attribute__] = ACTIONS(1426), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1428), + [anon_sym___declspec] = ACTIONS(1426), + [anon_sym___cdecl] = ACTIONS(1426), + [anon_sym___clrcall] = ACTIONS(1426), + [anon_sym___stdcall] = ACTIONS(1426), + [anon_sym___fastcall] = ACTIONS(1426), + [anon_sym___thiscall] = ACTIONS(1426), + [anon_sym___vectorcall] = ACTIONS(1426), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_signed] = ACTIONS(1426), + [anon_sym_unsigned] = ACTIONS(1426), + [anon_sym_long] = ACTIONS(1426), + [anon_sym_short] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_auto] = ACTIONS(1426), + [anon_sym_register] = ACTIONS(1426), + [anon_sym_inline] = ACTIONS(1426), + [anon_sym___inline] = ACTIONS(1426), + [anon_sym___inline__] = ACTIONS(1426), + [anon_sym___forceinline] = ACTIONS(1426), + [anon_sym_thread_local] = ACTIONS(1426), + [anon_sym___thread] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_constexpr] = ACTIONS(1426), + [anon_sym_volatile] = ACTIONS(1426), + [anon_sym_restrict] = ACTIONS(1426), + [anon_sym___restrict__] = ACTIONS(1426), + [anon_sym__Atomic] = ACTIONS(1426), + [anon_sym__Noreturn] = ACTIONS(1426), + [anon_sym_noreturn] = ACTIONS(1426), + [sym_primitive_type] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_switch] = ACTIONS(1426), + [anon_sym_case] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [anon_sym_do] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_goto] = ACTIONS(1426), + [anon_sym_DASH_DASH] = ACTIONS(1428), + [anon_sym_PLUS_PLUS] = ACTIONS(1428), + [anon_sym_sizeof] = ACTIONS(1426), + [anon_sym___alignof__] = ACTIONS(1426), + [anon_sym___alignof] = ACTIONS(1426), + [anon_sym__alignof] = ACTIONS(1426), + [anon_sym_alignof] = ACTIONS(1426), + [anon_sym__Alignof] = 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), + }, + [494] = { [ts_builtin_sym_end] = ACTIONS(1494), [sym_identifier] = ACTIONS(1492), [aux_sym_preproc_include_token1] = ACTIONS(1492), @@ -66998,853 +70029,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1492), [sym_comment] = ACTIONS(3), }, - [466] = { - [ts_builtin_sym_end] = ACTIONS(1442), - [sym_identifier] = ACTIONS(1440), - [aux_sym_preproc_include_token1] = ACTIONS(1440), - [aux_sym_preproc_def_token1] = ACTIONS(1440), - [aux_sym_preproc_if_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1440), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1440), - [sym_preproc_directive] = ACTIONS(1440), - [anon_sym_LPAREN2] = ACTIONS(1442), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1440), - [anon_sym_PLUS] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1442), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym___extension__] = ACTIONS(1440), - [anon_sym_typedef] = ACTIONS(1440), - [anon_sym_extern] = ACTIONS(1440), - [anon_sym___attribute__] = ACTIONS(1440), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1442), - [anon_sym___declspec] = ACTIONS(1440), - [anon_sym___cdecl] = ACTIONS(1440), - [anon_sym___clrcall] = ACTIONS(1440), - [anon_sym___stdcall] = ACTIONS(1440), - [anon_sym___fastcall] = ACTIONS(1440), - [anon_sym___thiscall] = ACTIONS(1440), - [anon_sym___vectorcall] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1442), - [anon_sym_signed] = ACTIONS(1440), - [anon_sym_unsigned] = ACTIONS(1440), - [anon_sym_long] = ACTIONS(1440), - [anon_sym_short] = ACTIONS(1440), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_auto] = ACTIONS(1440), - [anon_sym_register] = ACTIONS(1440), - [anon_sym_inline] = ACTIONS(1440), - [anon_sym___inline] = ACTIONS(1440), - [anon_sym___inline__] = ACTIONS(1440), - [anon_sym___forceinline] = ACTIONS(1440), - [anon_sym_thread_local] = ACTIONS(1440), - [anon_sym___thread] = ACTIONS(1440), - [anon_sym_const] = ACTIONS(1440), - [anon_sym_constexpr] = ACTIONS(1440), - [anon_sym_volatile] = ACTIONS(1440), - [anon_sym_restrict] = ACTIONS(1440), - [anon_sym___restrict__] = ACTIONS(1440), - [anon_sym__Atomic] = ACTIONS(1440), - [anon_sym__Noreturn] = ACTIONS(1440), - [anon_sym_noreturn] = ACTIONS(1440), - [sym_primitive_type] = ACTIONS(1440), - [anon_sym_enum] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1440), - [anon_sym_union] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1440), - [anon_sym_default] = ACTIONS(1440), - [anon_sym_while] = ACTIONS(1440), - [anon_sym_do] = ACTIONS(1440), - [anon_sym_for] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1440), - [anon_sym_break] = ACTIONS(1440), - [anon_sym_continue] = ACTIONS(1440), - [anon_sym_goto] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1442), - [anon_sym_sizeof] = ACTIONS(1440), - [anon_sym___alignof__] = ACTIONS(1440), - [anon_sym___alignof] = ACTIONS(1440), - [anon_sym__alignof] = ACTIONS(1440), - [anon_sym_alignof] = ACTIONS(1440), - [anon_sym__Alignof] = ACTIONS(1440), - [anon_sym_offsetof] = ACTIONS(1440), - [anon_sym__Generic] = ACTIONS(1440), - [anon_sym_asm] = ACTIONS(1440), - [anon_sym___asm__] = ACTIONS(1440), - [sym_number_literal] = ACTIONS(1442), - [anon_sym_L_SQUOTE] = ACTIONS(1442), - [anon_sym_u_SQUOTE] = ACTIONS(1442), - [anon_sym_U_SQUOTE] = ACTIONS(1442), - [anon_sym_u8_SQUOTE] = ACTIONS(1442), - [anon_sym_SQUOTE] = ACTIONS(1442), - [anon_sym_L_DQUOTE] = ACTIONS(1442), - [anon_sym_u_DQUOTE] = ACTIONS(1442), - [anon_sym_U_DQUOTE] = ACTIONS(1442), - [anon_sym_u8_DQUOTE] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1442), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [anon_sym_NULL] = ACTIONS(1440), - [anon_sym_nullptr] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - }, - [467] = { - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [aux_sym_preproc_include_token1] = ACTIONS(1895), - [aux_sym_preproc_def_token1] = ACTIONS(1895), - [aux_sym_preproc_if_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1895), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1895), - [sym_preproc_directive] = ACTIONS(1895), - [anon_sym_LPAREN2] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_TILDE] = ACTIONS(1893), - [anon_sym_DASH] = ACTIONS(1895), - [anon_sym_PLUS] = ACTIONS(1895), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym___extension__] = ACTIONS(1895), - [anon_sym_typedef] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym___attribute__] = ACTIONS(1895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1893), - [anon_sym___declspec] = ACTIONS(1895), - [anon_sym___cdecl] = ACTIONS(1895), - [anon_sym___clrcall] = ACTIONS(1895), - [anon_sym___stdcall] = ACTIONS(1895), - [anon_sym___fastcall] = ACTIONS(1895), - [anon_sym___thiscall] = ACTIONS(1895), - [anon_sym___vectorcall] = ACTIONS(1895), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_signed] = ACTIONS(1895), - [anon_sym_unsigned] = ACTIONS(1895), - [anon_sym_long] = ACTIONS(1895), - [anon_sym_short] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_auto] = ACTIONS(1895), - [anon_sym_register] = ACTIONS(1895), - [anon_sym_inline] = ACTIONS(1895), - [anon_sym___inline] = ACTIONS(1895), - [anon_sym___inline__] = ACTIONS(1895), - [anon_sym___forceinline] = ACTIONS(1895), - [anon_sym_thread_local] = ACTIONS(1895), - [anon_sym___thread] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_constexpr] = ACTIONS(1895), - [anon_sym_volatile] = ACTIONS(1895), - [anon_sym_restrict] = ACTIONS(1895), - [anon_sym___restrict__] = ACTIONS(1895), - [anon_sym__Atomic] = ACTIONS(1895), - [anon_sym__Noreturn] = ACTIONS(1895), - [anon_sym_noreturn] = ACTIONS(1895), - [sym_primitive_type] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_switch] = ACTIONS(1895), - [anon_sym_case] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_do] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_goto] = ACTIONS(1895), - [anon_sym_DASH_DASH] = ACTIONS(1893), - [anon_sym_PLUS_PLUS] = ACTIONS(1893), - [anon_sym_sizeof] = ACTIONS(1895), - [anon_sym___alignof__] = ACTIONS(1895), - [anon_sym___alignof] = ACTIONS(1895), - [anon_sym__alignof] = ACTIONS(1895), - [anon_sym_alignof] = ACTIONS(1895), - [anon_sym__Alignof] = ACTIONS(1895), - [anon_sym_offsetof] = ACTIONS(1895), - [anon_sym__Generic] = ACTIONS(1895), - [anon_sym_asm] = ACTIONS(1895), - [anon_sym___asm__] = ACTIONS(1895), - [sym_number_literal] = ACTIONS(1893), - [anon_sym_L_SQUOTE] = ACTIONS(1893), - [anon_sym_u_SQUOTE] = ACTIONS(1893), - [anon_sym_U_SQUOTE] = ACTIONS(1893), - [anon_sym_u8_SQUOTE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1893), - [anon_sym_L_DQUOTE] = ACTIONS(1893), - [anon_sym_u_DQUOTE] = ACTIONS(1893), - [anon_sym_U_DQUOTE] = ACTIONS(1893), - [anon_sym_u8_DQUOTE] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1893), - [sym_true] = ACTIONS(1895), - [sym_false] = ACTIONS(1895), - [anon_sym_NULL] = ACTIONS(1895), - [anon_sym_nullptr] = ACTIONS(1895), - [sym_comment] = ACTIONS(3), - }, - [468] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1402), - [aux_sym_preproc_include_token1] = ACTIONS(1402), - [aux_sym_preproc_def_token1] = ACTIONS(1402), - [aux_sym_preproc_if_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), - [sym_preproc_directive] = ACTIONS(1402), - [anon_sym_LPAREN2] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), - [anon_sym___extension__] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym___attribute__] = ACTIONS(1402), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1404), - [anon_sym___declspec] = ACTIONS(1402), - [anon_sym___cdecl] = ACTIONS(1402), - [anon_sym___clrcall] = ACTIONS(1402), - [anon_sym___stdcall] = ACTIONS(1402), - [anon_sym___fastcall] = ACTIONS(1402), - [anon_sym___thiscall] = ACTIONS(1402), - [anon_sym___vectorcall] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_signed] = ACTIONS(1402), - [anon_sym_unsigned] = ACTIONS(1402), - [anon_sym_long] = ACTIONS(1402), - [anon_sym_short] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_auto] = ACTIONS(1402), - [anon_sym_register] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym___inline] = ACTIONS(1402), - [anon_sym___inline__] = ACTIONS(1402), - [anon_sym___forceinline] = ACTIONS(1402), - [anon_sym_thread_local] = ACTIONS(1402), - [anon_sym___thread] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_constexpr] = ACTIONS(1402), - [anon_sym_volatile] = ACTIONS(1402), - [anon_sym_restrict] = ACTIONS(1402), - [anon_sym___restrict__] = ACTIONS(1402), - [anon_sym__Atomic] = ACTIONS(1402), - [anon_sym__Noreturn] = ACTIONS(1402), - [anon_sym_noreturn] = ACTIONS(1402), - [sym_primitive_type] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_do] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_goto] = ACTIONS(1402), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_sizeof] = ACTIONS(1402), - [anon_sym___alignof__] = ACTIONS(1402), - [anon_sym___alignof] = ACTIONS(1402), - [anon_sym__alignof] = ACTIONS(1402), - [anon_sym_alignof] = ACTIONS(1402), - [anon_sym__Alignof] = 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), - }, - [469] = { - [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___extension__] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym___attribute__] = ACTIONS(1418), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1420), - [anon_sym___declspec] = ACTIONS(1418), - [anon_sym___cdecl] = ACTIONS(1418), - [anon_sym___clrcall] = ACTIONS(1418), - [anon_sym___stdcall] = ACTIONS(1418), - [anon_sym___fastcall] = ACTIONS(1418), - [anon_sym___thiscall] = ACTIONS(1418), - [anon_sym___vectorcall] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_signed] = ACTIONS(1418), - [anon_sym_unsigned] = ACTIONS(1418), - [anon_sym_long] = ACTIONS(1418), - [anon_sym_short] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_auto] = ACTIONS(1418), - [anon_sym_register] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym___inline] = ACTIONS(1418), - [anon_sym___inline__] = ACTIONS(1418), - [anon_sym___forceinline] = ACTIONS(1418), - [anon_sym_thread_local] = ACTIONS(1418), - [anon_sym___thread] = ACTIONS(1418), - [anon_sym_const] = ACTIONS(1418), - [anon_sym_constexpr] = ACTIONS(1418), - [anon_sym_volatile] = ACTIONS(1418), - [anon_sym_restrict] = ACTIONS(1418), - [anon_sym___restrict__] = ACTIONS(1418), - [anon_sym__Atomic] = ACTIONS(1418), - [anon_sym__Noreturn] = ACTIONS(1418), - [anon_sym_noreturn] = ACTIONS(1418), - [sym_primitive_type] = ACTIONS(1418), - [anon_sym_enum] = ACTIONS(1418), - [anon_sym_struct] = ACTIONS(1418), - [anon_sym_union] = ACTIONS(1418), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_while] = ACTIONS(1418), - [anon_sym_do] = ACTIONS(1418), - [anon_sym_for] = ACTIONS(1418), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_goto] = ACTIONS(1418), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_sizeof] = ACTIONS(1418), - [anon_sym___alignof__] = ACTIONS(1418), - [anon_sym___alignof] = ACTIONS(1418), - [anon_sym__alignof] = ACTIONS(1418), - [anon_sym_alignof] = ACTIONS(1418), - [anon_sym__Alignof] = 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), + [495] = { + [ts_builtin_sym_end] = ACTIONS(1510), + [sym_identifier] = ACTIONS(1508), + [aux_sym_preproc_include_token1] = ACTIONS(1508), + [aux_sym_preproc_def_token1] = ACTIONS(1508), + [aux_sym_preproc_if_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1508), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1508), + [sym_preproc_directive] = ACTIONS(1508), + [anon_sym_LPAREN2] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1508), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1510), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym___extension__] = ACTIONS(1508), + [anon_sym_typedef] = ACTIONS(1508), + [anon_sym_extern] = ACTIONS(1508), + [anon_sym___attribute__] = ACTIONS(1508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1510), + [anon_sym___declspec] = ACTIONS(1508), + [anon_sym___cdecl] = ACTIONS(1508), + [anon_sym___clrcall] = ACTIONS(1508), + [anon_sym___stdcall] = ACTIONS(1508), + [anon_sym___fastcall] = ACTIONS(1508), + [anon_sym___thiscall] = ACTIONS(1508), + [anon_sym___vectorcall] = ACTIONS(1508), + [anon_sym_LBRACE] = ACTIONS(1510), + [anon_sym_signed] = ACTIONS(1508), + [anon_sym_unsigned] = ACTIONS(1508), + [anon_sym_long] = ACTIONS(1508), + [anon_sym_short] = ACTIONS(1508), + [anon_sym_static] = ACTIONS(1508), + [anon_sym_auto] = ACTIONS(1508), + [anon_sym_register] = ACTIONS(1508), + [anon_sym_inline] = ACTIONS(1508), + [anon_sym___inline] = ACTIONS(1508), + [anon_sym___inline__] = ACTIONS(1508), + [anon_sym___forceinline] = ACTIONS(1508), + [anon_sym_thread_local] = ACTIONS(1508), + [anon_sym___thread] = ACTIONS(1508), + [anon_sym_const] = ACTIONS(1508), + [anon_sym_constexpr] = ACTIONS(1508), + [anon_sym_volatile] = ACTIONS(1508), + [anon_sym_restrict] = ACTIONS(1508), + [anon_sym___restrict__] = ACTIONS(1508), + [anon_sym__Atomic] = ACTIONS(1508), + [anon_sym__Noreturn] = ACTIONS(1508), + [anon_sym_noreturn] = ACTIONS(1508), + [sym_primitive_type] = ACTIONS(1508), + [anon_sym_enum] = ACTIONS(1508), + [anon_sym_struct] = ACTIONS(1508), + [anon_sym_union] = ACTIONS(1508), + [anon_sym_if] = ACTIONS(1508), + [anon_sym_switch] = ACTIONS(1508), + [anon_sym_case] = ACTIONS(1508), + [anon_sym_default] = ACTIONS(1508), + [anon_sym_while] = ACTIONS(1508), + [anon_sym_do] = ACTIONS(1508), + [anon_sym_for] = ACTIONS(1508), + [anon_sym_return] = ACTIONS(1508), + [anon_sym_break] = ACTIONS(1508), + [anon_sym_continue] = ACTIONS(1508), + [anon_sym_goto] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1510), + [anon_sym_sizeof] = ACTIONS(1508), + [anon_sym___alignof__] = ACTIONS(1508), + [anon_sym___alignof] = ACTIONS(1508), + [anon_sym__alignof] = ACTIONS(1508), + [anon_sym_alignof] = ACTIONS(1508), + [anon_sym__Alignof] = ACTIONS(1508), + [anon_sym_offsetof] = ACTIONS(1508), + [anon_sym__Generic] = ACTIONS(1508), + [anon_sym_asm] = ACTIONS(1508), + [anon_sym___asm__] = ACTIONS(1508), + [sym_number_literal] = ACTIONS(1510), + [anon_sym_L_SQUOTE] = ACTIONS(1510), + [anon_sym_u_SQUOTE] = ACTIONS(1510), + [anon_sym_U_SQUOTE] = ACTIONS(1510), + [anon_sym_u8_SQUOTE] = ACTIONS(1510), + [anon_sym_SQUOTE] = ACTIONS(1510), + [anon_sym_L_DQUOTE] = ACTIONS(1510), + [anon_sym_u_DQUOTE] = ACTIONS(1510), + [anon_sym_U_DQUOTE] = ACTIONS(1510), + [anon_sym_u8_DQUOTE] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym_true] = ACTIONS(1508), + [sym_false] = ACTIONS(1508), + [anon_sym_NULL] = ACTIONS(1508), + [anon_sym_nullptr] = ACTIONS(1508), [sym_comment] = ACTIONS(3), }, - [470] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1444), - [aux_sym_preproc_include_token1] = ACTIONS(1444), - [aux_sym_preproc_def_token1] = ACTIONS(1444), - [aux_sym_preproc_if_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1444), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1444), - [sym_preproc_directive] = ACTIONS(1444), - [anon_sym_LPAREN2] = ACTIONS(1446), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1446), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym___extension__] = ACTIONS(1444), - [anon_sym_typedef] = ACTIONS(1444), - [anon_sym_extern] = ACTIONS(1444), - [anon_sym___attribute__] = ACTIONS(1444), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1446), - [anon_sym___declspec] = ACTIONS(1444), - [anon_sym___cdecl] = ACTIONS(1444), - [anon_sym___clrcall] = ACTIONS(1444), - [anon_sym___stdcall] = ACTIONS(1444), - [anon_sym___fastcall] = ACTIONS(1444), - [anon_sym___thiscall] = ACTIONS(1444), - [anon_sym___vectorcall] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_signed] = ACTIONS(1444), - [anon_sym_unsigned] = ACTIONS(1444), - [anon_sym_long] = ACTIONS(1444), - [anon_sym_short] = ACTIONS(1444), - [anon_sym_static] = ACTIONS(1444), - [anon_sym_auto] = ACTIONS(1444), - [anon_sym_register] = ACTIONS(1444), - [anon_sym_inline] = ACTIONS(1444), - [anon_sym___inline] = ACTIONS(1444), - [anon_sym___inline__] = ACTIONS(1444), - [anon_sym___forceinline] = ACTIONS(1444), - [anon_sym_thread_local] = ACTIONS(1444), - [anon_sym___thread] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_constexpr] = ACTIONS(1444), - [anon_sym_volatile] = ACTIONS(1444), - [anon_sym_restrict] = ACTIONS(1444), - [anon_sym___restrict__] = ACTIONS(1444), - [anon_sym__Atomic] = ACTIONS(1444), - [anon_sym__Noreturn] = ACTIONS(1444), - [anon_sym_noreturn] = ACTIONS(1444), - [sym_primitive_type] = ACTIONS(1444), - [anon_sym_enum] = ACTIONS(1444), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_while] = ACTIONS(1444), - [anon_sym_do] = ACTIONS(1444), - [anon_sym_for] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1444), - [anon_sym_break] = ACTIONS(1444), - [anon_sym_continue] = ACTIONS(1444), - [anon_sym_goto] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1446), - [anon_sym_sizeof] = ACTIONS(1444), - [anon_sym___alignof__] = ACTIONS(1444), - [anon_sym___alignof] = ACTIONS(1444), - [anon_sym__alignof] = ACTIONS(1444), - [anon_sym_alignof] = ACTIONS(1444), - [anon_sym__Alignof] = ACTIONS(1444), - [anon_sym_offsetof] = ACTIONS(1444), - [anon_sym__Generic] = ACTIONS(1444), - [anon_sym_asm] = ACTIONS(1444), - [anon_sym___asm__] = ACTIONS(1444), - [sym_number_literal] = ACTIONS(1446), - [anon_sym_L_SQUOTE] = ACTIONS(1446), - [anon_sym_u_SQUOTE] = ACTIONS(1446), - [anon_sym_U_SQUOTE] = ACTIONS(1446), - [anon_sym_u8_SQUOTE] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1446), - [anon_sym_L_DQUOTE] = ACTIONS(1446), - [anon_sym_u_DQUOTE] = ACTIONS(1446), - [anon_sym_U_DQUOTE] = ACTIONS(1446), - [anon_sym_u8_DQUOTE] = ACTIONS(1446), - [anon_sym_DQUOTE] = ACTIONS(1446), - [sym_true] = ACTIONS(1444), - [sym_false] = ACTIONS(1444), - [anon_sym_NULL] = ACTIONS(1444), - [anon_sym_nullptr] = ACTIONS(1444), + [496] = { + [ts_builtin_sym_end] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1500), + [aux_sym_preproc_include_token1] = ACTIONS(1500), + [aux_sym_preproc_def_token1] = ACTIONS(1500), + [aux_sym_preproc_if_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1500), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1500), + [sym_preproc_directive] = ACTIONS(1500), + [anon_sym_LPAREN2] = ACTIONS(1502), + [anon_sym_BANG] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), + [anon_sym___extension__] = ACTIONS(1500), + [anon_sym_typedef] = ACTIONS(1500), + [anon_sym_extern] = ACTIONS(1500), + [anon_sym___attribute__] = ACTIONS(1500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1502), + [anon_sym___declspec] = ACTIONS(1500), + [anon_sym___cdecl] = ACTIONS(1500), + [anon_sym___clrcall] = ACTIONS(1500), + [anon_sym___stdcall] = ACTIONS(1500), + [anon_sym___fastcall] = ACTIONS(1500), + [anon_sym___thiscall] = ACTIONS(1500), + [anon_sym___vectorcall] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_signed] = ACTIONS(1500), + [anon_sym_unsigned] = ACTIONS(1500), + [anon_sym_long] = ACTIONS(1500), + [anon_sym_short] = ACTIONS(1500), + [anon_sym_static] = ACTIONS(1500), + [anon_sym_auto] = ACTIONS(1500), + [anon_sym_register] = ACTIONS(1500), + [anon_sym_inline] = ACTIONS(1500), + [anon_sym___inline] = ACTIONS(1500), + [anon_sym___inline__] = ACTIONS(1500), + [anon_sym___forceinline] = ACTIONS(1500), + [anon_sym_thread_local] = ACTIONS(1500), + [anon_sym___thread] = ACTIONS(1500), + [anon_sym_const] = ACTIONS(1500), + [anon_sym_constexpr] = ACTIONS(1500), + [anon_sym_volatile] = ACTIONS(1500), + [anon_sym_restrict] = ACTIONS(1500), + [anon_sym___restrict__] = ACTIONS(1500), + [anon_sym__Atomic] = ACTIONS(1500), + [anon_sym__Noreturn] = ACTIONS(1500), + [anon_sym_noreturn] = ACTIONS(1500), + [sym_primitive_type] = ACTIONS(1500), + [anon_sym_enum] = ACTIONS(1500), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_union] = ACTIONS(1500), + [anon_sym_if] = ACTIONS(1500), + [anon_sym_switch] = ACTIONS(1500), + [anon_sym_case] = ACTIONS(1500), + [anon_sym_default] = ACTIONS(1500), + [anon_sym_while] = ACTIONS(1500), + [anon_sym_do] = ACTIONS(1500), + [anon_sym_for] = ACTIONS(1500), + [anon_sym_return] = ACTIONS(1500), + [anon_sym_break] = ACTIONS(1500), + [anon_sym_continue] = ACTIONS(1500), + [anon_sym_goto] = ACTIONS(1500), + [anon_sym_DASH_DASH] = ACTIONS(1502), + [anon_sym_PLUS_PLUS] = ACTIONS(1502), + [anon_sym_sizeof] = ACTIONS(1500), + [anon_sym___alignof__] = ACTIONS(1500), + [anon_sym___alignof] = ACTIONS(1500), + [anon_sym__alignof] = ACTIONS(1500), + [anon_sym_alignof] = ACTIONS(1500), + [anon_sym__Alignof] = ACTIONS(1500), + [anon_sym_offsetof] = ACTIONS(1500), + [anon_sym__Generic] = ACTIONS(1500), + [anon_sym_asm] = ACTIONS(1500), + [anon_sym___asm__] = ACTIONS(1500), + [sym_number_literal] = ACTIONS(1502), + [anon_sym_L_SQUOTE] = ACTIONS(1502), + [anon_sym_u_SQUOTE] = ACTIONS(1502), + [anon_sym_U_SQUOTE] = ACTIONS(1502), + [anon_sym_u8_SQUOTE] = ACTIONS(1502), + [anon_sym_SQUOTE] = ACTIONS(1502), + [anon_sym_L_DQUOTE] = ACTIONS(1502), + [anon_sym_u_DQUOTE] = ACTIONS(1502), + [anon_sym_U_DQUOTE] = ACTIONS(1502), + [anon_sym_u8_DQUOTE] = ACTIONS(1502), + [anon_sym_DQUOTE] = ACTIONS(1502), + [sym_true] = ACTIONS(1500), + [sym_false] = ACTIONS(1500), + [anon_sym_NULL] = ACTIONS(1500), + [anon_sym_nullptr] = ACTIONS(1500), [sym_comment] = ACTIONS(3), }, - [471] = { - [ts_builtin_sym_end] = ACTIONS(1462), - [sym_identifier] = ACTIONS(1460), - [aux_sym_preproc_include_token1] = ACTIONS(1460), - [aux_sym_preproc_def_token1] = ACTIONS(1460), - [aux_sym_preproc_if_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1460), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1460), - [sym_preproc_directive] = ACTIONS(1460), - [anon_sym_LPAREN2] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym___extension__] = ACTIONS(1460), - [anon_sym_typedef] = ACTIONS(1460), - [anon_sym_extern] = ACTIONS(1460), - [anon_sym___attribute__] = ACTIONS(1460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1462), - [anon_sym___declspec] = ACTIONS(1460), - [anon_sym___cdecl] = ACTIONS(1460), - [anon_sym___clrcall] = ACTIONS(1460), - [anon_sym___stdcall] = ACTIONS(1460), - [anon_sym___fastcall] = ACTIONS(1460), - [anon_sym___thiscall] = ACTIONS(1460), - [anon_sym___vectorcall] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1462), - [anon_sym_signed] = ACTIONS(1460), - [anon_sym_unsigned] = ACTIONS(1460), - [anon_sym_long] = ACTIONS(1460), - [anon_sym_short] = ACTIONS(1460), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_auto] = ACTIONS(1460), - [anon_sym_register] = ACTIONS(1460), - [anon_sym_inline] = ACTIONS(1460), - [anon_sym___inline] = ACTIONS(1460), - [anon_sym___inline__] = ACTIONS(1460), - [anon_sym___forceinline] = ACTIONS(1460), - [anon_sym_thread_local] = ACTIONS(1460), - [anon_sym___thread] = ACTIONS(1460), - [anon_sym_const] = ACTIONS(1460), - [anon_sym_constexpr] = ACTIONS(1460), - [anon_sym_volatile] = ACTIONS(1460), - [anon_sym_restrict] = ACTIONS(1460), - [anon_sym___restrict__] = ACTIONS(1460), - [anon_sym__Atomic] = ACTIONS(1460), - [anon_sym__Noreturn] = ACTIONS(1460), - [anon_sym_noreturn] = ACTIONS(1460), - [sym_primitive_type] = ACTIONS(1460), - [anon_sym_enum] = ACTIONS(1460), - [anon_sym_struct] = ACTIONS(1460), - [anon_sym_union] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1460), - [anon_sym_while] = ACTIONS(1460), - [anon_sym_do] = ACTIONS(1460), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1460), - [anon_sym_break] = ACTIONS(1460), - [anon_sym_continue] = ACTIONS(1460), - [anon_sym_goto] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1462), - [anon_sym_sizeof] = ACTIONS(1460), - [anon_sym___alignof__] = ACTIONS(1460), - [anon_sym___alignof] = ACTIONS(1460), - [anon_sym__alignof] = ACTIONS(1460), - [anon_sym_alignof] = ACTIONS(1460), - [anon_sym__Alignof] = ACTIONS(1460), - [anon_sym_offsetof] = ACTIONS(1460), - [anon_sym__Generic] = ACTIONS(1460), - [anon_sym_asm] = ACTIONS(1460), - [anon_sym___asm__] = ACTIONS(1460), - [sym_number_literal] = ACTIONS(1462), - [anon_sym_L_SQUOTE] = ACTIONS(1462), - [anon_sym_u_SQUOTE] = ACTIONS(1462), - [anon_sym_U_SQUOTE] = ACTIONS(1462), - [anon_sym_u8_SQUOTE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1462), - [anon_sym_L_DQUOTE] = ACTIONS(1462), - [anon_sym_u_DQUOTE] = ACTIONS(1462), - [anon_sym_U_DQUOTE] = ACTIONS(1462), - [anon_sym_u8_DQUOTE] = ACTIONS(1462), - [anon_sym_DQUOTE] = ACTIONS(1462), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [anon_sym_NULL] = ACTIONS(1460), - [anon_sym_nullptr] = ACTIONS(1460), + [497] = { + [ts_builtin_sym_end] = ACTIONS(1468), + [sym_identifier] = ACTIONS(1466), + [aux_sym_preproc_include_token1] = ACTIONS(1466), + [aux_sym_preproc_def_token1] = ACTIONS(1466), + [aux_sym_preproc_if_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1466), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1466), + [sym_preproc_directive] = ACTIONS(1466), + [anon_sym_LPAREN2] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1466), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym___extension__] = ACTIONS(1466), + [anon_sym_typedef] = ACTIONS(1466), + [anon_sym_extern] = ACTIONS(1466), + [anon_sym___attribute__] = ACTIONS(1466), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1468), + [anon_sym___declspec] = ACTIONS(1466), + [anon_sym___cdecl] = ACTIONS(1466), + [anon_sym___clrcall] = ACTIONS(1466), + [anon_sym___stdcall] = ACTIONS(1466), + [anon_sym___fastcall] = ACTIONS(1466), + [anon_sym___thiscall] = ACTIONS(1466), + [anon_sym___vectorcall] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_signed] = ACTIONS(1466), + [anon_sym_unsigned] = ACTIONS(1466), + [anon_sym_long] = ACTIONS(1466), + [anon_sym_short] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_auto] = ACTIONS(1466), + [anon_sym_register] = ACTIONS(1466), + [anon_sym_inline] = ACTIONS(1466), + [anon_sym___inline] = ACTIONS(1466), + [anon_sym___inline__] = ACTIONS(1466), + [anon_sym___forceinline] = ACTIONS(1466), + [anon_sym_thread_local] = ACTIONS(1466), + [anon_sym___thread] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_constexpr] = ACTIONS(1466), + [anon_sym_volatile] = ACTIONS(1466), + [anon_sym_restrict] = ACTIONS(1466), + [anon_sym___restrict__] = ACTIONS(1466), + [anon_sym__Atomic] = ACTIONS(1466), + [anon_sym__Noreturn] = ACTIONS(1466), + [anon_sym_noreturn] = ACTIONS(1466), + [sym_primitive_type] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_switch] = ACTIONS(1466), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [anon_sym_do] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_goto] = ACTIONS(1466), + [anon_sym_DASH_DASH] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1468), + [anon_sym_sizeof] = ACTIONS(1466), + [anon_sym___alignof__] = ACTIONS(1466), + [anon_sym___alignof] = ACTIONS(1466), + [anon_sym__alignof] = ACTIONS(1466), + [anon_sym_alignof] = ACTIONS(1466), + [anon_sym__Alignof] = ACTIONS(1466), + [anon_sym_offsetof] = ACTIONS(1466), + [anon_sym__Generic] = ACTIONS(1466), + [anon_sym_asm] = ACTIONS(1466), + [anon_sym___asm__] = ACTIONS(1466), + [sym_number_literal] = ACTIONS(1468), + [anon_sym_L_SQUOTE] = ACTIONS(1468), + [anon_sym_u_SQUOTE] = ACTIONS(1468), + [anon_sym_U_SQUOTE] = ACTIONS(1468), + [anon_sym_u8_SQUOTE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1468), + [anon_sym_L_DQUOTE] = ACTIONS(1468), + [anon_sym_u_DQUOTE] = ACTIONS(1468), + [anon_sym_U_DQUOTE] = ACTIONS(1468), + [anon_sym_u8_DQUOTE] = ACTIONS(1468), + [anon_sym_DQUOTE] = ACTIONS(1468), + [sym_true] = ACTIONS(1466), + [sym_false] = ACTIONS(1466), + [anon_sym_NULL] = ACTIONS(1466), + [anon_sym_nullptr] = ACTIONS(1466), [sym_comment] = ACTIONS(3), }, - [472] = { - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [aux_sym_preproc_include_token1] = ACTIONS(1899), - [aux_sym_preproc_def_token1] = ACTIONS(1899), - [aux_sym_preproc_if_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1899), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1899), - [sym_preproc_directive] = ACTIONS(1899), - [anon_sym_LPAREN2] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_TILDE] = ACTIONS(1897), - [anon_sym_DASH] = ACTIONS(1899), - [anon_sym_PLUS] = ACTIONS(1899), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym___extension__] = ACTIONS(1899), - [anon_sym_typedef] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym___attribute__] = ACTIONS(1899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1897), - [anon_sym___declspec] = ACTIONS(1899), - [anon_sym___cdecl] = ACTIONS(1899), - [anon_sym___clrcall] = ACTIONS(1899), - [anon_sym___stdcall] = ACTIONS(1899), - [anon_sym___fastcall] = ACTIONS(1899), - [anon_sym___thiscall] = ACTIONS(1899), - [anon_sym___vectorcall] = ACTIONS(1899), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_signed] = ACTIONS(1899), - [anon_sym_unsigned] = ACTIONS(1899), - [anon_sym_long] = ACTIONS(1899), - [anon_sym_short] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_auto] = ACTIONS(1899), - [anon_sym_register] = ACTIONS(1899), - [anon_sym_inline] = ACTIONS(1899), - [anon_sym___inline] = ACTIONS(1899), - [anon_sym___inline__] = ACTIONS(1899), - [anon_sym___forceinline] = ACTIONS(1899), - [anon_sym_thread_local] = ACTIONS(1899), - [anon_sym___thread] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_constexpr] = ACTIONS(1899), - [anon_sym_volatile] = ACTIONS(1899), - [anon_sym_restrict] = ACTIONS(1899), - [anon_sym___restrict__] = ACTIONS(1899), - [anon_sym__Atomic] = ACTIONS(1899), - [anon_sym__Noreturn] = ACTIONS(1899), - [anon_sym_noreturn] = ACTIONS(1899), - [sym_primitive_type] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_switch] = ACTIONS(1899), - [anon_sym_case] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_do] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_goto] = ACTIONS(1899), - [anon_sym_DASH_DASH] = ACTIONS(1897), - [anon_sym_PLUS_PLUS] = ACTIONS(1897), - [anon_sym_sizeof] = ACTIONS(1899), - [anon_sym___alignof__] = ACTIONS(1899), - [anon_sym___alignof] = ACTIONS(1899), - [anon_sym__alignof] = ACTIONS(1899), - [anon_sym_alignof] = ACTIONS(1899), - [anon_sym__Alignof] = ACTIONS(1899), - [anon_sym_offsetof] = ACTIONS(1899), - [anon_sym__Generic] = ACTIONS(1899), - [anon_sym_asm] = ACTIONS(1899), - [anon_sym___asm__] = ACTIONS(1899), - [sym_number_literal] = ACTIONS(1897), - [anon_sym_L_SQUOTE] = ACTIONS(1897), - [anon_sym_u_SQUOTE] = ACTIONS(1897), - [anon_sym_U_SQUOTE] = ACTIONS(1897), - [anon_sym_u8_SQUOTE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1897), - [anon_sym_L_DQUOTE] = ACTIONS(1897), - [anon_sym_u_DQUOTE] = ACTIONS(1897), - [anon_sym_U_DQUOTE] = ACTIONS(1897), - [anon_sym_u8_DQUOTE] = ACTIONS(1897), - [anon_sym_DQUOTE] = ACTIONS(1897), - [sym_true] = ACTIONS(1899), - [sym_false] = ACTIONS(1899), - [anon_sym_NULL] = ACTIONS(1899), - [anon_sym_nullptr] = ACTIONS(1899), + [498] = { + [ts_builtin_sym_end] = ACTIONS(1514), + [sym_identifier] = ACTIONS(1512), + [aux_sym_preproc_include_token1] = ACTIONS(1512), + [aux_sym_preproc_def_token1] = ACTIONS(1512), + [aux_sym_preproc_if_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1512), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1512), + [sym_preproc_directive] = ACTIONS(1512), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_BANG] = ACTIONS(1514), + [anon_sym_TILDE] = ACTIONS(1514), + [anon_sym_DASH] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1512), + [anon_sym_STAR] = ACTIONS(1514), + [anon_sym_AMP] = ACTIONS(1514), + [anon_sym___extension__] = ACTIONS(1512), + [anon_sym_typedef] = ACTIONS(1512), + [anon_sym_extern] = ACTIONS(1512), + [anon_sym___attribute__] = ACTIONS(1512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1514), + [anon_sym___declspec] = ACTIONS(1512), + [anon_sym___cdecl] = ACTIONS(1512), + [anon_sym___clrcall] = ACTIONS(1512), + [anon_sym___stdcall] = ACTIONS(1512), + [anon_sym___fastcall] = ACTIONS(1512), + [anon_sym___thiscall] = ACTIONS(1512), + [anon_sym___vectorcall] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(1514), + [anon_sym_signed] = ACTIONS(1512), + [anon_sym_unsigned] = ACTIONS(1512), + [anon_sym_long] = ACTIONS(1512), + [anon_sym_short] = ACTIONS(1512), + [anon_sym_static] = ACTIONS(1512), + [anon_sym_auto] = ACTIONS(1512), + [anon_sym_register] = ACTIONS(1512), + [anon_sym_inline] = ACTIONS(1512), + [anon_sym___inline] = ACTIONS(1512), + [anon_sym___inline__] = ACTIONS(1512), + [anon_sym___forceinline] = ACTIONS(1512), + [anon_sym_thread_local] = ACTIONS(1512), + [anon_sym___thread] = ACTIONS(1512), + [anon_sym_const] = ACTIONS(1512), + [anon_sym_constexpr] = ACTIONS(1512), + [anon_sym_volatile] = ACTIONS(1512), + [anon_sym_restrict] = ACTIONS(1512), + [anon_sym___restrict__] = ACTIONS(1512), + [anon_sym__Atomic] = ACTIONS(1512), + [anon_sym__Noreturn] = ACTIONS(1512), + [anon_sym_noreturn] = ACTIONS(1512), + [sym_primitive_type] = ACTIONS(1512), + [anon_sym_enum] = ACTIONS(1512), + [anon_sym_struct] = ACTIONS(1512), + [anon_sym_union] = ACTIONS(1512), + [anon_sym_if] = ACTIONS(1512), + [anon_sym_switch] = ACTIONS(1512), + [anon_sym_case] = ACTIONS(1512), + [anon_sym_default] = ACTIONS(1512), + [anon_sym_while] = ACTIONS(1512), + [anon_sym_do] = ACTIONS(1512), + [anon_sym_for] = ACTIONS(1512), + [anon_sym_return] = ACTIONS(1512), + [anon_sym_break] = ACTIONS(1512), + [anon_sym_continue] = ACTIONS(1512), + [anon_sym_goto] = ACTIONS(1512), + [anon_sym_DASH_DASH] = ACTIONS(1514), + [anon_sym_PLUS_PLUS] = ACTIONS(1514), + [anon_sym_sizeof] = ACTIONS(1512), + [anon_sym___alignof__] = ACTIONS(1512), + [anon_sym___alignof] = ACTIONS(1512), + [anon_sym__alignof] = ACTIONS(1512), + [anon_sym_alignof] = ACTIONS(1512), + [anon_sym__Alignof] = ACTIONS(1512), + [anon_sym_offsetof] = ACTIONS(1512), + [anon_sym__Generic] = ACTIONS(1512), + [anon_sym_asm] = ACTIONS(1512), + [anon_sym___asm__] = ACTIONS(1512), + [sym_number_literal] = ACTIONS(1514), + [anon_sym_L_SQUOTE] = ACTIONS(1514), + [anon_sym_u_SQUOTE] = ACTIONS(1514), + [anon_sym_U_SQUOTE] = ACTIONS(1514), + [anon_sym_u8_SQUOTE] = ACTIONS(1514), + [anon_sym_SQUOTE] = ACTIONS(1514), + [anon_sym_L_DQUOTE] = ACTIONS(1514), + [anon_sym_u_DQUOTE] = ACTIONS(1514), + [anon_sym_U_DQUOTE] = ACTIONS(1514), + [anon_sym_u8_DQUOTE] = ACTIONS(1514), + [anon_sym_DQUOTE] = ACTIONS(1514), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [anon_sym_NULL] = ACTIONS(1512), + [anon_sym_nullptr] = ACTIONS(1512), [sym_comment] = ACTIONS(3), }, - [473] = { - [ts_builtin_sym_end] = ACTIONS(1438), - [sym_identifier] = ACTIONS(1436), - [aux_sym_preproc_include_token1] = ACTIONS(1436), - [aux_sym_preproc_def_token1] = ACTIONS(1436), - [aux_sym_preproc_if_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1436), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1436), - [sym_preproc_directive] = ACTIONS(1436), - [anon_sym_LPAREN2] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym___extension__] = ACTIONS(1436), - [anon_sym_typedef] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym___attribute__] = ACTIONS(1436), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1438), - [anon_sym___declspec] = ACTIONS(1436), - [anon_sym___cdecl] = ACTIONS(1436), - [anon_sym___clrcall] = ACTIONS(1436), - [anon_sym___stdcall] = ACTIONS(1436), - [anon_sym___fastcall] = ACTIONS(1436), - [anon_sym___thiscall] = ACTIONS(1436), - [anon_sym___vectorcall] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1438), - [anon_sym_signed] = ACTIONS(1436), - [anon_sym_unsigned] = ACTIONS(1436), - [anon_sym_long] = ACTIONS(1436), - [anon_sym_short] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_auto] = ACTIONS(1436), - [anon_sym_register] = ACTIONS(1436), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(1436), - [anon_sym___inline__] = ACTIONS(1436), - [anon_sym___forceinline] = ACTIONS(1436), - [anon_sym_thread_local] = ACTIONS(1436), - [anon_sym___thread] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_constexpr] = ACTIONS(1436), - [anon_sym_volatile] = ACTIONS(1436), - [anon_sym_restrict] = ACTIONS(1436), - [anon_sym___restrict__] = ACTIONS(1436), - [anon_sym__Atomic] = ACTIONS(1436), - [anon_sym__Noreturn] = ACTIONS(1436), - [anon_sym_noreturn] = ACTIONS(1436), - [sym_primitive_type] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [anon_sym_do] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_goto] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1438), - [anon_sym_sizeof] = ACTIONS(1436), - [anon_sym___alignof__] = ACTIONS(1436), - [anon_sym___alignof] = ACTIONS(1436), - [anon_sym__alignof] = ACTIONS(1436), - [anon_sym_alignof] = ACTIONS(1436), - [anon_sym__Alignof] = ACTIONS(1436), - [anon_sym_offsetof] = ACTIONS(1436), - [anon_sym__Generic] = ACTIONS(1436), - [anon_sym_asm] = ACTIONS(1436), - [anon_sym___asm__] = ACTIONS(1436), - [sym_number_literal] = ACTIONS(1438), - [anon_sym_L_SQUOTE] = ACTIONS(1438), - [anon_sym_u_SQUOTE] = ACTIONS(1438), - [anon_sym_U_SQUOTE] = ACTIONS(1438), - [anon_sym_u8_SQUOTE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1438), - [anon_sym_L_DQUOTE] = ACTIONS(1438), - [anon_sym_u_DQUOTE] = ACTIONS(1438), - [anon_sym_U_DQUOTE] = ACTIONS(1438), - [anon_sym_u8_DQUOTE] = ACTIONS(1438), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_true] = ACTIONS(1436), - [sym_false] = ACTIONS(1436), - [anon_sym_NULL] = ACTIONS(1436), - [anon_sym_nullptr] = ACTIONS(1436), + [499] = { + [ts_builtin_sym_end] = ACTIONS(1460), + [sym_identifier] = ACTIONS(1458), + [aux_sym_preproc_include_token1] = ACTIONS(1458), + [aux_sym_preproc_def_token1] = ACTIONS(1458), + [aux_sym_preproc_if_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1458), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1458), + [sym_preproc_directive] = ACTIONS(1458), + [anon_sym_LPAREN2] = ACTIONS(1460), + [anon_sym_BANG] = ACTIONS(1460), + [anon_sym_TILDE] = ACTIONS(1460), + [anon_sym_DASH] = ACTIONS(1458), + [anon_sym_PLUS] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_AMP] = ACTIONS(1460), + [anon_sym___extension__] = ACTIONS(1458), + [anon_sym_typedef] = ACTIONS(1458), + [anon_sym_extern] = ACTIONS(1458), + [anon_sym___attribute__] = ACTIONS(1458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1460), + [anon_sym___declspec] = ACTIONS(1458), + [anon_sym___cdecl] = ACTIONS(1458), + [anon_sym___clrcall] = ACTIONS(1458), + [anon_sym___stdcall] = ACTIONS(1458), + [anon_sym___fastcall] = ACTIONS(1458), + [anon_sym___thiscall] = ACTIONS(1458), + [anon_sym___vectorcall] = ACTIONS(1458), + [anon_sym_LBRACE] = ACTIONS(1460), + [anon_sym_signed] = ACTIONS(1458), + [anon_sym_unsigned] = ACTIONS(1458), + [anon_sym_long] = ACTIONS(1458), + [anon_sym_short] = ACTIONS(1458), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_auto] = ACTIONS(1458), + [anon_sym_register] = ACTIONS(1458), + [anon_sym_inline] = ACTIONS(1458), + [anon_sym___inline] = ACTIONS(1458), + [anon_sym___inline__] = ACTIONS(1458), + [anon_sym___forceinline] = ACTIONS(1458), + [anon_sym_thread_local] = ACTIONS(1458), + [anon_sym___thread] = ACTIONS(1458), + [anon_sym_const] = ACTIONS(1458), + [anon_sym_constexpr] = ACTIONS(1458), + [anon_sym_volatile] = ACTIONS(1458), + [anon_sym_restrict] = ACTIONS(1458), + [anon_sym___restrict__] = ACTIONS(1458), + [anon_sym__Atomic] = ACTIONS(1458), + [anon_sym__Noreturn] = ACTIONS(1458), + [anon_sym_noreturn] = ACTIONS(1458), + [sym_primitive_type] = ACTIONS(1458), + [anon_sym_enum] = ACTIONS(1458), + [anon_sym_struct] = ACTIONS(1458), + [anon_sym_union] = ACTIONS(1458), + [anon_sym_if] = ACTIONS(1458), + [anon_sym_switch] = ACTIONS(1458), + [anon_sym_case] = ACTIONS(1458), + [anon_sym_default] = ACTIONS(1458), + [anon_sym_while] = ACTIONS(1458), + [anon_sym_do] = ACTIONS(1458), + [anon_sym_for] = ACTIONS(1458), + [anon_sym_return] = ACTIONS(1458), + [anon_sym_break] = ACTIONS(1458), + [anon_sym_continue] = ACTIONS(1458), + [anon_sym_goto] = ACTIONS(1458), + [anon_sym_DASH_DASH] = ACTIONS(1460), + [anon_sym_PLUS_PLUS] = ACTIONS(1460), + [anon_sym_sizeof] = ACTIONS(1458), + [anon_sym___alignof__] = ACTIONS(1458), + [anon_sym___alignof] = ACTIONS(1458), + [anon_sym__alignof] = ACTIONS(1458), + [anon_sym_alignof] = ACTIONS(1458), + [anon_sym__Alignof] = ACTIONS(1458), + [anon_sym_offsetof] = ACTIONS(1458), + [anon_sym__Generic] = ACTIONS(1458), + [anon_sym_asm] = ACTIONS(1458), + [anon_sym___asm__] = ACTIONS(1458), + [sym_number_literal] = ACTIONS(1460), + [anon_sym_L_SQUOTE] = ACTIONS(1460), + [anon_sym_u_SQUOTE] = ACTIONS(1460), + [anon_sym_U_SQUOTE] = ACTIONS(1460), + [anon_sym_u8_SQUOTE] = ACTIONS(1460), + [anon_sym_SQUOTE] = ACTIONS(1460), + [anon_sym_L_DQUOTE] = ACTIONS(1460), + [anon_sym_u_DQUOTE] = ACTIONS(1460), + [anon_sym_U_DQUOTE] = ACTIONS(1460), + [anon_sym_u8_DQUOTE] = ACTIONS(1460), + [anon_sym_DQUOTE] = ACTIONS(1460), + [sym_true] = ACTIONS(1458), + [sym_false] = ACTIONS(1458), + [anon_sym_NULL] = ACTIONS(1458), + [anon_sym_nullptr] = ACTIONS(1458), [sym_comment] = ACTIONS(3), }, - [474] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1484), - [aux_sym_preproc_include_token1] = ACTIONS(1484), - [aux_sym_preproc_def_token1] = ACTIONS(1484), - [aux_sym_preproc_if_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1484), - [sym_preproc_directive] = ACTIONS(1484), - [anon_sym_LPAREN2] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1486), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_DASH] = ACTIONS(1484), - [anon_sym_PLUS] = ACTIONS(1484), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1486), - [anon_sym___extension__] = ACTIONS(1484), - [anon_sym_typedef] = ACTIONS(1484), - [anon_sym_extern] = ACTIONS(1484), - [anon_sym___attribute__] = ACTIONS(1484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1486), - [anon_sym___declspec] = ACTIONS(1484), - [anon_sym___cdecl] = ACTIONS(1484), - [anon_sym___clrcall] = ACTIONS(1484), - [anon_sym___stdcall] = ACTIONS(1484), - [anon_sym___fastcall] = ACTIONS(1484), - [anon_sym___thiscall] = ACTIONS(1484), - [anon_sym___vectorcall] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_signed] = ACTIONS(1484), - [anon_sym_unsigned] = ACTIONS(1484), - [anon_sym_long] = ACTIONS(1484), - [anon_sym_short] = ACTIONS(1484), - [anon_sym_static] = ACTIONS(1484), - [anon_sym_auto] = ACTIONS(1484), - [anon_sym_register] = ACTIONS(1484), - [anon_sym_inline] = ACTIONS(1484), - [anon_sym___inline] = ACTIONS(1484), - [anon_sym___inline__] = ACTIONS(1484), - [anon_sym___forceinline] = ACTIONS(1484), - [anon_sym_thread_local] = ACTIONS(1484), - [anon_sym___thread] = ACTIONS(1484), - [anon_sym_const] = ACTIONS(1484), - [anon_sym_constexpr] = ACTIONS(1484), - [anon_sym_volatile] = ACTIONS(1484), - [anon_sym_restrict] = ACTIONS(1484), - [anon_sym___restrict__] = ACTIONS(1484), - [anon_sym__Atomic] = ACTIONS(1484), - [anon_sym__Noreturn] = ACTIONS(1484), - [anon_sym_noreturn] = ACTIONS(1484), - [sym_primitive_type] = ACTIONS(1484), - [anon_sym_enum] = ACTIONS(1484), - [anon_sym_struct] = ACTIONS(1484), - [anon_sym_union] = ACTIONS(1484), - [anon_sym_if] = ACTIONS(1484), - [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1484), - [anon_sym_default] = ACTIONS(1484), - [anon_sym_while] = ACTIONS(1484), - [anon_sym_do] = ACTIONS(1484), - [anon_sym_for] = ACTIONS(1484), - [anon_sym_return] = ACTIONS(1484), - [anon_sym_break] = ACTIONS(1484), - [anon_sym_continue] = ACTIONS(1484), - [anon_sym_goto] = ACTIONS(1484), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_sizeof] = ACTIONS(1484), - [anon_sym___alignof__] = ACTIONS(1484), - [anon_sym___alignof] = ACTIONS(1484), - [anon_sym__alignof] = ACTIONS(1484), - [anon_sym_alignof] = ACTIONS(1484), - [anon_sym__Alignof] = ACTIONS(1484), - [anon_sym_offsetof] = ACTIONS(1484), - [anon_sym__Generic] = ACTIONS(1484), - [anon_sym_asm] = ACTIONS(1484), - [anon_sym___asm__] = ACTIONS(1484), - [sym_number_literal] = ACTIONS(1486), - [anon_sym_L_SQUOTE] = ACTIONS(1486), - [anon_sym_u_SQUOTE] = ACTIONS(1486), - [anon_sym_U_SQUOTE] = ACTIONS(1486), - [anon_sym_u8_SQUOTE] = ACTIONS(1486), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_L_DQUOTE] = ACTIONS(1486), - [anon_sym_u_DQUOTE] = ACTIONS(1486), - [anon_sym_U_DQUOTE] = ACTIONS(1486), - [anon_sym_u8_DQUOTE] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(1486), - [sym_true] = ACTIONS(1484), - [sym_false] = ACTIONS(1484), - [anon_sym_NULL] = ACTIONS(1484), - [anon_sym_nullptr] = ACTIONS(1484), + [500] = { + [ts_builtin_sym_end] = ACTIONS(1448), + [sym_identifier] = ACTIONS(1446), + [aux_sym_preproc_include_token1] = ACTIONS(1446), + [aux_sym_preproc_def_token1] = ACTIONS(1446), + [aux_sym_preproc_if_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1446), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1446), + [sym_preproc_directive] = ACTIONS(1446), + [anon_sym_LPAREN2] = ACTIONS(1448), + [anon_sym_BANG] = ACTIONS(1448), + [anon_sym_TILDE] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1446), + [anon_sym_PLUS] = ACTIONS(1446), + [anon_sym_STAR] = ACTIONS(1448), + [anon_sym_AMP] = ACTIONS(1448), + [anon_sym___extension__] = ACTIONS(1446), + [anon_sym_typedef] = ACTIONS(1446), + [anon_sym_extern] = ACTIONS(1446), + [anon_sym___attribute__] = ACTIONS(1446), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1448), + [anon_sym___declspec] = ACTIONS(1446), + [anon_sym___cdecl] = ACTIONS(1446), + [anon_sym___clrcall] = ACTIONS(1446), + [anon_sym___stdcall] = ACTIONS(1446), + [anon_sym___fastcall] = ACTIONS(1446), + [anon_sym___thiscall] = ACTIONS(1446), + [anon_sym___vectorcall] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_signed] = ACTIONS(1446), + [anon_sym_unsigned] = ACTIONS(1446), + [anon_sym_long] = ACTIONS(1446), + [anon_sym_short] = ACTIONS(1446), + [anon_sym_static] = ACTIONS(1446), + [anon_sym_auto] = ACTIONS(1446), + [anon_sym_register] = ACTIONS(1446), + [anon_sym_inline] = ACTIONS(1446), + [anon_sym___inline] = ACTIONS(1446), + [anon_sym___inline__] = ACTIONS(1446), + [anon_sym___forceinline] = ACTIONS(1446), + [anon_sym_thread_local] = ACTIONS(1446), + [anon_sym___thread] = ACTIONS(1446), + [anon_sym_const] = ACTIONS(1446), + [anon_sym_constexpr] = ACTIONS(1446), + [anon_sym_volatile] = ACTIONS(1446), + [anon_sym_restrict] = ACTIONS(1446), + [anon_sym___restrict__] = ACTIONS(1446), + [anon_sym__Atomic] = ACTIONS(1446), + [anon_sym__Noreturn] = ACTIONS(1446), + [anon_sym_noreturn] = ACTIONS(1446), + [sym_primitive_type] = ACTIONS(1446), + [anon_sym_enum] = ACTIONS(1446), + [anon_sym_struct] = ACTIONS(1446), + [anon_sym_union] = ACTIONS(1446), + [anon_sym_if] = ACTIONS(1446), + [anon_sym_switch] = ACTIONS(1446), + [anon_sym_case] = ACTIONS(1446), + [anon_sym_default] = ACTIONS(1446), + [anon_sym_while] = ACTIONS(1446), + [anon_sym_do] = ACTIONS(1446), + [anon_sym_for] = ACTIONS(1446), + [anon_sym_return] = ACTIONS(1446), + [anon_sym_break] = ACTIONS(1446), + [anon_sym_continue] = ACTIONS(1446), + [anon_sym_goto] = ACTIONS(1446), + [anon_sym_DASH_DASH] = ACTIONS(1448), + [anon_sym_PLUS_PLUS] = ACTIONS(1448), + [anon_sym_sizeof] = ACTIONS(1446), + [anon_sym___alignof__] = ACTIONS(1446), + [anon_sym___alignof] = ACTIONS(1446), + [anon_sym__alignof] = ACTIONS(1446), + [anon_sym_alignof] = ACTIONS(1446), + [anon_sym__Alignof] = ACTIONS(1446), + [anon_sym_offsetof] = ACTIONS(1446), + [anon_sym__Generic] = ACTIONS(1446), + [anon_sym_asm] = ACTIONS(1446), + [anon_sym___asm__] = ACTIONS(1446), + [sym_number_literal] = ACTIONS(1448), + [anon_sym_L_SQUOTE] = ACTIONS(1448), + [anon_sym_u_SQUOTE] = ACTIONS(1448), + [anon_sym_U_SQUOTE] = ACTIONS(1448), + [anon_sym_u8_SQUOTE] = ACTIONS(1448), + [anon_sym_SQUOTE] = ACTIONS(1448), + [anon_sym_L_DQUOTE] = ACTIONS(1448), + [anon_sym_u_DQUOTE] = ACTIONS(1448), + [anon_sym_U_DQUOTE] = ACTIONS(1448), + [anon_sym_u8_DQUOTE] = ACTIONS(1448), + [anon_sym_DQUOTE] = ACTIONS(1448), + [sym_true] = ACTIONS(1446), + [sym_false] = ACTIONS(1446), + [anon_sym_NULL] = ACTIONS(1446), + [anon_sym_nullptr] = ACTIONS(1446), [sym_comment] = ACTIONS(3), }, - [475] = { + [501] = { [ts_builtin_sym_end] = ACTIONS(1498), [sym_identifier] = ACTIONS(1496), [aux_sym_preproc_include_token1] = ACTIONS(1496), @@ -67938,607 +70687,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1496), [sym_comment] = ACTIONS(3), }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(1466), - [sym_identifier] = ACTIONS(1464), - [aux_sym_preproc_include_token1] = ACTIONS(1464), - [aux_sym_preproc_def_token1] = ACTIONS(1464), - [aux_sym_preproc_if_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1464), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1464), - [sym_preproc_directive] = ACTIONS(1464), - [anon_sym_LPAREN2] = ACTIONS(1466), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1464), - [anon_sym_PLUS] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1466), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym___extension__] = ACTIONS(1464), - [anon_sym_typedef] = ACTIONS(1464), - [anon_sym_extern] = ACTIONS(1464), - [anon_sym___attribute__] = ACTIONS(1464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1466), - [anon_sym___declspec] = ACTIONS(1464), - [anon_sym___cdecl] = ACTIONS(1464), - [anon_sym___clrcall] = ACTIONS(1464), - [anon_sym___stdcall] = ACTIONS(1464), - [anon_sym___fastcall] = ACTIONS(1464), - [anon_sym___thiscall] = ACTIONS(1464), - [anon_sym___vectorcall] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1466), - [anon_sym_signed] = ACTIONS(1464), - [anon_sym_unsigned] = ACTIONS(1464), - [anon_sym_long] = ACTIONS(1464), - [anon_sym_short] = ACTIONS(1464), - [anon_sym_static] = ACTIONS(1464), - [anon_sym_auto] = ACTIONS(1464), - [anon_sym_register] = ACTIONS(1464), - [anon_sym_inline] = ACTIONS(1464), - [anon_sym___inline] = ACTIONS(1464), - [anon_sym___inline__] = ACTIONS(1464), - [anon_sym___forceinline] = ACTIONS(1464), - [anon_sym_thread_local] = ACTIONS(1464), - [anon_sym___thread] = ACTIONS(1464), - [anon_sym_const] = ACTIONS(1464), - [anon_sym_constexpr] = ACTIONS(1464), - [anon_sym_volatile] = ACTIONS(1464), - [anon_sym_restrict] = ACTIONS(1464), - [anon_sym___restrict__] = ACTIONS(1464), - [anon_sym__Atomic] = ACTIONS(1464), - [anon_sym__Noreturn] = ACTIONS(1464), - [anon_sym_noreturn] = ACTIONS(1464), - [sym_primitive_type] = ACTIONS(1464), - [anon_sym_enum] = ACTIONS(1464), - [anon_sym_struct] = ACTIONS(1464), - [anon_sym_union] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1464), - [anon_sym_default] = ACTIONS(1464), - [anon_sym_while] = ACTIONS(1464), - [anon_sym_do] = ACTIONS(1464), - [anon_sym_for] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1464), - [anon_sym_break] = ACTIONS(1464), - [anon_sym_continue] = ACTIONS(1464), - [anon_sym_goto] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1466), - [anon_sym_sizeof] = ACTIONS(1464), - [anon_sym___alignof__] = ACTIONS(1464), - [anon_sym___alignof] = ACTIONS(1464), - [anon_sym__alignof] = ACTIONS(1464), - [anon_sym_alignof] = ACTIONS(1464), - [anon_sym__Alignof] = ACTIONS(1464), - [anon_sym_offsetof] = ACTIONS(1464), - [anon_sym__Generic] = ACTIONS(1464), - [anon_sym_asm] = ACTIONS(1464), - [anon_sym___asm__] = ACTIONS(1464), - [sym_number_literal] = ACTIONS(1466), - [anon_sym_L_SQUOTE] = ACTIONS(1466), - [anon_sym_u_SQUOTE] = ACTIONS(1466), - [anon_sym_U_SQUOTE] = ACTIONS(1466), - [anon_sym_u8_SQUOTE] = ACTIONS(1466), - [anon_sym_SQUOTE] = ACTIONS(1466), - [anon_sym_L_DQUOTE] = ACTIONS(1466), - [anon_sym_u_DQUOTE] = ACTIONS(1466), - [anon_sym_U_DQUOTE] = ACTIONS(1466), - [anon_sym_u8_DQUOTE] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym_true] = ACTIONS(1464), - [sym_false] = ACTIONS(1464), - [anon_sym_NULL] = ACTIONS(1464), - [anon_sym_nullptr] = ACTIONS(1464), + [502] = { + [ts_builtin_sym_end] = ACTIONS(1464), + [sym_identifier] = ACTIONS(1462), + [aux_sym_preproc_include_token1] = ACTIONS(1462), + [aux_sym_preproc_def_token1] = ACTIONS(1462), + [aux_sym_preproc_if_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), + [sym_preproc_directive] = ACTIONS(1462), + [anon_sym_LPAREN2] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1462), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym___extension__] = ACTIONS(1462), + [anon_sym_typedef] = ACTIONS(1462), + [anon_sym_extern] = ACTIONS(1462), + [anon_sym___attribute__] = ACTIONS(1462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1464), + [anon_sym___declspec] = ACTIONS(1462), + [anon_sym___cdecl] = ACTIONS(1462), + [anon_sym___clrcall] = ACTIONS(1462), + [anon_sym___stdcall] = ACTIONS(1462), + [anon_sym___fastcall] = ACTIONS(1462), + [anon_sym___thiscall] = ACTIONS(1462), + [anon_sym___vectorcall] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_signed] = ACTIONS(1462), + [anon_sym_unsigned] = ACTIONS(1462), + [anon_sym_long] = ACTIONS(1462), + [anon_sym_short] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_auto] = ACTIONS(1462), + [anon_sym_register] = ACTIONS(1462), + [anon_sym_inline] = ACTIONS(1462), + [anon_sym___inline] = ACTIONS(1462), + [anon_sym___inline__] = ACTIONS(1462), + [anon_sym___forceinline] = ACTIONS(1462), + [anon_sym_thread_local] = ACTIONS(1462), + [anon_sym___thread] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_constexpr] = ACTIONS(1462), + [anon_sym_volatile] = ACTIONS(1462), + [anon_sym_restrict] = ACTIONS(1462), + [anon_sym___restrict__] = ACTIONS(1462), + [anon_sym__Atomic] = ACTIONS(1462), + [anon_sym__Noreturn] = ACTIONS(1462), + [anon_sym_noreturn] = ACTIONS(1462), + [sym_primitive_type] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1462), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [anon_sym_do] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_goto] = ACTIONS(1462), + [anon_sym_DASH_DASH] = ACTIONS(1464), + [anon_sym_PLUS_PLUS] = ACTIONS(1464), + [anon_sym_sizeof] = ACTIONS(1462), + [anon_sym___alignof__] = ACTIONS(1462), + [anon_sym___alignof] = ACTIONS(1462), + [anon_sym__alignof] = ACTIONS(1462), + [anon_sym_alignof] = ACTIONS(1462), + [anon_sym__Alignof] = ACTIONS(1462), + [anon_sym_offsetof] = ACTIONS(1462), + [anon_sym__Generic] = ACTIONS(1462), + [anon_sym_asm] = ACTIONS(1462), + [anon_sym___asm__] = ACTIONS(1462), + [sym_number_literal] = ACTIONS(1464), + [anon_sym_L_SQUOTE] = ACTIONS(1464), + [anon_sym_u_SQUOTE] = ACTIONS(1464), + [anon_sym_U_SQUOTE] = ACTIONS(1464), + [anon_sym_u8_SQUOTE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1464), + [anon_sym_L_DQUOTE] = ACTIONS(1464), + [anon_sym_u_DQUOTE] = ACTIONS(1464), + [anon_sym_U_DQUOTE] = ACTIONS(1464), + [anon_sym_u8_DQUOTE] = ACTIONS(1464), + [anon_sym_DQUOTE] = ACTIONS(1464), + [sym_true] = ACTIONS(1462), + [sym_false] = ACTIONS(1462), + [anon_sym_NULL] = ACTIONS(1462), + [anon_sym_nullptr] = ACTIONS(1462), [sym_comment] = ACTIONS(3), }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1432), - [aux_sym_preproc_include_token1] = ACTIONS(1432), - [aux_sym_preproc_def_token1] = ACTIONS(1432), - [aux_sym_preproc_if_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1432), - [sym_preproc_directive] = ACTIONS(1432), - [anon_sym_LPAREN2] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym___extension__] = ACTIONS(1432), - [anon_sym_typedef] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym___attribute__] = ACTIONS(1432), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1434), - [anon_sym___declspec] = ACTIONS(1432), - [anon_sym___cdecl] = ACTIONS(1432), - [anon_sym___clrcall] = ACTIONS(1432), - [anon_sym___stdcall] = ACTIONS(1432), - [anon_sym___fastcall] = ACTIONS(1432), - [anon_sym___thiscall] = ACTIONS(1432), - [anon_sym___vectorcall] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_signed] = ACTIONS(1432), - [anon_sym_unsigned] = ACTIONS(1432), - [anon_sym_long] = ACTIONS(1432), - [anon_sym_short] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_auto] = ACTIONS(1432), - [anon_sym_register] = ACTIONS(1432), - [anon_sym_inline] = ACTIONS(1432), - [anon_sym___inline] = ACTIONS(1432), - [anon_sym___inline__] = ACTIONS(1432), - [anon_sym___forceinline] = ACTIONS(1432), - [anon_sym_thread_local] = ACTIONS(1432), - [anon_sym___thread] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_constexpr] = ACTIONS(1432), - [anon_sym_volatile] = ACTIONS(1432), - [anon_sym_restrict] = ACTIONS(1432), - [anon_sym___restrict__] = ACTIONS(1432), - [anon_sym__Atomic] = ACTIONS(1432), - [anon_sym__Noreturn] = ACTIONS(1432), - [anon_sym_noreturn] = ACTIONS(1432), - [sym_primitive_type] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [anon_sym_do] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_goto] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_sizeof] = ACTIONS(1432), - [anon_sym___alignof__] = ACTIONS(1432), - [anon_sym___alignof] = ACTIONS(1432), - [anon_sym__alignof] = ACTIONS(1432), - [anon_sym_alignof] = ACTIONS(1432), - [anon_sym__Alignof] = ACTIONS(1432), - [anon_sym_offsetof] = ACTIONS(1432), - [anon_sym__Generic] = ACTIONS(1432), - [anon_sym_asm] = ACTIONS(1432), - [anon_sym___asm__] = ACTIONS(1432), - [sym_number_literal] = ACTIONS(1434), - [anon_sym_L_SQUOTE] = ACTIONS(1434), - [anon_sym_u_SQUOTE] = ACTIONS(1434), - [anon_sym_U_SQUOTE] = ACTIONS(1434), - [anon_sym_u8_SQUOTE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1434), - [anon_sym_L_DQUOTE] = ACTIONS(1434), - [anon_sym_u_DQUOTE] = ACTIONS(1434), - [anon_sym_U_DQUOTE] = ACTIONS(1434), - [anon_sym_u8_DQUOTE] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(1434), - [sym_true] = ACTIONS(1432), - [sym_false] = ACTIONS(1432), - [anon_sym_NULL] = ACTIONS(1432), - [anon_sym_nullptr] = ACTIONS(1432), + [503] = { + [ts_builtin_sym_end] = ACTIONS(1416), + [sym_identifier] = ACTIONS(1414), + [aux_sym_preproc_include_token1] = ACTIONS(1414), + [aux_sym_preproc_def_token1] = ACTIONS(1414), + [aux_sym_preproc_if_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1414), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1414), + [sym_preproc_directive] = ACTIONS(1414), + [anon_sym_LPAREN2] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_TILDE] = ACTIONS(1416), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym___extension__] = ACTIONS(1414), + [anon_sym_typedef] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym___attribute__] = ACTIONS(1414), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1416), + [anon_sym___declspec] = ACTIONS(1414), + [anon_sym___cdecl] = ACTIONS(1414), + [anon_sym___clrcall] = ACTIONS(1414), + [anon_sym___stdcall] = ACTIONS(1414), + [anon_sym___fastcall] = ACTIONS(1414), + [anon_sym___thiscall] = ACTIONS(1414), + [anon_sym___vectorcall] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1416), + [anon_sym_signed] = ACTIONS(1414), + [anon_sym_unsigned] = ACTIONS(1414), + [anon_sym_long] = ACTIONS(1414), + [anon_sym_short] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_auto] = ACTIONS(1414), + [anon_sym_register] = ACTIONS(1414), + [anon_sym_inline] = ACTIONS(1414), + [anon_sym___inline] = ACTIONS(1414), + [anon_sym___inline__] = ACTIONS(1414), + [anon_sym___forceinline] = ACTIONS(1414), + [anon_sym_thread_local] = ACTIONS(1414), + [anon_sym___thread] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_constexpr] = ACTIONS(1414), + [anon_sym_volatile] = ACTIONS(1414), + [anon_sym_restrict] = ACTIONS(1414), + [anon_sym___restrict__] = ACTIONS(1414), + [anon_sym__Atomic] = ACTIONS(1414), + [anon_sym__Noreturn] = ACTIONS(1414), + [anon_sym_noreturn] = ACTIONS(1414), + [sym_primitive_type] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_switch] = ACTIONS(1414), + [anon_sym_case] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_do] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_goto] = ACTIONS(1414), + [anon_sym_DASH_DASH] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1416), + [anon_sym_sizeof] = ACTIONS(1414), + [anon_sym___alignof__] = ACTIONS(1414), + [anon_sym___alignof] = ACTIONS(1414), + [anon_sym__alignof] = ACTIONS(1414), + [anon_sym_alignof] = ACTIONS(1414), + [anon_sym__Alignof] = 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), }, - [478] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_identifier] = ACTIONS(1480), - [aux_sym_preproc_include_token1] = ACTIONS(1480), - [aux_sym_preproc_def_token1] = ACTIONS(1480), - [aux_sym_preproc_if_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1480), - [sym_preproc_directive] = ACTIONS(1480), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym___extension__] = ACTIONS(1480), - [anon_sym_typedef] = ACTIONS(1480), - [anon_sym_extern] = ACTIONS(1480), - [anon_sym___attribute__] = ACTIONS(1480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1482), - [anon_sym___declspec] = ACTIONS(1480), - [anon_sym___cdecl] = ACTIONS(1480), - [anon_sym___clrcall] = ACTIONS(1480), - [anon_sym___stdcall] = ACTIONS(1480), - [anon_sym___fastcall] = ACTIONS(1480), - [anon_sym___thiscall] = ACTIONS(1480), - [anon_sym___vectorcall] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_signed] = ACTIONS(1480), - [anon_sym_unsigned] = ACTIONS(1480), - [anon_sym_long] = ACTIONS(1480), - [anon_sym_short] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_auto] = ACTIONS(1480), - [anon_sym_register] = ACTIONS(1480), - [anon_sym_inline] = ACTIONS(1480), - [anon_sym___inline] = ACTIONS(1480), - [anon_sym___inline__] = ACTIONS(1480), - [anon_sym___forceinline] = ACTIONS(1480), - [anon_sym_thread_local] = ACTIONS(1480), - [anon_sym___thread] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_constexpr] = ACTIONS(1480), - [anon_sym_volatile] = ACTIONS(1480), - [anon_sym_restrict] = ACTIONS(1480), - [anon_sym___restrict__] = ACTIONS(1480), - [anon_sym__Atomic] = ACTIONS(1480), - [anon_sym__Noreturn] = ACTIONS(1480), - [anon_sym_noreturn] = ACTIONS(1480), - [sym_primitive_type] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [anon_sym_do] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_goto] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1482), - [anon_sym_PLUS_PLUS] = ACTIONS(1482), - [anon_sym_sizeof] = ACTIONS(1480), - [anon_sym___alignof__] = ACTIONS(1480), - [anon_sym___alignof] = ACTIONS(1480), - [anon_sym__alignof] = ACTIONS(1480), - [anon_sym_alignof] = ACTIONS(1480), - [anon_sym__Alignof] = ACTIONS(1480), - [anon_sym_offsetof] = ACTIONS(1480), - [anon_sym__Generic] = ACTIONS(1480), - [anon_sym_asm] = ACTIONS(1480), - [anon_sym___asm__] = ACTIONS(1480), - [sym_number_literal] = ACTIONS(1482), - [anon_sym_L_SQUOTE] = ACTIONS(1482), - [anon_sym_u_SQUOTE] = ACTIONS(1482), - [anon_sym_U_SQUOTE] = ACTIONS(1482), - [anon_sym_u8_SQUOTE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1482), - [anon_sym_L_DQUOTE] = ACTIONS(1482), - [anon_sym_u_DQUOTE] = ACTIONS(1482), - [anon_sym_U_DQUOTE] = ACTIONS(1482), - [anon_sym_u8_DQUOTE] = ACTIONS(1482), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_true] = ACTIONS(1480), - [sym_false] = ACTIONS(1480), - [anon_sym_NULL] = ACTIONS(1480), - [anon_sym_nullptr] = ACTIONS(1480), + [504] = { + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [aux_sym_preproc_include_token1] = ACTIONS(1911), + [aux_sym_preproc_def_token1] = ACTIONS(1911), + [aux_sym_preproc_if_token1] = ACTIONS(1911), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1911), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1911), + [sym_preproc_directive] = ACTIONS(1911), + [anon_sym_LPAREN2] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1909), + [anon_sym___extension__] = ACTIONS(1911), + [anon_sym_typedef] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym___attribute__] = ACTIONS(1911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1909), + [anon_sym___declspec] = ACTIONS(1911), + [anon_sym___cdecl] = ACTIONS(1911), + [anon_sym___clrcall] = ACTIONS(1911), + [anon_sym___stdcall] = ACTIONS(1911), + [anon_sym___fastcall] = ACTIONS(1911), + [anon_sym___thiscall] = ACTIONS(1911), + [anon_sym___vectorcall] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_signed] = ACTIONS(1911), + [anon_sym_unsigned] = ACTIONS(1911), + [anon_sym_long] = ACTIONS(1911), + [anon_sym_short] = ACTIONS(1911), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_auto] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym___inline] = ACTIONS(1911), + [anon_sym___inline__] = ACTIONS(1911), + [anon_sym___forceinline] = ACTIONS(1911), + [anon_sym_thread_local] = ACTIONS(1911), + [anon_sym___thread] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_constexpr] = ACTIONS(1911), + [anon_sym_volatile] = ACTIONS(1911), + [anon_sym_restrict] = ACTIONS(1911), + [anon_sym___restrict__] = ACTIONS(1911), + [anon_sym__Atomic] = ACTIONS(1911), + [anon_sym__Noreturn] = ACTIONS(1911), + [anon_sym_noreturn] = ACTIONS(1911), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_switch] = ACTIONS(1911), + [anon_sym_case] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_goto] = ACTIONS(1911), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_sizeof] = ACTIONS(1911), + [anon_sym___alignof__] = ACTIONS(1911), + [anon_sym___alignof] = ACTIONS(1911), + [anon_sym__alignof] = ACTIONS(1911), + [anon_sym_alignof] = ACTIONS(1911), + [anon_sym__Alignof] = ACTIONS(1911), + [anon_sym_offsetof] = ACTIONS(1911), + [anon_sym__Generic] = ACTIONS(1911), + [anon_sym_asm] = ACTIONS(1911), + [anon_sym___asm__] = ACTIONS(1911), + [sym_number_literal] = ACTIONS(1909), + [anon_sym_L_SQUOTE] = ACTIONS(1909), + [anon_sym_u_SQUOTE] = ACTIONS(1909), + [anon_sym_U_SQUOTE] = ACTIONS(1909), + [anon_sym_u8_SQUOTE] = ACTIONS(1909), + [anon_sym_SQUOTE] = ACTIONS(1909), + [anon_sym_L_DQUOTE] = ACTIONS(1909), + [anon_sym_u_DQUOTE] = ACTIONS(1909), + [anon_sym_U_DQUOTE] = ACTIONS(1909), + [anon_sym_u8_DQUOTE] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym_true] = ACTIONS(1911), + [sym_false] = ACTIONS(1911), + [anon_sym_NULL] = ACTIONS(1911), + [anon_sym_nullptr] = ACTIONS(1911), [sym_comment] = ACTIONS(3), }, - [479] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_identifier] = ACTIONS(1456), - [aux_sym_preproc_include_token1] = ACTIONS(1456), - [aux_sym_preproc_def_token1] = ACTIONS(1456), - [aux_sym_preproc_if_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1456), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1456), - [sym_preproc_directive] = ACTIONS(1456), - [anon_sym_LPAREN2] = ACTIONS(1458), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1456), - [anon_sym_PLUS] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1458), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym___extension__] = ACTIONS(1456), - [anon_sym_typedef] = ACTIONS(1456), - [anon_sym_extern] = ACTIONS(1456), - [anon_sym___attribute__] = ACTIONS(1456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1458), - [anon_sym___declspec] = ACTIONS(1456), - [anon_sym___cdecl] = ACTIONS(1456), - [anon_sym___clrcall] = ACTIONS(1456), - [anon_sym___stdcall] = ACTIONS(1456), - [anon_sym___fastcall] = ACTIONS(1456), - [anon_sym___thiscall] = ACTIONS(1456), - [anon_sym___vectorcall] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1458), - [anon_sym_signed] = ACTIONS(1456), - [anon_sym_unsigned] = ACTIONS(1456), - [anon_sym_long] = ACTIONS(1456), - [anon_sym_short] = ACTIONS(1456), - [anon_sym_static] = ACTIONS(1456), - [anon_sym_auto] = ACTIONS(1456), - [anon_sym_register] = ACTIONS(1456), - [anon_sym_inline] = ACTIONS(1456), - [anon_sym___inline] = ACTIONS(1456), - [anon_sym___inline__] = ACTIONS(1456), - [anon_sym___forceinline] = ACTIONS(1456), - [anon_sym_thread_local] = ACTIONS(1456), - [anon_sym___thread] = ACTIONS(1456), - [anon_sym_const] = ACTIONS(1456), - [anon_sym_constexpr] = ACTIONS(1456), - [anon_sym_volatile] = ACTIONS(1456), - [anon_sym_restrict] = ACTIONS(1456), - [anon_sym___restrict__] = ACTIONS(1456), - [anon_sym__Atomic] = ACTIONS(1456), - [anon_sym__Noreturn] = ACTIONS(1456), - [anon_sym_noreturn] = ACTIONS(1456), - [sym_primitive_type] = ACTIONS(1456), - [anon_sym_enum] = ACTIONS(1456), - [anon_sym_struct] = ACTIONS(1456), - [anon_sym_union] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1456), - [anon_sym_default] = ACTIONS(1456), - [anon_sym_while] = ACTIONS(1456), - [anon_sym_do] = ACTIONS(1456), - [anon_sym_for] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1456), - [anon_sym_break] = ACTIONS(1456), - [anon_sym_continue] = ACTIONS(1456), - [anon_sym_goto] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1458), - [anon_sym_sizeof] = ACTIONS(1456), - [anon_sym___alignof__] = ACTIONS(1456), - [anon_sym___alignof] = ACTIONS(1456), - [anon_sym__alignof] = ACTIONS(1456), - [anon_sym_alignof] = ACTIONS(1456), - [anon_sym__Alignof] = ACTIONS(1456), - [anon_sym_offsetof] = ACTIONS(1456), - [anon_sym__Generic] = ACTIONS(1456), - [anon_sym_asm] = ACTIONS(1456), - [anon_sym___asm__] = ACTIONS(1456), - [sym_number_literal] = ACTIONS(1458), - [anon_sym_L_SQUOTE] = ACTIONS(1458), - [anon_sym_u_SQUOTE] = ACTIONS(1458), - [anon_sym_U_SQUOTE] = ACTIONS(1458), - [anon_sym_u8_SQUOTE] = ACTIONS(1458), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_L_DQUOTE] = ACTIONS(1458), - [anon_sym_u_DQUOTE] = ACTIONS(1458), - [anon_sym_U_DQUOTE] = ACTIONS(1458), - [anon_sym_u8_DQUOTE] = ACTIONS(1458), - [anon_sym_DQUOTE] = ACTIONS(1458), - [sym_true] = ACTIONS(1456), - [sym_false] = ACTIONS(1456), - [anon_sym_NULL] = ACTIONS(1456), - [anon_sym_nullptr] = ACTIONS(1456), + [505] = { + [ts_builtin_sym_end] = ACTIONS(1518), + [sym_identifier] = ACTIONS(1516), + [aux_sym_preproc_include_token1] = ACTIONS(1516), + [aux_sym_preproc_def_token1] = ACTIONS(1516), + [aux_sym_preproc_if_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1516), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1516), + [sym_preproc_directive] = ACTIONS(1516), + [anon_sym_LPAREN2] = ACTIONS(1518), + [anon_sym_BANG] = ACTIONS(1518), + [anon_sym_TILDE] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1516), + [anon_sym_STAR] = ACTIONS(1518), + [anon_sym_AMP] = ACTIONS(1518), + [anon_sym___extension__] = ACTIONS(1516), + [anon_sym_typedef] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym___attribute__] = ACTIONS(1516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1518), + [anon_sym___declspec] = ACTIONS(1516), + [anon_sym___cdecl] = ACTIONS(1516), + [anon_sym___clrcall] = ACTIONS(1516), + [anon_sym___stdcall] = ACTIONS(1516), + [anon_sym___fastcall] = ACTIONS(1516), + [anon_sym___thiscall] = ACTIONS(1516), + [anon_sym___vectorcall] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_signed] = ACTIONS(1516), + [anon_sym_unsigned] = ACTIONS(1516), + [anon_sym_long] = ACTIONS(1516), + [anon_sym_short] = ACTIONS(1516), + [anon_sym_static] = ACTIONS(1516), + [anon_sym_auto] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_inline] = ACTIONS(1516), + [anon_sym___inline] = ACTIONS(1516), + [anon_sym___inline__] = ACTIONS(1516), + [anon_sym___forceinline] = ACTIONS(1516), + [anon_sym_thread_local] = ACTIONS(1516), + [anon_sym___thread] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [anon_sym_constexpr] = ACTIONS(1516), + [anon_sym_volatile] = ACTIONS(1516), + [anon_sym_restrict] = ACTIONS(1516), + [anon_sym___restrict__] = ACTIONS(1516), + [anon_sym__Atomic] = ACTIONS(1516), + [anon_sym__Noreturn] = ACTIONS(1516), + [anon_sym_noreturn] = ACTIONS(1516), + [sym_primitive_type] = ACTIONS(1516), + [anon_sym_enum] = ACTIONS(1516), + [anon_sym_struct] = ACTIONS(1516), + [anon_sym_union] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_switch] = ACTIONS(1516), + [anon_sym_case] = ACTIONS(1516), + [anon_sym_default] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_goto] = ACTIONS(1516), + [anon_sym_DASH_DASH] = ACTIONS(1518), + [anon_sym_PLUS_PLUS] = ACTIONS(1518), + [anon_sym_sizeof] = ACTIONS(1516), + [anon_sym___alignof__] = ACTIONS(1516), + [anon_sym___alignof] = ACTIONS(1516), + [anon_sym__alignof] = ACTIONS(1516), + [anon_sym_alignof] = ACTIONS(1516), + [anon_sym__Alignof] = ACTIONS(1516), + [anon_sym_offsetof] = ACTIONS(1516), + [anon_sym__Generic] = ACTIONS(1516), + [anon_sym_asm] = ACTIONS(1516), + [anon_sym___asm__] = ACTIONS(1516), + [sym_number_literal] = ACTIONS(1518), + [anon_sym_L_SQUOTE] = ACTIONS(1518), + [anon_sym_u_SQUOTE] = ACTIONS(1518), + [anon_sym_U_SQUOTE] = ACTIONS(1518), + [anon_sym_u8_SQUOTE] = ACTIONS(1518), + [anon_sym_SQUOTE] = ACTIONS(1518), + [anon_sym_L_DQUOTE] = ACTIONS(1518), + [anon_sym_u_DQUOTE] = ACTIONS(1518), + [anon_sym_U_DQUOTE] = ACTIONS(1518), + [anon_sym_u8_DQUOTE] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym_true] = ACTIONS(1516), + [sym_false] = ACTIONS(1516), + [anon_sym_NULL] = ACTIONS(1516), + [anon_sym_nullptr] = ACTIONS(1516), [sym_comment] = ACTIONS(3), }, - [480] = { - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1424), - [aux_sym_preproc_include_token1] = ACTIONS(1424), - [aux_sym_preproc_def_token1] = ACTIONS(1424), - [aux_sym_preproc_if_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1424), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1424), - [sym_preproc_directive] = ACTIONS(1424), - [anon_sym_LPAREN2] = ACTIONS(1426), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1424), - [anon_sym_PLUS] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1426), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym___extension__] = ACTIONS(1424), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym___attribute__] = ACTIONS(1424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1426), - [anon_sym___declspec] = ACTIONS(1424), - [anon_sym___cdecl] = ACTIONS(1424), - [anon_sym___clrcall] = ACTIONS(1424), - [anon_sym___stdcall] = ACTIONS(1424), - [anon_sym___fastcall] = ACTIONS(1424), - [anon_sym___thiscall] = ACTIONS(1424), - [anon_sym___vectorcall] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_signed] = ACTIONS(1424), - [anon_sym_unsigned] = ACTIONS(1424), - [anon_sym_long] = ACTIONS(1424), - [anon_sym_short] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_auto] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_inline] = ACTIONS(1424), - [anon_sym___inline] = ACTIONS(1424), - [anon_sym___inline__] = ACTIONS(1424), - [anon_sym___forceinline] = ACTIONS(1424), - [anon_sym_thread_local] = ACTIONS(1424), - [anon_sym___thread] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_constexpr] = ACTIONS(1424), - [anon_sym_volatile] = ACTIONS(1424), - [anon_sym_restrict] = ACTIONS(1424), - [anon_sym___restrict__] = ACTIONS(1424), - [anon_sym__Atomic] = ACTIONS(1424), - [anon_sym__Noreturn] = ACTIONS(1424), - [anon_sym_noreturn] = ACTIONS(1424), - [sym_primitive_type] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_goto] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1426), - [anon_sym_sizeof] = ACTIONS(1424), - [anon_sym___alignof__] = ACTIONS(1424), - [anon_sym___alignof] = ACTIONS(1424), - [anon_sym__alignof] = ACTIONS(1424), - [anon_sym_alignof] = ACTIONS(1424), - [anon_sym__Alignof] = ACTIONS(1424), - [anon_sym_offsetof] = ACTIONS(1424), - [anon_sym__Generic] = ACTIONS(1424), - [anon_sym_asm] = ACTIONS(1424), - [anon_sym___asm__] = ACTIONS(1424), - [sym_number_literal] = ACTIONS(1426), - [anon_sym_L_SQUOTE] = ACTIONS(1426), - [anon_sym_u_SQUOTE] = ACTIONS(1426), - [anon_sym_U_SQUOTE] = ACTIONS(1426), - [anon_sym_u8_SQUOTE] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1426), - [anon_sym_L_DQUOTE] = ACTIONS(1426), - [anon_sym_u_DQUOTE] = ACTIONS(1426), - [anon_sym_U_DQUOTE] = ACTIONS(1426), - [anon_sym_u8_DQUOTE] = ACTIONS(1426), - [anon_sym_DQUOTE] = ACTIONS(1426), - [sym_true] = ACTIONS(1424), - [sym_false] = ACTIONS(1424), - [anon_sym_NULL] = ACTIONS(1424), - [anon_sym_nullptr] = ACTIONS(1424), + [506] = { + [ts_builtin_sym_end] = ACTIONS(1456), + [sym_identifier] = ACTIONS(1454), + [aux_sym_preproc_include_token1] = ACTIONS(1454), + [aux_sym_preproc_def_token1] = ACTIONS(1454), + [aux_sym_preproc_if_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1454), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1454), + [sym_preproc_directive] = ACTIONS(1454), + [anon_sym_LPAREN2] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_PLUS] = ACTIONS(1454), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym___extension__] = ACTIONS(1454), + [anon_sym_typedef] = ACTIONS(1454), + [anon_sym_extern] = ACTIONS(1454), + [anon_sym___attribute__] = ACTIONS(1454), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1456), + [anon_sym___declspec] = ACTIONS(1454), + [anon_sym___cdecl] = ACTIONS(1454), + [anon_sym___clrcall] = ACTIONS(1454), + [anon_sym___stdcall] = ACTIONS(1454), + [anon_sym___fastcall] = ACTIONS(1454), + [anon_sym___thiscall] = ACTIONS(1454), + [anon_sym___vectorcall] = ACTIONS(1454), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_signed] = ACTIONS(1454), + [anon_sym_unsigned] = ACTIONS(1454), + [anon_sym_long] = ACTIONS(1454), + [anon_sym_short] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_auto] = ACTIONS(1454), + [anon_sym_register] = ACTIONS(1454), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(1454), + [anon_sym___inline__] = ACTIONS(1454), + [anon_sym___forceinline] = ACTIONS(1454), + [anon_sym_thread_local] = ACTIONS(1454), + [anon_sym___thread] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_constexpr] = ACTIONS(1454), + [anon_sym_volatile] = ACTIONS(1454), + [anon_sym_restrict] = ACTIONS(1454), + [anon_sym___restrict__] = ACTIONS(1454), + [anon_sym__Atomic] = ACTIONS(1454), + [anon_sym__Noreturn] = ACTIONS(1454), + [anon_sym_noreturn] = ACTIONS(1454), + [sym_primitive_type] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_switch] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [anon_sym_do] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_goto] = ACTIONS(1454), + [anon_sym_DASH_DASH] = ACTIONS(1456), + [anon_sym_PLUS_PLUS] = ACTIONS(1456), + [anon_sym_sizeof] = ACTIONS(1454), + [anon_sym___alignof__] = ACTIONS(1454), + [anon_sym___alignof] = ACTIONS(1454), + [anon_sym__alignof] = ACTIONS(1454), + [anon_sym_alignof] = ACTIONS(1454), + [anon_sym__Alignof] = ACTIONS(1454), + [anon_sym_offsetof] = ACTIONS(1454), + [anon_sym__Generic] = ACTIONS(1454), + [anon_sym_asm] = ACTIONS(1454), + [anon_sym___asm__] = ACTIONS(1454), + [sym_number_literal] = ACTIONS(1456), + [anon_sym_L_SQUOTE] = ACTIONS(1456), + [anon_sym_u_SQUOTE] = ACTIONS(1456), + [anon_sym_U_SQUOTE] = ACTIONS(1456), + [anon_sym_u8_SQUOTE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1456), + [anon_sym_L_DQUOTE] = ACTIONS(1456), + [anon_sym_u_DQUOTE] = ACTIONS(1456), + [anon_sym_U_DQUOTE] = ACTIONS(1456), + [anon_sym_u8_DQUOTE] = ACTIONS(1456), + [anon_sym_DQUOTE] = ACTIONS(1456), + [sym_true] = ACTIONS(1454), + [sym_false] = ACTIONS(1454), + [anon_sym_NULL] = ACTIONS(1454), + [anon_sym_nullptr] = ACTIONS(1454), [sym_comment] = ACTIONS(3), }, - [481] = { - [ts_builtin_sym_end] = ACTIONS(1474), - [sym_identifier] = ACTIONS(1472), - [aux_sym_preproc_include_token1] = ACTIONS(1472), - [aux_sym_preproc_def_token1] = ACTIONS(1472), - [aux_sym_preproc_if_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1472), - [sym_preproc_directive] = ACTIONS(1472), - [anon_sym_LPAREN2] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1472), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym___extension__] = ACTIONS(1472), - [anon_sym_typedef] = ACTIONS(1472), - [anon_sym_extern] = ACTIONS(1472), - [anon_sym___attribute__] = ACTIONS(1472), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1474), - [anon_sym___declspec] = ACTIONS(1472), - [anon_sym___cdecl] = ACTIONS(1472), - [anon_sym___clrcall] = ACTIONS(1472), - [anon_sym___stdcall] = ACTIONS(1472), - [anon_sym___fastcall] = ACTIONS(1472), - [anon_sym___thiscall] = ACTIONS(1472), - [anon_sym___vectorcall] = ACTIONS(1472), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_signed] = ACTIONS(1472), - [anon_sym_unsigned] = ACTIONS(1472), - [anon_sym_long] = ACTIONS(1472), - [anon_sym_short] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_auto] = ACTIONS(1472), - [anon_sym_register] = ACTIONS(1472), - [anon_sym_inline] = ACTIONS(1472), - [anon_sym___inline] = ACTIONS(1472), - [anon_sym___inline__] = ACTIONS(1472), - [anon_sym___forceinline] = ACTIONS(1472), - [anon_sym_thread_local] = ACTIONS(1472), - [anon_sym___thread] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_constexpr] = ACTIONS(1472), - [anon_sym_volatile] = ACTIONS(1472), - [anon_sym_restrict] = ACTIONS(1472), - [anon_sym___restrict__] = ACTIONS(1472), - [anon_sym__Atomic] = ACTIONS(1472), - [anon_sym__Noreturn] = ACTIONS(1472), - [anon_sym_noreturn] = ACTIONS(1472), - [sym_primitive_type] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_switch] = ACTIONS(1472), - [anon_sym_case] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [anon_sym_do] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_DASH_DASH] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1474), - [anon_sym_sizeof] = ACTIONS(1472), - [anon_sym___alignof__] = ACTIONS(1472), - [anon_sym___alignof] = ACTIONS(1472), - [anon_sym__alignof] = ACTIONS(1472), - [anon_sym_alignof] = ACTIONS(1472), - [anon_sym__Alignof] = ACTIONS(1472), - [anon_sym_offsetof] = ACTIONS(1472), - [anon_sym__Generic] = ACTIONS(1472), - [anon_sym_asm] = ACTIONS(1472), - [anon_sym___asm__] = ACTIONS(1472), - [sym_number_literal] = ACTIONS(1474), - [anon_sym_L_SQUOTE] = ACTIONS(1474), - [anon_sym_u_SQUOTE] = ACTIONS(1474), - [anon_sym_U_SQUOTE] = ACTIONS(1474), - [anon_sym_u8_SQUOTE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1474), - [anon_sym_L_DQUOTE] = ACTIONS(1474), - [anon_sym_u_DQUOTE] = ACTIONS(1474), - [anon_sym_U_DQUOTE] = ACTIONS(1474), - [anon_sym_u8_DQUOTE] = ACTIONS(1474), - [anon_sym_DQUOTE] = ACTIONS(1474), - [sym_true] = ACTIONS(1472), - [sym_false] = ACTIONS(1472), - [anon_sym_NULL] = ACTIONS(1472), - [anon_sym_nullptr] = ACTIONS(1472), + [507] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2245), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), + [anon_sym_LPAREN2] = ACTIONS(19), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(23), + [anon_sym_PLUS] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(25), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym___extension__] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), + [anon_sym_const] = ACTIONS(47), + [anon_sym_constexpr] = ACTIONS(47), + [anon_sym_volatile] = ACTIONS(47), + [anon_sym_restrict] = ACTIONS(47), + [anon_sym___restrict__] = ACTIONS(47), + [anon_sym__Atomic] = ACTIONS(47), + [anon_sym__Noreturn] = ACTIONS(47), + [anon_sym_noreturn] = ACTIONS(47), + [sym_primitive_type] = ACTIONS(49), + [anon_sym_enum] = ACTIONS(1917), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_union] = ACTIONS(55), + [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_sizeof] = ACTIONS(81), + [anon_sym___alignof__] = ACTIONS(83), + [anon_sym___alignof] = ACTIONS(83), + [anon_sym__alignof] = ACTIONS(83), + [anon_sym_alignof] = ACTIONS(83), + [anon_sym__Alignof] = ACTIONS(83), + [anon_sym_offsetof] = ACTIONS(85), + [anon_sym__Generic] = ACTIONS(87), + [anon_sym_asm] = ACTIONS(89), + [anon_sym___asm__] = ACTIONS(89), + [sym_number_literal] = ACTIONS(157), + [anon_sym_L_SQUOTE] = ACTIONS(93), + [anon_sym_u_SQUOTE] = ACTIONS(93), + [anon_sym_U_SQUOTE] = ACTIONS(93), + [anon_sym_u8_SQUOTE] = ACTIONS(93), + [anon_sym_SQUOTE] = ACTIONS(93), + [anon_sym_L_DQUOTE] = ACTIONS(95), + [anon_sym_u_DQUOTE] = ACTIONS(95), + [anon_sym_U_DQUOTE] = ACTIONS(95), + [anon_sym_u8_DQUOTE] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(95), + [sym_true] = ACTIONS(159), + [sym_false] = ACTIONS(159), + [anon_sym_NULL] = ACTIONS(99), + [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [482] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1994), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [508] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2254), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68547,10 +71292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68560,7 +71305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -68592,43 +71337,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [483] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2023), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [509] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2123), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68637,10 +71382,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68650,7 +71395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -68682,43 +71427,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [484] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2078), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [510] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2210), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68727,10 +71472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68740,7 +71485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -68772,43 +71517,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [485] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2088), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [511] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2064), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68817,10 +71562,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68830,7 +71575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -68862,43 +71607,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [486] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1938), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [512] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2087), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68907,10 +71652,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -68920,7 +71665,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -68952,43 +71697,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [487] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2013), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [513] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1294), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2193), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2052), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -68997,10 +71742,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69010,7 +71755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69042,43 +71787,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [488] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1976), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [514] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2037), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69087,10 +71832,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69100,7 +71845,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69132,43 +71877,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [489] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2049), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [515] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2038), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69177,10 +71922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69190,7 +71935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69222,43 +71967,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [490] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1982), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [516] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1294), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2193), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2045), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69267,10 +72012,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69280,7 +72025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69312,43 +72057,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [491] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2036), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [517] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1294), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2193), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2033), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69357,10 +72102,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69370,7 +72115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69402,43 +72147,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [492] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1967), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [518] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2065), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69447,10 +72192,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69460,7 +72205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69492,43 +72237,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [493] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1229), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2038), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1939), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [519] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2269), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69537,10 +72282,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69550,7 +72295,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69582,43 +72327,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [494] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(1972), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [520] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2098), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69627,10 +72372,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69640,7 +72385,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69672,43 +72417,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [495] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2051), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [521] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1279), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2139), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2138), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69717,10 +72462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69730,7 +72475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69762,43 +72507,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [496] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2171), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), + [522] = { + [sym_type_qualifier] = STATE(1324), + [sym__type_specifier] = STATE(1353), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__expression] = STATE(1294), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_comma_expression] = STATE(2193), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_type_descriptor] = STATE(2189), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__type_definition_type_repeat1] = STATE(1324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1363), + [sym_identifier] = ACTIONS(1913), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69807,10 +72552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(25), [anon_sym_AMP] = ACTIONS(25), [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), + [anon_sym_signed] = ACTIONS(1915), + [anon_sym_unsigned] = ACTIONS(1915), + [anon_sym_long] = ACTIONS(1915), + [anon_sym_short] = ACTIONS(1915), [anon_sym_const] = ACTIONS(47), [anon_sym_constexpr] = ACTIONS(47), [anon_sym_volatile] = ACTIONS(47), @@ -69820,7 +72565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Noreturn] = ACTIONS(47), [anon_sym_noreturn] = ACTIONS(47), [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), + [anon_sym_enum] = ACTIONS(1917), [anon_sym_struct] = ACTIONS(53), [anon_sym_union] = ACTIONS(55), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -69852,69 +72597,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [497] = { - [sym_type_qualifier] = STATE(1277), - [sym__type_specifier] = STATE(1312), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__expression] = STATE(1241), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_comma_expression] = STATE(2064), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_type_descriptor] = STATE(2063), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__type_definition_type_repeat1] = STATE(1277), - [aux_sym_sized_type_specifier_repeat1] = STATE(1323), - [sym_identifier] = ACTIONS(1901), - [anon_sym_LPAREN2] = ACTIONS(19), - [anon_sym_BANG] = ACTIONS(21), + [523] = { + [sym__expression] = STATE(868), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(827), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_identifier] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1522), + [anon_sym_RPAREN] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [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_AMP] = ACTIONS(25), - [anon_sym___extension__] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(1903), - [anon_sym_unsigned] = ACTIONS(1903), - [anon_sym_long] = ACTIONS(1903), - [anon_sym_short] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(47), - [anon_sym_constexpr] = ACTIONS(47), - [anon_sym_volatile] = ACTIONS(47), - [anon_sym_restrict] = ACTIONS(47), - [anon_sym___restrict__] = ACTIONS(47), - [anon_sym__Atomic] = ACTIONS(47), - [anon_sym__Noreturn] = ACTIONS(47), - [anon_sym_noreturn] = ACTIONS(47), - [sym_primitive_type] = ACTIONS(49), - [anon_sym_enum] = ACTIONS(1905), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_union] = ACTIONS(55), - [anon_sym_DASH_DASH] = ACTIONS(79), - [anon_sym_PLUS_PLUS] = ACTIONS(79), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_SEMI] = ACTIONS(1522), + [anon_sym___attribute__] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1522), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_COLON] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), [anon_sym_sizeof] = ACTIONS(81), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), @@ -69925,6 +72666,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -69942,66 +72685,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [498] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(894), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(894), - [sym_call_expression] = STATE(894), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(894), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(894), - [sym_initializer_list] = STATE(813), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(840), - [sym_null] = STATE(814), - [sym_identifier] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_else_token1] = ACTIONS(1512), - [aux_sym_preproc_elif_token1] = ACTIONS(1518), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1512), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1909), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1911), + [524] = { + [sym_identifier] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1923), + [anon_sym_RPAREN] = ACTIONS(1923), + [anon_sym_LPAREN2] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1921), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym___extension__] = ACTIONS(1921), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym___attribute__] = ACTIONS(1921), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1923), + [anon_sym___declspec] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_signed] = ACTIONS(1921), + [anon_sym_unsigned] = ACTIONS(1921), + [anon_sym_long] = ACTIONS(1921), + [anon_sym_short] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_static] = ACTIONS(1921), + [anon_sym_auto] = ACTIONS(1921), + [anon_sym_register] = ACTIONS(1921), + [anon_sym_inline] = ACTIONS(1921), + [anon_sym___inline] = ACTIONS(1921), + [anon_sym___inline__] = ACTIONS(1921), + [anon_sym___forceinline] = ACTIONS(1921), + [anon_sym_thread_local] = ACTIONS(1921), + [anon_sym___thread] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [anon_sym_constexpr] = ACTIONS(1921), + [anon_sym_volatile] = ACTIONS(1921), + [anon_sym_restrict] = ACTIONS(1921), + [anon_sym___restrict__] = ACTIONS(1921), + [anon_sym__Atomic] = ACTIONS(1921), + [anon_sym__Noreturn] = ACTIONS(1921), + [anon_sym_noreturn] = ACTIONS(1921), + [sym_primitive_type] = ACTIONS(1921), + [anon_sym_enum] = ACTIONS(1921), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_struct] = ACTIONS(1921), + [anon_sym_union] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_switch] = ACTIONS(1921), + [anon_sym_case] = ACTIONS(1921), + [anon_sym_default] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_goto] = ACTIONS(1921), + [anon_sym___try] = ACTIONS(1921), + [anon_sym___leave] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1923), + [anon_sym_sizeof] = ACTIONS(1921), + [anon_sym___alignof__] = ACTIONS(1921), + [anon_sym___alignof] = ACTIONS(1921), + [anon_sym__alignof] = ACTIONS(1921), + [anon_sym_alignof] = ACTIONS(1921), + [anon_sym__Alignof] = ACTIONS(1921), + [anon_sym_offsetof] = ACTIONS(1921), + [anon_sym__Generic] = ACTIONS(1921), + [anon_sym_asm] = ACTIONS(1921), + [anon_sym___asm__] = ACTIONS(1921), + [sym_number_literal] = ACTIONS(1923), + [anon_sym_L_SQUOTE] = ACTIONS(1923), + [anon_sym_u_SQUOTE] = ACTIONS(1923), + [anon_sym_U_SQUOTE] = ACTIONS(1923), + [anon_sym_u8_SQUOTE] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_L_DQUOTE] = ACTIONS(1923), + [anon_sym_u_DQUOTE] = ACTIONS(1923), + [anon_sym_U_DQUOTE] = ACTIONS(1923), + [anon_sym_u8_DQUOTE] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1923), + [sym_true] = ACTIONS(1921), + [sym_false] = ACTIONS(1921), + [anon_sym_NULL] = ACTIONS(1921), + [anon_sym_nullptr] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + }, + [525] = { + [sym_identifier] = ACTIONS(1925), + [anon_sym_COMMA] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_LPAREN2] = ACTIONS(1927), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_PLUS] = ACTIONS(1925), + [anon_sym_STAR] = ACTIONS(1927), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym___extension__] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym___attribute__] = ACTIONS(1925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1927), + [anon_sym___declspec] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_signed] = ACTIONS(1925), + [anon_sym_unsigned] = ACTIONS(1925), + [anon_sym_long] = ACTIONS(1925), + [anon_sym_short] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1927), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_auto] = ACTIONS(1925), + [anon_sym_register] = ACTIONS(1925), + [anon_sym_inline] = ACTIONS(1925), + [anon_sym___inline] = ACTIONS(1925), + [anon_sym___inline__] = ACTIONS(1925), + [anon_sym___forceinline] = ACTIONS(1925), + [anon_sym_thread_local] = ACTIONS(1925), + [anon_sym___thread] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [anon_sym_constexpr] = ACTIONS(1925), + [anon_sym_volatile] = ACTIONS(1925), + [anon_sym_restrict] = ACTIONS(1925), + [anon_sym___restrict__] = ACTIONS(1925), + [anon_sym__Atomic] = ACTIONS(1925), + [anon_sym__Noreturn] = ACTIONS(1925), + [anon_sym_noreturn] = ACTIONS(1925), + [sym_primitive_type] = ACTIONS(1925), + [anon_sym_enum] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1927), + [anon_sym_struct] = ACTIONS(1925), + [anon_sym_union] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_switch] = ACTIONS(1925), + [anon_sym_case] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_do] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_goto] = ACTIONS(1925), + [anon_sym___try] = ACTIONS(1925), + [anon_sym___leave] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1927), + [anon_sym_sizeof] = ACTIONS(1925), + [anon_sym___alignof__] = ACTIONS(1925), + [anon_sym___alignof] = ACTIONS(1925), + [anon_sym__alignof] = ACTIONS(1925), + [anon_sym_alignof] = ACTIONS(1925), + [anon_sym__Alignof] = ACTIONS(1925), + [anon_sym_offsetof] = ACTIONS(1925), + [anon_sym__Generic] = ACTIONS(1925), + [anon_sym_asm] = ACTIONS(1925), + [anon_sym___asm__] = ACTIONS(1925), + [sym_number_literal] = ACTIONS(1927), + [anon_sym_L_SQUOTE] = ACTIONS(1927), + [anon_sym_u_SQUOTE] = ACTIONS(1927), + [anon_sym_U_SQUOTE] = ACTIONS(1927), + [anon_sym_u8_SQUOTE] = ACTIONS(1927), + [anon_sym_SQUOTE] = ACTIONS(1927), + [anon_sym_L_DQUOTE] = ACTIONS(1927), + [anon_sym_u_DQUOTE] = ACTIONS(1927), + [anon_sym_U_DQUOTE] = ACTIONS(1927), + [anon_sym_u8_DQUOTE] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym_true] = ACTIONS(1925), + [sym_false] = ACTIONS(1925), + [anon_sym_NULL] = ACTIONS(1925), + [anon_sym_nullptr] = ACTIONS(1925), + [sym_comment] = ACTIONS(3), + }, + [526] = { + [sym__expression] = STATE(868), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(916), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(916), + [sym_call_expression] = STATE(916), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(916), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(916), + [sym_initializer_list] = STATE(827), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(867), + [sym_null] = STATE(843), + [sym_identifier] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1520), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1929), + [anon_sym_TILDE] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1933), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -70011,8 +72930,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -70030,242 +72949,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [499] = { - [sym_identifier] = ACTIONS(1913), - [anon_sym_COMMA] = ACTIONS(1915), - [anon_sym_RPAREN] = ACTIONS(1915), - [anon_sym_LPAREN2] = ACTIONS(1915), - [anon_sym_BANG] = ACTIONS(1915), - [anon_sym_TILDE] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_PLUS] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1915), - [anon_sym_AMP] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym___extension__] = ACTIONS(1913), - [anon_sym_extern] = ACTIONS(1913), - [anon_sym___attribute__] = ACTIONS(1913), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1915), - [anon_sym___declspec] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1915), - [anon_sym_signed] = ACTIONS(1913), - [anon_sym_unsigned] = ACTIONS(1913), - [anon_sym_long] = ACTIONS(1913), - [anon_sym_short] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1913), - [anon_sym_auto] = ACTIONS(1913), - [anon_sym_register] = ACTIONS(1913), - [anon_sym_inline] = ACTIONS(1913), - [anon_sym___inline] = ACTIONS(1913), - [anon_sym___inline__] = ACTIONS(1913), - [anon_sym___forceinline] = ACTIONS(1913), - [anon_sym_thread_local] = ACTIONS(1913), - [anon_sym___thread] = ACTIONS(1913), - [anon_sym_const] = ACTIONS(1913), - [anon_sym_constexpr] = ACTIONS(1913), - [anon_sym_volatile] = ACTIONS(1913), - [anon_sym_restrict] = ACTIONS(1913), - [anon_sym___restrict__] = ACTIONS(1913), - [anon_sym__Atomic] = ACTIONS(1913), - [anon_sym__Noreturn] = ACTIONS(1913), - [anon_sym_noreturn] = ACTIONS(1913), - [sym_primitive_type] = ACTIONS(1913), - [anon_sym_enum] = ACTIONS(1913), - [anon_sym_COLON] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1913), - [anon_sym_union] = ACTIONS(1913), - [anon_sym_if] = ACTIONS(1913), - [anon_sym_switch] = ACTIONS(1913), - [anon_sym_case] = ACTIONS(1913), - [anon_sym_default] = ACTIONS(1913), - [anon_sym_while] = ACTIONS(1913), - [anon_sym_do] = ACTIONS(1913), - [anon_sym_for] = ACTIONS(1913), - [anon_sym_return] = ACTIONS(1913), - [anon_sym_break] = ACTIONS(1913), - [anon_sym_continue] = ACTIONS(1913), - [anon_sym_goto] = ACTIONS(1913), - [anon_sym___try] = ACTIONS(1913), - [anon_sym___leave] = ACTIONS(1913), - [anon_sym_DASH_DASH] = ACTIONS(1915), - [anon_sym_PLUS_PLUS] = ACTIONS(1915), - [anon_sym_sizeof] = ACTIONS(1913), - [anon_sym___alignof__] = ACTIONS(1913), - [anon_sym___alignof] = ACTIONS(1913), - [anon_sym__alignof] = ACTIONS(1913), - [anon_sym_alignof] = ACTIONS(1913), - [anon_sym__Alignof] = ACTIONS(1913), - [anon_sym_offsetof] = ACTIONS(1913), - [anon_sym__Generic] = ACTIONS(1913), - [anon_sym_asm] = ACTIONS(1913), - [anon_sym___asm__] = ACTIONS(1913), - [sym_number_literal] = ACTIONS(1915), - [anon_sym_L_SQUOTE] = ACTIONS(1915), - [anon_sym_u_SQUOTE] = ACTIONS(1915), - [anon_sym_U_SQUOTE] = ACTIONS(1915), - [anon_sym_u8_SQUOTE] = ACTIONS(1915), - [anon_sym_SQUOTE] = ACTIONS(1915), - [anon_sym_L_DQUOTE] = ACTIONS(1915), - [anon_sym_u_DQUOTE] = ACTIONS(1915), - [anon_sym_U_DQUOTE] = ACTIONS(1915), - [anon_sym_u8_DQUOTE] = ACTIONS(1915), - [anon_sym_DQUOTE] = ACTIONS(1915), - [sym_true] = ACTIONS(1913), - [sym_false] = ACTIONS(1913), - [anon_sym_NULL] = ACTIONS(1913), - [anon_sym_nullptr] = ACTIONS(1913), - [sym_comment] = ACTIONS(3), - }, - [500] = { - [sym_identifier] = ACTIONS(1917), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_RPAREN] = ACTIONS(1919), - [anon_sym_LPAREN2] = ACTIONS(1919), - [anon_sym_BANG] = ACTIONS(1919), - [anon_sym_TILDE] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_PLUS] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1919), - [anon_sym_AMP] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1919), - [anon_sym___extension__] = ACTIONS(1917), - [anon_sym_extern] = ACTIONS(1917), - [anon_sym___attribute__] = ACTIONS(1917), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1919), - [anon_sym___declspec] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1919), - [anon_sym_signed] = ACTIONS(1917), - [anon_sym_unsigned] = ACTIONS(1917), - [anon_sym_long] = ACTIONS(1917), - [anon_sym_short] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1917), - [anon_sym_auto] = ACTIONS(1917), - [anon_sym_register] = ACTIONS(1917), - [anon_sym_inline] = ACTIONS(1917), - [anon_sym___inline] = ACTIONS(1917), - [anon_sym___inline__] = ACTIONS(1917), - [anon_sym___forceinline] = ACTIONS(1917), - [anon_sym_thread_local] = ACTIONS(1917), - [anon_sym___thread] = ACTIONS(1917), - [anon_sym_const] = ACTIONS(1917), - [anon_sym_constexpr] = ACTIONS(1917), - [anon_sym_volatile] = ACTIONS(1917), - [anon_sym_restrict] = ACTIONS(1917), - [anon_sym___restrict__] = ACTIONS(1917), - [anon_sym__Atomic] = ACTIONS(1917), - [anon_sym__Noreturn] = ACTIONS(1917), - [anon_sym_noreturn] = ACTIONS(1917), - [sym_primitive_type] = ACTIONS(1917), - [anon_sym_enum] = ACTIONS(1917), - [anon_sym_COLON] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1917), - [anon_sym_union] = ACTIONS(1917), - [anon_sym_if] = ACTIONS(1917), - [anon_sym_switch] = ACTIONS(1917), - [anon_sym_case] = ACTIONS(1917), - [anon_sym_default] = ACTIONS(1917), - [anon_sym_while] = ACTIONS(1917), - [anon_sym_do] = ACTIONS(1917), - [anon_sym_for] = ACTIONS(1917), - [anon_sym_return] = ACTIONS(1917), - [anon_sym_break] = ACTIONS(1917), - [anon_sym_continue] = ACTIONS(1917), - [anon_sym_goto] = ACTIONS(1917), - [anon_sym___try] = ACTIONS(1917), - [anon_sym___leave] = ACTIONS(1917), - [anon_sym_DASH_DASH] = ACTIONS(1919), - [anon_sym_PLUS_PLUS] = ACTIONS(1919), - [anon_sym_sizeof] = ACTIONS(1917), - [anon_sym___alignof__] = ACTIONS(1917), - [anon_sym___alignof] = ACTIONS(1917), - [anon_sym__alignof] = ACTIONS(1917), - [anon_sym_alignof] = ACTIONS(1917), - [anon_sym__Alignof] = ACTIONS(1917), - [anon_sym_offsetof] = ACTIONS(1917), - [anon_sym__Generic] = ACTIONS(1917), - [anon_sym_asm] = ACTIONS(1917), - [anon_sym___asm__] = ACTIONS(1917), - [sym_number_literal] = ACTIONS(1919), - [anon_sym_L_SQUOTE] = ACTIONS(1919), - [anon_sym_u_SQUOTE] = ACTIONS(1919), - [anon_sym_U_SQUOTE] = ACTIONS(1919), - [anon_sym_u8_SQUOTE] = ACTIONS(1919), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_L_DQUOTE] = ACTIONS(1919), - [anon_sym_u_DQUOTE] = ACTIONS(1919), - [anon_sym_U_DQUOTE] = ACTIONS(1919), - [anon_sym_u8_DQUOTE] = ACTIONS(1919), - [anon_sym_DQUOTE] = ACTIONS(1919), - [sym_true] = ACTIONS(1917), - [sym_false] = ACTIONS(1917), - [anon_sym_NULL] = ACTIONS(1917), - [anon_sym_nullptr] = ACTIONS(1917), + [527] = { + [sym__expression] = STATE(949), + [sym__expression_not_binary] = STATE(990), + [sym__string] = STATE(990), + [sym_conditional_expression] = STATE(990), + [sym_assignment_expression] = STATE(990), + [sym_pointer_expression] = STATE(995), + [sym_unary_expression] = STATE(990), + [sym_binary_expression] = STATE(990), + [sym_update_expression] = STATE(990), + [sym_cast_expression] = STATE(990), + [sym_sizeof_expression] = STATE(990), + [sym_alignof_expression] = STATE(990), + [sym_offsetof_expression] = STATE(990), + [sym_generic_expression] = STATE(990), + [sym_subscript_expression] = STATE(995), + [sym_call_expression] = STATE(995), + [sym_gnu_asm_expression] = STATE(990), + [sym_field_expression] = STATE(995), + [sym_compound_literal_expression] = STATE(990), + [sym_parenthesized_expression] = STATE(995), + [sym_initializer_list] = STATE(984), + [sym_char_literal] = STATE(990), + [sym_concatenated_string] = STATE(990), + [sym_string_literal] = STATE(877), + [sym_null] = STATE(990), + [sym_identifier] = ACTIONS(1520), + [anon_sym_COMMA] = ACTIONS(1522), + [aux_sym_preproc_if_token2] = ACTIONS(1522), + [aux_sym_preproc_else_token1] = ACTIONS(1522), + [aux_sym_preproc_elif_token1] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1939), + [anon_sym___alignof__] = ACTIONS(1714), + [anon_sym___alignof] = ACTIONS(1714), + [anon_sym__alignof] = ACTIONS(1714), + [anon_sym_alignof] = ACTIONS(1714), + [anon_sym__Alignof] = ACTIONS(1714), + [anon_sym_offsetof] = ACTIONS(1716), + [anon_sym__Generic] = ACTIONS(1718), + [anon_sym_asm] = ACTIONS(1720), + [anon_sym___asm__] = ACTIONS(1720), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), + [sym_number_literal] = ACTIONS(1722), + [anon_sym_L_SQUOTE] = ACTIONS(1724), + [anon_sym_u_SQUOTE] = ACTIONS(1724), + [anon_sym_U_SQUOTE] = ACTIONS(1724), + [anon_sym_u8_SQUOTE] = ACTIONS(1724), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_L_DQUOTE] = ACTIONS(1726), + [anon_sym_u_DQUOTE] = ACTIONS(1726), + [anon_sym_U_DQUOTE] = ACTIONS(1726), + [anon_sym_u8_DQUOTE] = ACTIONS(1726), + [anon_sym_DQUOTE] = ACTIONS(1726), + [sym_true] = ACTIONS(1728), + [sym_false] = ACTIONS(1728), + [anon_sym_NULL] = ACTIONS(1730), + [anon_sym_nullptr] = ACTIONS(1730), [sym_comment] = ACTIONS(3), }, - [501] = { - [sym__expression] = STATE(837), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(813), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_identifier] = ACTIONS(1921), - [anon_sym_COMMA] = ACTIONS(1512), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(23), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_SEMI] = ACTIONS(1512), - [anon_sym___attribute__] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_COLON] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(81), + [528] = { + [sym__expression] = STATE(1013), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_initializer_list] = STATE(827), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [sym_identifier] = ACTIONS(1941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1522), + [anon_sym_LPAREN2] = ACTIONS(1522), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1520), + [anon_sym_PLUS] = ACTIONS(1520), + [anon_sym_STAR] = ACTIONS(1522), + [anon_sym_SLASH] = ACTIONS(1520), + [anon_sym_PERCENT] = ACTIONS(1522), + [anon_sym_PIPE_PIPE] = ACTIONS(1522), + [anon_sym_AMP_AMP] = ACTIONS(1522), + [anon_sym_PIPE] = ACTIONS(1520), + [anon_sym_CARET] = ACTIONS(1522), + [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_EQ_EQ] = ACTIONS(1522), + [anon_sym_BANG_EQ] = ACTIONS(1522), + [anon_sym_GT] = ACTIONS(1520), + [anon_sym_GT_EQ] = ACTIONS(1522), + [anon_sym_LT_EQ] = ACTIONS(1522), + [anon_sym_LT] = ACTIONS(1520), + [anon_sym_LT_LT] = ACTIONS(1522), + [anon_sym_GT_GT] = ACTIONS(1522), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1522), + [anon_sym_RBRACK] = ACTIONS(1522), + [anon_sym_QMARK] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -70275,8 +73100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), + [anon_sym_DOT] = ACTIONS(1520), + [anon_sym_DASH_GT] = ACTIONS(1522), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -70294,94 +73119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [502] = { - [sym__expression] = STATE(911), - [sym__expression_not_binary] = STATE(928), - [sym__string] = STATE(928), - [sym_conditional_expression] = STATE(928), - [sym_assignment_expression] = STATE(928), - [sym_pointer_expression] = STATE(940), - [sym_unary_expression] = STATE(928), - [sym_binary_expression] = STATE(928), - [sym_update_expression] = STATE(928), - [sym_cast_expression] = STATE(928), - [sym_sizeof_expression] = STATE(928), - [sym_alignof_expression] = STATE(928), - [sym_offsetof_expression] = STATE(928), - [sym_generic_expression] = STATE(928), - [sym_subscript_expression] = STATE(940), - [sym_call_expression] = STATE(940), - [sym_gnu_asm_expression] = STATE(928), - [sym_field_expression] = STATE(940), - [sym_compound_literal_expression] = STATE(928), - [sym_parenthesized_expression] = STATE(940), - [sym_initializer_list] = STATE(956), - [sym_char_literal] = STATE(928), - [sym_concatenated_string] = STATE(928), - [sym_string_literal] = STATE(852), - [sym_null] = STATE(928), - [sym_identifier] = ACTIONS(1518), - [anon_sym_COMMA] = ACTIONS(1512), - [aux_sym_preproc_if_token2] = ACTIONS(1512), - [aux_sym_preproc_else_token1] = ACTIONS(1512), - [aux_sym_preproc_elif_token1] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_TILDE] = ACTIONS(1925), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1927), - [anon_sym___alignof__] = ACTIONS(1748), - [anon_sym___alignof] = ACTIONS(1748), - [anon_sym__alignof] = ACTIONS(1748), - [anon_sym_alignof] = ACTIONS(1748), - [anon_sym__Alignof] = ACTIONS(1748), - [anon_sym_offsetof] = ACTIONS(1750), - [anon_sym__Generic] = ACTIONS(1752), - [anon_sym_asm] = ACTIONS(1754), - [anon_sym___asm__] = ACTIONS(1754), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(1756), - [anon_sym_L_SQUOTE] = ACTIONS(1758), - [anon_sym_u_SQUOTE] = ACTIONS(1758), - [anon_sym_U_SQUOTE] = ACTIONS(1758), - [anon_sym_u8_SQUOTE] = ACTIONS(1758), - [anon_sym_SQUOTE] = ACTIONS(1758), - [anon_sym_L_DQUOTE] = ACTIONS(1760), - [anon_sym_u_DQUOTE] = ACTIONS(1760), - [anon_sym_U_DQUOTE] = ACTIONS(1760), - [anon_sym_u8_DQUOTE] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1760), - [sym_true] = ACTIONS(1762), - [sym_false] = ACTIONS(1762), - [anon_sym_NULL] = ACTIONS(1764), - [anon_sym_nullptr] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - }, - [503] = { - [sym_else_clause] = STATE(304), + [529] = { + [sym_else_clause] = STATE(314), [sym_identifier] = ACTIONS(1292), [anon_sym_LPAREN2] = ACTIONS(1294), [anon_sym_BANG] = ACTIONS(1294), @@ -70424,7 +73163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(1292), [anon_sym_union] = ACTIONS(1292), [anon_sym_if] = ACTIONS(1292), - [anon_sym_else] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1949), [anon_sym_switch] = ACTIONS(1292), [anon_sym_while] = ACTIONS(1292), [anon_sym_do] = ACTIONS(1292), @@ -70464,243 +73203,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(1292), [sym_comment] = ACTIONS(3), }, - [504] = { - [sym__expression] = STATE(991), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_initializer_list] = STATE(813), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [sym_identifier] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1512), - [anon_sym_LPAREN2] = ACTIONS(1512), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1512), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1512), - [anon_sym_PIPE_PIPE] = ACTIONS(1512), - [anon_sym_AMP_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1518), - [anon_sym_CARET] = ACTIONS(1512), - [anon_sym_AMP] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1512), - [anon_sym_BANG_EQ] = ACTIONS(1512), - [anon_sym_GT] = ACTIONS(1518), - [anon_sym_GT_EQ] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1512), - [anon_sym_LT] = ACTIONS(1518), - [anon_sym_LT_LT] = ACTIONS(1512), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1512), - [anon_sym_RBRACK] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_DASH_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1512), - [anon_sym_sizeof] = ACTIONS(1937), - [anon_sym___alignof__] = ACTIONS(83), - [anon_sym___alignof] = ACTIONS(83), - [anon_sym__alignof] = ACTIONS(83), - [anon_sym_alignof] = ACTIONS(83), - [anon_sym__Alignof] = ACTIONS(83), - [anon_sym_offsetof] = ACTIONS(85), - [anon_sym__Generic] = ACTIONS(87), - [anon_sym_asm] = ACTIONS(89), - [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(1518), - [anon_sym_DASH_GT] = ACTIONS(1512), - [sym_number_literal] = ACTIONS(157), - [anon_sym_L_SQUOTE] = ACTIONS(93), - [anon_sym_u_SQUOTE] = ACTIONS(93), - [anon_sym_U_SQUOTE] = ACTIONS(93), - [anon_sym_u8_SQUOTE] = ACTIONS(93), - [anon_sym_SQUOTE] = ACTIONS(93), - [anon_sym_L_DQUOTE] = ACTIONS(95), - [anon_sym_u_DQUOTE] = ACTIONS(95), - [anon_sym_U_DQUOTE] = ACTIONS(95), - [anon_sym_u8_DQUOTE] = ACTIONS(95), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_true] = ACTIONS(159), - [sym_false] = ACTIONS(159), - [anon_sym_NULL] = ACTIONS(99), - [anon_sym_nullptr] = ACTIONS(99), - [sym_comment] = ACTIONS(3), - }, - [505] = { - [sym_identifier] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1942), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1942), - [anon_sym_SEMI] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(1946), - [anon_sym_extern] = ACTIONS(1946), - [anon_sym___attribute__] = ACTIONS(1946), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1948), - [anon_sym___declspec] = ACTIONS(1946), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_signed] = ACTIONS(1946), - [anon_sym_unsigned] = ACTIONS(1946), - [anon_sym_long] = ACTIONS(1946), - [anon_sym_short] = ACTIONS(1946), - [anon_sym_static] = ACTIONS(1946), - [anon_sym_auto] = ACTIONS(1946), - [anon_sym_register] = ACTIONS(1946), - [anon_sym_inline] = ACTIONS(1946), - [anon_sym___inline] = ACTIONS(1946), - [anon_sym___inline__] = ACTIONS(1946), - [anon_sym___forceinline] = ACTIONS(1946), - [anon_sym_thread_local] = ACTIONS(1946), - [anon_sym___thread] = ACTIONS(1946), - [anon_sym_const] = ACTIONS(1946), - [anon_sym_constexpr] = ACTIONS(1946), - [anon_sym_volatile] = ACTIONS(1946), - [anon_sym_restrict] = ACTIONS(1946), - [anon_sym___restrict__] = ACTIONS(1946), - [anon_sym__Atomic] = ACTIONS(1946), - [anon_sym__Noreturn] = ACTIONS(1946), - [anon_sym_noreturn] = ACTIONS(1946), - [sym_primitive_type] = ACTIONS(1946), - [anon_sym_enum] = ACTIONS(1946), - [anon_sym_struct] = ACTIONS(1946), - [anon_sym_union] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_case] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_while] = ACTIONS(1944), - [anon_sym_do] = ACTIONS(1944), - [anon_sym_for] = ACTIONS(1944), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_goto] = ACTIONS(1944), - [anon_sym___try] = ACTIONS(1944), - [anon_sym___leave] = ACTIONS(1944), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_sizeof] = ACTIONS(1944), - [anon_sym___alignof__] = ACTIONS(1944), - [anon_sym___alignof] = ACTIONS(1944), - [anon_sym__alignof] = ACTIONS(1944), - [anon_sym_alignof] = ACTIONS(1944), - [anon_sym__Alignof] = ACTIONS(1944), - [anon_sym_offsetof] = ACTIONS(1944), - [anon_sym__Generic] = ACTIONS(1944), - [anon_sym_asm] = ACTIONS(1944), - [anon_sym___asm__] = ACTIONS(1944), - [sym_number_literal] = ACTIONS(1942), - [anon_sym_L_SQUOTE] = ACTIONS(1942), - [anon_sym_u_SQUOTE] = ACTIONS(1942), - [anon_sym_U_SQUOTE] = ACTIONS(1942), - [anon_sym_u8_SQUOTE] = ACTIONS(1942), - [anon_sym_SQUOTE] = ACTIONS(1942), - [anon_sym_L_DQUOTE] = ACTIONS(1942), - [anon_sym_u_DQUOTE] = ACTIONS(1942), - [anon_sym_U_DQUOTE] = ACTIONS(1942), - [anon_sym_u8_DQUOTE] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(1942), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), - [anon_sym_NULL] = ACTIONS(1944), - [anon_sym_nullptr] = ACTIONS(1944), + [530] = { + [sym_identifier] = ACTIONS(1951), + [anon_sym_LPAREN2] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_TILDE] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_PLUS] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym___extension__] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1958), + [anon_sym___attribute__] = ACTIONS(1958), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1960), + [anon_sym___declspec] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_signed] = ACTIONS(1958), + [anon_sym_unsigned] = ACTIONS(1958), + [anon_sym_long] = ACTIONS(1958), + [anon_sym_short] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1958), + [anon_sym_auto] = ACTIONS(1958), + [anon_sym_register] = ACTIONS(1958), + [anon_sym_inline] = ACTIONS(1958), + [anon_sym___inline] = ACTIONS(1958), + [anon_sym___inline__] = ACTIONS(1958), + [anon_sym___forceinline] = ACTIONS(1958), + [anon_sym_thread_local] = ACTIONS(1958), + [anon_sym___thread] = ACTIONS(1958), + [anon_sym_const] = ACTIONS(1958), + [anon_sym_constexpr] = ACTIONS(1958), + [anon_sym_volatile] = ACTIONS(1958), + [anon_sym_restrict] = ACTIONS(1958), + [anon_sym___restrict__] = ACTIONS(1958), + [anon_sym__Atomic] = ACTIONS(1958), + [anon_sym__Noreturn] = ACTIONS(1958), + [anon_sym_noreturn] = ACTIONS(1958), + [sym_primitive_type] = ACTIONS(1958), + [anon_sym_enum] = ACTIONS(1958), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_switch] = ACTIONS(1956), + [anon_sym_case] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_do] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_goto] = ACTIONS(1956), + [anon_sym___try] = ACTIONS(1956), + [anon_sym___leave] = ACTIONS(1956), + [anon_sym_DASH_DASH] = ACTIONS(1954), + [anon_sym_PLUS_PLUS] = ACTIONS(1954), + [anon_sym_sizeof] = ACTIONS(1956), + [anon_sym___alignof__] = ACTIONS(1956), + [anon_sym___alignof] = ACTIONS(1956), + [anon_sym__alignof] = ACTIONS(1956), + [anon_sym_alignof] = ACTIONS(1956), + [anon_sym__Alignof] = ACTIONS(1956), + [anon_sym_offsetof] = ACTIONS(1956), + [anon_sym__Generic] = ACTIONS(1956), + [anon_sym_asm] = ACTIONS(1956), + [anon_sym___asm__] = ACTIONS(1956), + [sym_number_literal] = ACTIONS(1954), + [anon_sym_L_SQUOTE] = ACTIONS(1954), + [anon_sym_u_SQUOTE] = ACTIONS(1954), + [anon_sym_U_SQUOTE] = ACTIONS(1954), + [anon_sym_u8_SQUOTE] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_L_DQUOTE] = ACTIONS(1954), + [anon_sym_u_DQUOTE] = ACTIONS(1954), + [anon_sym_U_DQUOTE] = ACTIONS(1954), + [anon_sym_u8_DQUOTE] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1954), + [sym_true] = ACTIONS(1956), + [sym_false] = ACTIONS(1956), + [anon_sym_NULL] = ACTIONS(1956), + [anon_sym_nullptr] = ACTIONS(1956), [sym_comment] = ACTIONS(3), }, - [506] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [531] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -70708,76 +73363,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [507] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [532] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -70785,76 +73440,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [508] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1976), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [533] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -70862,76 +73517,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [509] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1978), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [534] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -70939,76 +73594,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [510] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [535] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1989), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71016,76 +73671,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [511] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1978), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [536] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1993), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71093,76 +73748,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [512] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1983), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [537] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71170,76 +73825,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [513] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1970), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [538] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1993), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71247,76 +73902,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [514] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [539] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1991), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71324,76 +73979,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [515] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1985), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [540] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71401,75 +74056,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [516] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_COMMA] = ACTIONS(1953), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [541] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_COLON] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71477,75 +74132,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [517] = { - [sym_string_literal] = STATE(770), - [aux_sym_sized_type_specifier_repeat1] = STATE(1082), - [sym_identifier] = ACTIONS(1951), - [anon_sym_LPAREN2] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1959), - [anon_sym_PLUS] = ACTIONS(1959), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_SLASH] = ACTIONS(1959), - [anon_sym_PERCENT] = ACTIONS(1959), - [anon_sym_PIPE_PIPE] = ACTIONS(1953), - [anon_sym_AMP_AMP] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_CARET] = ACTIONS(1959), - [anon_sym_AMP] = ACTIONS(1959), - [anon_sym_EQ_EQ] = ACTIONS(1953), - [anon_sym_BANG_EQ] = ACTIONS(1953), - [anon_sym_GT] = ACTIONS(1959), - [anon_sym_GT_EQ] = ACTIONS(1953), - [anon_sym_LT_EQ] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1959), - [anon_sym_LT_LT] = ACTIONS(1959), - [anon_sym_GT_GT] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1980), - [anon_sym___extension__] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym___attribute__] = ACTIONS(1951), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1964), - [anon_sym___declspec] = ACTIONS(1951), - [anon_sym___based] = ACTIONS(1951), - [anon_sym_signed] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_auto] = ACTIONS(1951), - [anon_sym_register] = ACTIONS(1951), - [anon_sym_inline] = ACTIONS(1951), - [anon_sym___inline] = ACTIONS(1951), - [anon_sym___inline__] = ACTIONS(1951), - [anon_sym___forceinline] = ACTIONS(1951), - [anon_sym_thread_local] = ACTIONS(1951), - [anon_sym___thread] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_constexpr] = ACTIONS(1951), - [anon_sym_volatile] = ACTIONS(1951), - [anon_sym_restrict] = ACTIONS(1951), - [anon_sym___restrict__] = ACTIONS(1951), - [anon_sym__Atomic] = ACTIONS(1951), - [anon_sym__Noreturn] = ACTIONS(1951), - [anon_sym_noreturn] = ACTIONS(1951), - [anon_sym_COLON] = ACTIONS(1976), - [anon_sym_QMARK] = ACTIONS(1953), - [anon_sym_STAR_EQ] = ACTIONS(1972), - [anon_sym_SLASH_EQ] = ACTIONS(1972), - [anon_sym_PERCENT_EQ] = ACTIONS(1972), - [anon_sym_PLUS_EQ] = ACTIONS(1972), - [anon_sym_DASH_EQ] = ACTIONS(1972), - [anon_sym_LT_LT_EQ] = ACTIONS(1972), - [anon_sym_GT_GT_EQ] = ACTIONS(1972), - [anon_sym_AMP_EQ] = ACTIONS(1972), - [anon_sym_CARET_EQ] = ACTIONS(1972), - [anon_sym_PIPE_EQ] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1953), - [anon_sym_PLUS_PLUS] = ACTIONS(1953), - [anon_sym_DOT] = ACTIONS(1953), - [anon_sym_DASH_GT] = ACTIONS(1953), + [542] = { + [sym_string_literal] = STATE(799), + [aux_sym_sized_type_specifier_repeat1] = STATE(1106), + [sym_identifier] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1965), + [anon_sym_LPAREN2] = ACTIONS(1967), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_STAR] = ACTIONS(1973), + [anon_sym_SLASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1965), + [anon_sym_AMP_AMP] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1971), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1965), + [anon_sym_BANG_EQ] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1971), + [anon_sym_GT_EQ] = ACTIONS(1965), + [anon_sym_LT_EQ] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1971), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1971), + [anon_sym_SEMI] = ACTIONS(1965), + [anon_sym___extension__] = ACTIONS(1963), + [anon_sym_extern] = ACTIONS(1963), + [anon_sym___attribute__] = ACTIONS(1963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1979), + [anon_sym___declspec] = ACTIONS(1963), + [anon_sym___based] = ACTIONS(1963), + [anon_sym_signed] = ACTIONS(1981), + [anon_sym_unsigned] = ACTIONS(1981), + [anon_sym_long] = ACTIONS(1981), + [anon_sym_short] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1983), + [anon_sym_static] = ACTIONS(1963), + [anon_sym_auto] = ACTIONS(1963), + [anon_sym_register] = ACTIONS(1963), + [anon_sym_inline] = ACTIONS(1963), + [anon_sym___inline] = ACTIONS(1963), + [anon_sym___inline__] = ACTIONS(1963), + [anon_sym___forceinline] = ACTIONS(1963), + [anon_sym_thread_local] = ACTIONS(1963), + [anon_sym___thread] = ACTIONS(1963), + [anon_sym_const] = ACTIONS(1963), + [anon_sym_constexpr] = ACTIONS(1963), + [anon_sym_volatile] = ACTIONS(1963), + [anon_sym_restrict] = ACTIONS(1963), + [anon_sym___restrict__] = ACTIONS(1963), + [anon_sym__Atomic] = ACTIONS(1963), + [anon_sym__Noreturn] = ACTIONS(1963), + [anon_sym_noreturn] = ACTIONS(1963), + [anon_sym_QMARK] = ACTIONS(1965), + [anon_sym_STAR_EQ] = ACTIONS(1987), + [anon_sym_SLASH_EQ] = ACTIONS(1987), + [anon_sym_PERCENT_EQ] = ACTIONS(1987), + [anon_sym_PLUS_EQ] = ACTIONS(1987), + [anon_sym_DASH_EQ] = ACTIONS(1987), + [anon_sym_LT_LT_EQ] = ACTIONS(1987), + [anon_sym_GT_GT_EQ] = ACTIONS(1987), + [anon_sym_AMP_EQ] = ACTIONS(1987), + [anon_sym_CARET_EQ] = ACTIONS(1987), + [anon_sym_PIPE_EQ] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1965), + [anon_sym_PLUS_PLUS] = ACTIONS(1965), + [anon_sym_DOT] = ACTIONS(1965), + [anon_sym_DASH_GT] = ACTIONS(1965), [anon_sym_L_DQUOTE] = ACTIONS(95), [anon_sym_u_DQUOTE] = ACTIONS(95), [anon_sym_U_DQUOTE] = ACTIONS(95), @@ -71553,54 +74208,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(95), [sym_comment] = ACTIONS(3), }, - [518] = { - [sym_type_qualifier] = STATE(525), - [sym__expression] = STATE(1289), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(525), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [543] = { + [sym_type_qualifier] = STATE(544), + [sym__expression] = STATE(1339), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(544), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2007), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71627,54 +74282,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [519] = { - [sym_type_qualifier] = STATE(522), - [sym__expression] = STATE(1269), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(522), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [544] = { + [sym_type_qualifier] = STATE(878), + [sym__expression] = STATE(1319), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2011), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71701,54 +74356,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [520] = { - [sym_type_qualifier] = STATE(521), - [sym__expression] = STATE(1272), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [545] = { + [sym_type_qualifier] = STATE(878), + [sym__expression] = STATE(1311), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71775,54 +74430,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [521] = { - [sym_type_qualifier] = STATE(850), - [sym__expression] = STATE(1281), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [546] = { + [sym_type_qualifier] = STATE(547), + [sym__expression] = STATE(1305), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(547), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2019), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71849,54 +74504,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [522] = { - [sym_type_qualifier] = STATE(850), - [sym__expression] = STATE(1278), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [547] = { + [sym_type_qualifier] = STATE(878), + [sym__expression] = STATE(1326), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2025), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71923,54 +74578,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [523] = { - [sym_type_qualifier] = STATE(850), - [sym__expression] = STATE(1297), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [548] = { + [sym_type_qualifier] = STATE(878), + [sym__expression] = STATE(1317), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2027), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2029), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -71997,54 +74652,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [524] = { - [sym_type_qualifier] = STATE(527), - [sym__expression] = STATE(1264), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(527), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [549] = { + [sym_type_qualifier] = STATE(545), + [sym__expression] = STATE(1306), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(545), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2031), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2033), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -72071,54 +74726,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [525] = { - [sym_type_qualifier] = STATE(850), - [sym__expression] = STATE(1300), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [550] = { + [sym_type_qualifier] = STATE(878), + [sym__expression] = STATE(1321), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2035), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2037), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -72145,54 +74800,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [526] = { - [sym_type_qualifier] = STATE(523), - [sym__expression] = STATE(1295), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(523), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [551] = { + [sym_type_qualifier] = STATE(550), + [sym__expression] = STATE(1329), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(550), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2039), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2041), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -72219,54 +74874,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [527] = { - [sym_type_qualifier] = STATE(850), - [sym__expression] = STATE(1279), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(1021), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(1021), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym__type_definition_type_repeat1] = STATE(850), - [sym_identifier] = ACTIONS(1931), - [anon_sym_LPAREN2] = ACTIONS(1987), - [anon_sym_BANG] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(1991), - [anon_sym___extension__] = ACTIONS(1993), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(1993), - [anon_sym_constexpr] = ACTIONS(1993), - [anon_sym_volatile] = ACTIONS(1993), - [anon_sym_restrict] = ACTIONS(1993), - [anon_sym___restrict__] = ACTIONS(1993), - [anon_sym__Atomic] = ACTIONS(1993), - [anon_sym__Noreturn] = ACTIONS(1993), - [anon_sym_noreturn] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_PLUS_PLUS] = ACTIONS(1997), - [anon_sym_sizeof] = ACTIONS(1937), + [552] = { + [sym_type_qualifier] = STATE(548), + [sym__expression] = STATE(1325), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(1046), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(1046), + [sym_call_expression] = STATE(1046), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(1046), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(1046), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym__type_definition_type_repeat1] = STATE(548), + [sym_identifier] = ACTIONS(1941), + [anon_sym_LPAREN2] = ACTIONS(1999), + [anon_sym_BANG] = ACTIONS(1945), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2003), + [anon_sym___extension__] = ACTIONS(2005), + [anon_sym_RBRACK] = ACTIONS(2045), + [anon_sym_const] = ACTIONS(2005), + [anon_sym_constexpr] = ACTIONS(2005), + [anon_sym_volatile] = ACTIONS(2005), + [anon_sym_restrict] = ACTIONS(2005), + [anon_sym___restrict__] = ACTIONS(2005), + [anon_sym__Atomic] = ACTIONS(2005), + [anon_sym__Noreturn] = ACTIONS(2005), + [anon_sym_noreturn] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2009), + [anon_sym_PLUS_PLUS] = ACTIONS(2009), + [anon_sym_sizeof] = ACTIONS(1947), [anon_sym___alignof__] = ACTIONS(83), [anon_sym___alignof] = ACTIONS(83), [anon_sym__alignof] = ACTIONS(83), @@ -72293,39 +74948,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [528] = { - [sym__expression] = STATE(1193), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1816), - [sym_initializer_pair] = STATE(1816), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), - [anon_sym_COMMA] = ACTIONS(2037), + [553] = { + [sym__expression] = STATE(1240), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1787), + [sym_initializer_pair] = STATE(1787), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), + [anon_sym_COMMA] = ACTIONS(2049), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72333,9 +74988,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_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72348,7 +75003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72366,39 +75021,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [529] = { - [sym__expression] = STATE(1198), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1805), - [sym_initializer_pair] = STATE(1805), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), - [anon_sym_COMMA] = ACTIONS(2045), + [554] = { + [sym__expression] = STATE(1233), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1810), + [sym_initializer_pair] = STATE(1810), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), + [anon_sym_COMMA] = ACTIONS(2057), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72406,9 +75061,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_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72421,7 +75076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72439,38 +75094,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [530] = { - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1843), - [sym_initializer_pair] = STATE(1843), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), + [555] = { + [sym__expression] = STATE(1291), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1959), + [sym_initializer_pair] = STATE(1959), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72478,9 +75133,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_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72493,7 +75148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72511,38 +75166,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [531] = { - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1843), - [sym_initializer_pair] = STATE(1843), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), + [556] = { + [sym__expression] = STATE(1291), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1959), + [sym_initializer_pair] = STATE(1959), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72550,9 +75205,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_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72565,7 +75220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72583,38 +75238,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [532] = { - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1843), - [sym_initializer_pair] = STATE(1843), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), + [557] = { + [sym__expression] = STATE(1291), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1959), + [sym_initializer_pair] = STATE(1959), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72622,9 +75277,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_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72637,7 +75292,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72655,38 +75310,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [533] = { - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1843), - [sym_initializer_pair] = STATE(1843), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), + [558] = { + [sym__expression] = STATE(1291), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1959), + [sym_initializer_pair] = STATE(1959), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72694,9 +75349,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_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72709,7 +75364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72727,38 +75382,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [534] = { - [sym__expression] = STATE(1256), - [sym__expression_not_binary] = STATE(814), - [sym__string] = STATE(814), - [sym_conditional_expression] = STATE(814), - [sym_assignment_expression] = STATE(814), - [sym_pointer_expression] = STATE(907), - [sym_unary_expression] = STATE(814), - [sym_binary_expression] = STATE(814), - [sym_update_expression] = STATE(814), - [sym_cast_expression] = STATE(814), - [sym_sizeof_expression] = STATE(814), - [sym_alignof_expression] = STATE(814), - [sym_offsetof_expression] = STATE(814), - [sym_generic_expression] = STATE(814), - [sym_subscript_expression] = STATE(907), - [sym_call_expression] = STATE(907), - [sym_gnu_asm_expression] = STATE(814), - [sym_field_expression] = STATE(907), - [sym_compound_literal_expression] = STATE(814), - [sym_parenthesized_expression] = STATE(907), - [sym_initializer_list] = STATE(1843), - [sym_initializer_pair] = STATE(1843), - [sym_subscript_designator] = STATE(1610), - [sym_subscript_range_designator] = STATE(1610), - [sym_field_designator] = STATE(1610), - [sym_char_literal] = STATE(814), - [sym_concatenated_string] = STATE(814), - [sym_string_literal] = STATE(792), - [sym_null] = STATE(814), - [aux_sym_initializer_pair_repeat1] = STATE(1610), - [sym_identifier] = ACTIONS(2035), + [559] = { + [sym__expression] = STATE(1291), + [sym__expression_not_binary] = STATE(843), + [sym__string] = STATE(843), + [sym_conditional_expression] = STATE(843), + [sym_assignment_expression] = STATE(843), + [sym_pointer_expression] = STATE(947), + [sym_unary_expression] = STATE(843), + [sym_binary_expression] = STATE(843), + [sym_update_expression] = STATE(843), + [sym_cast_expression] = STATE(843), + [sym_sizeof_expression] = STATE(843), + [sym_alignof_expression] = STATE(843), + [sym_offsetof_expression] = STATE(843), + [sym_generic_expression] = STATE(843), + [sym_subscript_expression] = STATE(947), + [sym_call_expression] = STATE(947), + [sym_gnu_asm_expression] = STATE(843), + [sym_field_expression] = STATE(947), + [sym_compound_literal_expression] = STATE(843), + [sym_parenthesized_expression] = STATE(947), + [sym_initializer_list] = STATE(1959), + [sym_initializer_pair] = STATE(1959), + [sym_subscript_designator] = STATE(1641), + [sym_subscript_range_designator] = STATE(1641), + [sym_field_designator] = STATE(1641), + [sym_char_literal] = STATE(843), + [sym_concatenated_string] = STATE(843), + [sym_string_literal] = STATE(816), + [sym_null] = STATE(843), + [aux_sym_initializer_pair_repeat1] = STATE(1641), + [sym_identifier] = ACTIONS(2047), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72766,8 +75421,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_LBRACE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(2053), [anon_sym_DASH_DASH] = ACTIONS(79), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_sizeof] = ACTIONS(81), @@ -72780,7 +75435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Generic] = ACTIONS(87), [anon_sym_asm] = ACTIONS(89), [anon_sym___asm__] = ACTIONS(89), - [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(2055), [sym_number_literal] = ACTIONS(157), [anon_sym_L_SQUOTE] = ACTIONS(93), [anon_sym_u_SQUOTE] = ACTIONS(93), @@ -72798,44 +75453,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_nullptr] = ACTIONS(99), [sym_comment] = ACTIONS(3), }, - [535] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(2166), - [sym_preproc_elif_in_field_declaration_list] = STATE(2166), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2166), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2063), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [560] = { + [sym_preproc_def] = STATE(571), + [sym_preproc_function_def] = STATE(571), + [sym_preproc_call] = STATE(571), + [sym_preproc_if_in_field_declaration_list] = STATE(571), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), + [sym_preproc_else_in_field_declaration_list] = STATE(2150), + [sym_preproc_elif_in_field_declaration_list] = STATE(2150), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2150), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(571), + [sym_field_declaration] = STATE(571), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2075), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -72868,44 +75523,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [536] = { - [sym_preproc_def] = STATE(540), - [sym_preproc_function_def] = STATE(540), - [sym_preproc_call] = STATE(540), - [sym_preproc_if_in_field_declaration_list] = STATE(540), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(540), - [sym_preproc_else_in_field_declaration_list] = STATE(1957), - [sym_preproc_elif_in_field_declaration_list] = STATE(1957), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1957), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(540), - [sym_field_declaration] = STATE(540), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(540), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2075), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [561] = { + [sym_preproc_def] = STATE(568), + [sym_preproc_function_def] = STATE(568), + [sym_preproc_call] = STATE(568), + [sym_preproc_if_in_field_declaration_list] = STATE(568), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(568), + [sym_preproc_else_in_field_declaration_list] = STATE(2221), + [sym_preproc_elif_in_field_declaration_list] = STATE(2221), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2221), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(568), + [sym_field_declaration] = STATE(568), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(568), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2087), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -72938,44 +75593,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [537] = { - [sym_preproc_def] = STATE(535), - [sym_preproc_function_def] = STATE(535), - [sym_preproc_call] = STATE(535), - [sym_preproc_if_in_field_declaration_list] = STATE(535), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(535), - [sym_preproc_else_in_field_declaration_list] = STATE(2113), - [sym_preproc_elif_in_field_declaration_list] = STATE(2113), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2113), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(535), - [sym_field_declaration] = STATE(535), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(535), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2077), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [562] = { + [sym_preproc_def] = STATE(565), + [sym_preproc_function_def] = STATE(565), + [sym_preproc_call] = STATE(565), + [sym_preproc_if_in_field_declaration_list] = STATE(565), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(565), + [sym_preproc_else_in_field_declaration_list] = STATE(2102), + [sym_preproc_elif_in_field_declaration_list] = STATE(2102), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2102), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(565), + [sym_field_declaration] = STATE(565), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(565), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2089), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73008,44 +75663,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [538] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(2060), - [sym_preproc_elif_in_field_declaration_list] = STATE(2060), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2060), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2079), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [563] = { + [sym_preproc_def] = STATE(571), + [sym_preproc_function_def] = STATE(571), + [sym_preproc_call] = STATE(571), + [sym_preproc_if_in_field_declaration_list] = STATE(571), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), + [sym_preproc_else_in_field_declaration_list] = STATE(2053), + [sym_preproc_elif_in_field_declaration_list] = STATE(2053), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2053), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(571), + [sym_field_declaration] = STATE(571), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2091), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73078,53 +75733,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [539] = { - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1338), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_ms_based_modifier] = STATE(1941), - [sym__declarator] = STATE(1613), - [sym__abstract_declarator] = STATE(1690), - [sym_parenthesized_declarator] = STATE(1543), - [sym_abstract_parenthesized_declarator] = STATE(1645), - [sym_attributed_declarator] = STATE(1543), - [sym_pointer_declarator] = STATE(1543), - [sym_abstract_pointer_declarator] = STATE(1645), - [sym_function_declarator] = STATE(1543), - [sym_abstract_function_declarator] = STATE(1645), - [sym_array_declarator] = STATE(1543), - [sym_abstract_array_declarator] = STATE(1645), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym_variadic_parameter] = STATE(1753), - [sym_parameter_list] = STATE(1644), - [sym_parameter_declaration] = STATE(1753), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2083), - [anon_sym_RPAREN] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(2089), + [564] = { + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1389), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_ms_based_modifier] = STATE(2088), + [sym__declarator] = STATE(1636), + [sym__abstract_declarator] = STATE(1783), + [sym_parenthesized_declarator] = STATE(1575), + [sym_abstract_parenthesized_declarator] = STATE(1703), + [sym_attributed_declarator] = STATE(1575), + [sym_pointer_declarator] = STATE(1575), + [sym_abstract_pointer_declarator] = STATE(1703), + [sym_function_declarator] = STATE(1575), + [sym_abstract_function_declarator] = STATE(1703), + [sym_array_declarator] = STATE(1575), + [sym_abstract_array_declarator] = STATE(1703), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym_variadic_parameter] = STATE(1848), + [sym_parameter_list] = STATE(1705), + [sym_parameter_declaration] = STATE(1848), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2095), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_LPAREN2] = ACTIONS(2099), + [anon_sym_STAR] = ACTIONS(2101), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(1290), [anon_sym___declspec] = ACTIONS(37), - [anon_sym___based] = ACTIONS(2091), + [anon_sym___based] = ACTIONS(2103), [anon_sym_signed] = ACTIONS(43), [anon_sym_unsigned] = ACTIONS(43), [anon_sym_long] = ACTIONS(43), [anon_sym_short] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2105), [anon_sym_static] = ACTIONS(45), [anon_sym_auto] = ACTIONS(45), [anon_sym_register] = ACTIONS(45), @@ -73148,44 +75803,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [540] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(1951), - [sym_preproc_elif_in_field_declaration_list] = STATE(1951), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1951), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [565] = { + [sym_preproc_def] = STATE(571), + [sym_preproc_function_def] = STATE(571), + [sym_preproc_call] = STATE(571), + [sym_preproc_if_in_field_declaration_list] = STATE(571), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), + [sym_preproc_else_in_field_declaration_list] = STATE(2222), + [sym_preproc_elif_in_field_declaration_list] = STATE(2222), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2222), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(571), + [sym_field_declaration] = STATE(571), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2107), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73218,44 +75873,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [541] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(2009), - [sym_preproc_elif_in_field_declaration_list] = STATE(2009), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2009), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [566] = { + [sym_preproc_def] = STATE(563), + [sym_preproc_function_def] = STATE(563), + [sym_preproc_call] = STATE(563), + [sym_preproc_if_in_field_declaration_list] = STATE(563), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(563), + [sym_preproc_else_in_field_declaration_list] = STATE(2081), + [sym_preproc_elif_in_field_declaration_list] = STATE(2081), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2081), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(563), + [sym_field_declaration] = STATE(563), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(563), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73288,44 +75943,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [542] = { - [sym_preproc_def] = STATE(538), - [sym_preproc_function_def] = STATE(538), - [sym_preproc_call] = STATE(538), - [sym_preproc_if_in_field_declaration_list] = STATE(538), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(538), - [sym_preproc_else_in_field_declaration_list] = STATE(2066), - [sym_preproc_elif_in_field_declaration_list] = STATE(2066), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(2066), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(538), - [sym_field_declaration] = STATE(538), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(538), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2099), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [567] = { + [sym_preproc_def] = STATE(560), + [sym_preproc_function_def] = STATE(560), + [sym_preproc_call] = STATE(560), + [sym_preproc_if_in_field_declaration_list] = STATE(560), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(560), + [sym_preproc_else_in_field_declaration_list] = STATE(2162), + [sym_preproc_elif_in_field_declaration_list] = STATE(2162), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2162), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(560), + [sym_field_declaration] = STATE(560), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(560), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2111), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73358,44 +76013,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [543] = { - [sym_preproc_def] = STATE(541), - [sym_preproc_function_def] = STATE(541), - [sym_preproc_call] = STATE(541), - [sym_preproc_if_in_field_declaration_list] = STATE(541), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), - [sym_preproc_else_in_field_declaration_list] = STATE(1968), - [sym_preproc_elif_in_field_declaration_list] = STATE(1968), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(1968), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(541), - [sym_field_declaration] = STATE(541), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2059), - [aux_sym_preproc_if_token1] = ACTIONS(2061), - [aux_sym_preproc_if_token2] = ACTIONS(2101), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2065), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2065), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2071), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2071), - [sym_preproc_directive] = ACTIONS(2073), + [568] = { + [sym_preproc_def] = STATE(571), + [sym_preproc_function_def] = STATE(571), + [sym_preproc_call] = STATE(571), + [sym_preproc_if_in_field_declaration_list] = STATE(571), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), + [sym_preproc_else_in_field_declaration_list] = STATE(2233), + [sym_preproc_elif_in_field_declaration_list] = STATE(2233), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(2233), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(571), + [sym_field_declaration] = STATE(571), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2071), + [aux_sym_preproc_if_token1] = ACTIONS(2073), + [aux_sym_preproc_if_token2] = ACTIONS(2113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2077), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2077), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2083), + [sym_preproc_directive] = ACTIONS(2085), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73428,41 +76083,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [544] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2008), - [sym_preproc_elif_in_field_declaration_list] = STATE(2008), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2107), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [569] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(2196), + [sym_preproc_elif_in_field_declaration_list] = STATE(2196), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2119), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73495,41 +76150,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [545] = { - [sym_preproc_def] = STATE(544), - [sym_preproc_function_def] = STATE(544), - [sym_preproc_call] = STATE(544), - [sym_preproc_if_in_field_declaration_list] = STATE(544), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(544), - [sym_preproc_else_in_field_declaration_list] = STATE(2011), - [sym_preproc_elif_in_field_declaration_list] = STATE(2011), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(544), - [sym_field_declaration] = STATE(544), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(544), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2113), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [570] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(2148), + [sym_preproc_elif_in_field_declaration_list] = STATE(2148), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2125), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73562,41 +76217,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [546] = { - [sym_preproc_def] = STATE(556), - [sym_preproc_function_def] = STATE(556), - [sym_preproc_call] = STATE(556), - [sym_preproc_if_in_field_declaration_list] = STATE(556), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(556), - [sym_preproc_else_in_field_declaration_list] = STATE(2163), - [sym_preproc_elif_in_field_declaration_list] = STATE(2163), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(556), - [sym_field_declaration] = STATE(556), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(556), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2115), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [571] = { + [sym_preproc_def] = STATE(571), + [sym_preproc_function_def] = STATE(571), + [sym_preproc_call] = STATE(571), + [sym_preproc_if_in_field_declaration_list] = STATE(571), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(571), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1507), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(571), + [sym_field_declaration] = STATE(571), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(571), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2127), + [aux_sym_preproc_def_token1] = ACTIONS(2130), + [aux_sym_preproc_if_token1] = ACTIONS(2133), + [aux_sym_preproc_if_token2] = ACTIONS(2136), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2138), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2138), + [aux_sym_preproc_else_token1] = ACTIONS(2136), + [aux_sym_preproc_elif_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2136), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2136), + [sym_preproc_directive] = ACTIONS(2141), + [anon_sym___extension__] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym___attribute__] = ACTIONS(2150), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2153), + [anon_sym___declspec] = ACTIONS(2156), + [anon_sym_signed] = ACTIONS(2159), + [anon_sym_unsigned] = ACTIONS(2159), + [anon_sym_long] = ACTIONS(2159), + [anon_sym_short] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2147), + [anon_sym_auto] = ACTIONS(2147), + [anon_sym_register] = ACTIONS(2147), + [anon_sym_inline] = ACTIONS(2147), + [anon_sym___inline] = ACTIONS(2147), + [anon_sym___inline__] = ACTIONS(2147), + [anon_sym___forceinline] = ACTIONS(2147), + [anon_sym_thread_local] = ACTIONS(2147), + [anon_sym___thread] = ACTIONS(2147), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_constexpr] = ACTIONS(2144), + [anon_sym_volatile] = ACTIONS(2144), + [anon_sym_restrict] = ACTIONS(2144), + [anon_sym___restrict__] = ACTIONS(2144), + [anon_sym__Atomic] = ACTIONS(2144), + [anon_sym__Noreturn] = ACTIONS(2144), + [anon_sym_noreturn] = ACTIONS(2144), + [sym_primitive_type] = ACTIONS(2162), + [anon_sym_enum] = ACTIONS(2165), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + }, + [572] = { + [sym_preproc_def] = STATE(574), + [sym_preproc_function_def] = STATE(574), + [sym_preproc_call] = STATE(574), + [sym_preproc_if_in_field_declaration_list] = STATE(574), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(574), + [sym_preproc_else_in_field_declaration_list] = STATE(2242), + [sym_preproc_elif_in_field_declaration_list] = STATE(2242), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(574), + [sym_field_declaration] = STATE(574), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(574), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2174), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73629,41 +76351,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [547] = { - [sym_preproc_def] = STATE(551), - [sym_preproc_function_def] = STATE(551), - [sym_preproc_call] = STATE(551), - [sym_preproc_if_in_field_declaration_list] = STATE(551), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(551), - [sym_preproc_else_in_field_declaration_list] = STATE(2208), - [sym_preproc_elif_in_field_declaration_list] = STATE(2208), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(551), - [sym_field_declaration] = STATE(551), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(551), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2117), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [573] = { + [sym_preproc_def] = STATE(570), + [sym_preproc_function_def] = STATE(570), + [sym_preproc_call] = STATE(570), + [sym_preproc_if_in_field_declaration_list] = STATE(570), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(570), + [sym_preproc_else_in_field_declaration_list] = STATE(2159), + [sym_preproc_elif_in_field_declaration_list] = STATE(2159), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(570), + [sym_field_declaration] = STATE(570), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(570), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73696,41 +76418,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [548] = { - [sym_preproc_def] = STATE(552), - [sym_preproc_function_def] = STATE(552), - [sym_preproc_call] = STATE(552), - [sym_preproc_if_in_field_declaration_list] = STATE(552), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(552), - [sym_preproc_else_in_field_declaration_list] = STATE(1952), - [sym_preproc_elif_in_field_declaration_list] = STATE(1952), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(552), - [sym_field_declaration] = STATE(552), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(552), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2119), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [574] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(2101), + [sym_preproc_elif_in_field_declaration_list] = STATE(2101), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2178), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73763,41 +76485,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [549] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2209), - [sym_preproc_elif_in_field_declaration_list] = STATE(2209), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2121), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [575] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(2040), + [sym_preproc_elif_in_field_declaration_list] = STATE(2040), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73830,41 +76552,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [550] = { - [sym_preproc_def] = STATE(549), - [sym_preproc_function_def] = STATE(549), - [sym_preproc_call] = STATE(549), - [sym_preproc_if_in_field_declaration_list] = STATE(549), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(549), - [sym_preproc_else_in_field_declaration_list] = STATE(2193), - [sym_preproc_elif_in_field_declaration_list] = STATE(2193), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(549), - [sym_field_declaration] = STATE(549), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(549), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2123), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [576] = { + [sym_preproc_def] = STATE(580), + [sym_preproc_function_def] = STATE(580), + [sym_preproc_call] = STATE(580), + [sym_preproc_if_in_field_declaration_list] = STATE(580), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(580), + [sym_preproc_else_in_field_declaration_list] = STATE(2100), + [sym_preproc_elif_in_field_declaration_list] = STATE(2100), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(580), + [sym_field_declaration] = STATE(580), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(580), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2182), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73897,41 +76619,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [551] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2220), - [sym_preproc_elif_in_field_declaration_list] = STATE(2220), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2125), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [577] = { + [sym_preproc_def] = STATE(575), + [sym_preproc_function_def] = STATE(575), + [sym_preproc_call] = STATE(575), + [sym_preproc_if_in_field_declaration_list] = STATE(575), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(575), + [sym_preproc_else_in_field_declaration_list] = STATE(2044), + [sym_preproc_elif_in_field_declaration_list] = STATE(2044), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(575), + [sym_field_declaration] = STATE(575), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(575), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2184), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -73964,41 +76686,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [552] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(1950), - [sym_preproc_elif_in_field_declaration_list] = STATE(1950), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2127), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [578] = { + [sym_preproc_def] = STATE(569), + [sym_preproc_function_def] = STATE(569), + [sym_preproc_call] = STATE(569), + [sym_preproc_if_in_field_declaration_list] = STATE(569), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(569), + [sym_preproc_else_in_field_declaration_list] = STATE(2246), + [sym_preproc_elif_in_field_declaration_list] = STATE(2246), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(569), + [sym_field_declaration] = STATE(569), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(569), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2186), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -74031,41 +76753,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [553] = { - [sym_preproc_def] = STATE(554), - [sym_preproc_function_def] = STATE(554), - [sym_preproc_call] = STATE(554), - [sym_preproc_if_in_field_declaration_list] = STATE(554), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(554), - [sym_preproc_else_in_field_declaration_list] = STATE(2061), - [sym_preproc_elif_in_field_declaration_list] = STATE(2061), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(554), - [sym_field_declaration] = STATE(554), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(554), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2129), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [579] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(2049), + [sym_preproc_elif_in_field_declaration_list] = STATE(2049), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2188), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -74098,41 +76820,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [554] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2059), - [sym_preproc_elif_in_field_declaration_list] = STATE(2059), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2131), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [580] = { + [sym_preproc_def] = STATE(585), + [sym_preproc_function_def] = STATE(585), + [sym_preproc_call] = STATE(585), + [sym_preproc_if_in_field_declaration_list] = STATE(585), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(585), + [sym_preproc_else_in_field_declaration_list] = STATE(2043), + [sym_preproc_elif_in_field_declaration_list] = STATE(2043), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(585), + [sym_field_declaration] = STATE(585), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(585), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2190), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -74165,108 +76887,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(55), [sym_comment] = ACTIONS(3), }, - [555] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1465), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2133), - [aux_sym_preproc_def_token1] = ACTIONS(2136), - [aux_sym_preproc_if_token1] = ACTIONS(2139), - [aux_sym_preproc_if_token2] = ACTIONS(2142), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2144), - [aux_sym_preproc_else_token1] = ACTIONS(2142), - [aux_sym_preproc_elif_token1] = ACTIONS(2142), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2142), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2142), - [sym_preproc_directive] = ACTIONS(2147), - [anon_sym___extension__] = ACTIONS(2150), - [anon_sym_extern] = ACTIONS(2153), - [anon_sym___attribute__] = ACTIONS(2156), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2159), - [anon_sym___declspec] = ACTIONS(2162), - [anon_sym_signed] = ACTIONS(2165), - [anon_sym_unsigned] = ACTIONS(2165), - [anon_sym_long] = ACTIONS(2165), - [anon_sym_short] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_auto] = ACTIONS(2153), - [anon_sym_register] = ACTIONS(2153), - [anon_sym_inline] = ACTIONS(2153), - [anon_sym___inline] = ACTIONS(2153), - [anon_sym___inline__] = ACTIONS(2153), - [anon_sym___forceinline] = ACTIONS(2153), - [anon_sym_thread_local] = ACTIONS(2153), - [anon_sym___thread] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2150), - [anon_sym_constexpr] = ACTIONS(2150), - [anon_sym_volatile] = ACTIONS(2150), - [anon_sym_restrict] = ACTIONS(2150), - [anon_sym___restrict__] = ACTIONS(2150), - [anon_sym__Atomic] = ACTIONS(2150), - [anon_sym__Noreturn] = ACTIONS(2150), - [anon_sym_noreturn] = ACTIONS(2150), - [sym_primitive_type] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2171), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2177), - [sym_comment] = ACTIONS(3), - }, - [556] = { - [sym_preproc_def] = STATE(559), - [sym_preproc_function_def] = STATE(559), - [sym_preproc_call] = STATE(559), - [sym_preproc_if_in_field_declaration_list] = STATE(559), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(559), - [sym_preproc_else_in_field_declaration_list] = STATE(2192), - [sym_preproc_elif_in_field_declaration_list] = STATE(2192), - [sym__declaration_modifiers] = STATE(869), - [sym__declaration_specifiers] = STATE(1474), - [sym_attribute_specifier] = STATE(869), - [sym_attribute_declaration] = STATE(869), - [sym_ms_declspec_modifier] = STATE(869), - [sym_storage_class_specifier] = STATE(869), - [sym_type_qualifier] = STATE(869), - [sym__type_specifier] = STATE(1072), - [sym_sized_type_specifier] = STATE(1083), - [sym_enum_specifier] = STATE(1083), - [sym_struct_specifier] = STATE(1083), - [sym_union_specifier] = STATE(1083), - [sym__field_declaration_list_item] = STATE(559), - [sym_field_declaration] = STATE(559), - [sym_macro_type_specifier] = STATE(1083), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(559), - [aux_sym__declaration_specifiers_repeat1] = STATE(869), - [aux_sym_sized_type_specifier_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(2057), - [aux_sym_preproc_def_token1] = ACTIONS(2103), - [aux_sym_preproc_if_token1] = ACTIONS(2105), - [aux_sym_preproc_if_token2] = ACTIONS(2180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(2109), - [aux_sym_preproc_ifdef_token2] = ACTIONS(2109), - [aux_sym_preproc_else_token1] = ACTIONS(2067), - [aux_sym_preproc_elif_token1] = ACTIONS(2069), - [sym_preproc_directive] = ACTIONS(2111), + [581] = { + [sym_preproc_def] = STATE(579), + [sym_preproc_function_def] = STATE(579), + [sym_preproc_call] = STATE(579), + [sym_preproc_if_in_field_declaration_list] = STATE(579), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(579), + [sym_preproc_else_in_field_declaration_list] = STATE(2055), + [sym_preproc_elif_in_field_declaration_list] = STATE(2055), + [sym__declaration_modifiers] = STATE(893), + [sym__declaration_specifiers] = STATE(1505), + [sym_attribute_specifier] = STATE(893), + [sym_attribute_declaration] = STATE(893), + [sym_ms_declspec_modifier] = STATE(893), + [sym_storage_class_specifier] = STATE(893), + [sym_type_qualifier] = STATE(893), + [sym__type_specifier] = STATE(1073), + [sym_sized_type_specifier] = STATE(1137), + [sym_enum_specifier] = STATE(1137), + [sym_struct_specifier] = STATE(1137), + [sym_union_specifier] = STATE(1137), + [sym__field_declaration_list_item] = STATE(579), + [sym_field_declaration] = STATE(579), + [sym_macro_type_specifier] = STATE(1137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(579), + [aux_sym__declaration_specifiers_repeat1] = STATE(893), + [aux_sym_sized_type_specifier_repeat1] = STATE(1118), + [sym_identifier] = ACTIONS(2069), + [aux_sym_preproc_def_token1] = ACTIONS(2115), + [aux_sym_preproc_if_token1] = ACTIONS(2117), + [aux_sym_preproc_if_token2] = ACTIONS(2192), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2121), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2121), + [aux_sym_preproc_else_token1] = ACTIONS(2079), + [aux_sym_preproc_elif_token1] = ACTIONS(2081), + [sym_preproc_directive] = ACTIONS(2123), [anon_sym___extension__] = ACTIONS(47), [anon_sym_extern] = ACTIONS(45), [anon_sym___attribute__] = ACTIONS(33), @@ -74317,17 +76972,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2182), 1, + ACTIONS(2194), 1, anon_sym_RPAREN, - ACTIONS(2184), 1, + ACTIONS(2196), 1, anon_sym___extension__, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1197), 1, + STATE(1234), 1, sym__expression, - STATE(1801), 1, + STATE(1875), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -74368,13 +77023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74407,17 +77062,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2186), 1, + ACTIONS(2198), 1, anon_sym_RPAREN, - ACTIONS(2188), 1, + ACTIONS(2200), 1, anon_sym___extension__, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1200), 1, + STATE(1236), 1, sym__expression, - STATE(1776), 1, + STATE(1904), 1, sym_compound_statement, ACTIONS(21), 2, anon_sym_BANG, @@ -74458,13 +77113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74482,56 +77137,144 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [230] = 23, + [230] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2156), 1, + ACTIONS(2202), 1, + anon_sym___extension__, + STATE(816), 1, + sym_string_literal, + STATE(1282), 1, + sym__expression, + STATE(1917), 1, + sym_compound_statement, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [342] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2150), 1, anon_sym___attribute__, - ACTIONS(2159), 1, + ACTIONS(2153), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2162), 1, + ACTIONS(2156), 1, anon_sym___declspec, - ACTIONS(2168), 1, + ACTIONS(2162), 1, sym_primitive_type, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_enum, - ACTIONS(2174), 1, + ACTIONS(2168), 1, anon_sym_struct, - ACTIONS(2177), 1, + ACTIONS(2171), 1, anon_sym_union, - ACTIONS(2190), 1, + ACTIONS(2204), 1, aux_sym_preproc_def_token1, - ACTIONS(2193), 1, + ACTIONS(2207), 1, aux_sym_preproc_if_token1, - ACTIONS(2199), 1, + ACTIONS(2213), 1, sym_preproc_directive, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1474), 1, + STATE(1505), 1, sym__declaration_specifiers, - ACTIONS(2196), 2, + ACTIONS(2210), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2142), 3, + ACTIONS(2136), 3, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - ACTIONS(2165), 4, + ACTIONS(2159), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -74539,7 +77282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(559), 8, + STATE(585), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -74548,7 +77291,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, - ACTIONS(2150), 9, + ACTIONS(2144), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -74558,7 +77301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2153), 10, + ACTIONS(2147), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -74569,13 +77312,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [340] = 24, + [452] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN2, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(81), 1, anon_sym_sizeof, ACTIONS(85), 1, @@ -74584,16 +77325,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1528), 1, + anon_sym_LBRACE, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2202), 1, - anon_sym___extension__, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1231), 1, + STATE(1288), 1, sym__expression, - STATE(1909), 1, - sym_compound_statement, + STATE(1960), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74633,13 +77374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74657,7 +77398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [452] = 23, + [561] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74670,15 +77411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2204), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2216), 1, + anon_sym_SEMI, + STATE(816), 1, sym_string_literal, - STATE(1259), 1, + STATE(1258), 1, sym__expression, - STATE(2132), 1, + STATE(2136), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74719,13 +77460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74743,7 +77484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [561] = 23, + [670] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -74752,19 +77493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1520), 1, + ACTIONS(1528), 1, anon_sym_LBRACE, - ACTIONS(1931), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(813), 1, + STATE(827), 1, sym_initializer_list, - STATE(991), 1, + STATE(1013), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -74775,16 +77516,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -74805,13 +77546,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74829,7 +77570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [670] = 23, + [779] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74842,15 +77583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2206), 1, + ACTIONS(2218), 1, anon_sym_RPAREN, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1247), 1, + STATE(1278), 1, sym__expression, - STATE(2172), 1, + STATE(2213), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -74891,13 +77632,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -74915,7 +77656,93 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [779] = 23, + [888] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1710), 1, + anon_sym_LBRACE, + ACTIONS(1716), 1, + anon_sym_offsetof, + ACTIONS(1718), 1, + anon_sym__Generic, + ACTIONS(1722), 1, + sym_number_literal, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(877), 1, + sym_string_literal, + STATE(949), 1, + sym__expression, + STATE(984), 1, + sym_initializer_list, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2226), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1724), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1726), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [997] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -74928,16 +77755,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1520), 1, + ACTIONS(1919), 1, + sym_identifier, + ACTIONS(2228), 1, + anon_sym_RPAREN, + STATE(816), 1, + sym_string_literal, + STATE(1271), 1, + sym__expression, + STATE(2211), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [1106] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1528), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1538), 1, + anon_sym_sizeof, + ACTIONS(2230), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(813), 1, + STATE(827), 1, sym_initializer_list, - STATE(837), 1, + STATE(868), 1, + sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1536), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2232), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(843), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_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, + [1213] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1919), 1, + sym_identifier, + ACTIONS(2234), 1, + anon_sym_RPAREN, + STATE(816), 1, + sym_string_literal, + STATE(1281), 1, sym__expression, + STATE(2217), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -74977,13 +77975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75001,29 +77999,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [888] = 23, + [1322] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2210), 1, - anon_sym_LPAREN2, - STATE(813), 1, - sym_initializer_list, - STATE(837), 1, - sym__expression, - STATE(840), 1, + ACTIONS(2236), 1, + anon_sym_SEMI, + STATE(816), 1, sym_string_literal, + STATE(1250), 1, + sym__expression, + STATE(2279), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75033,18 +78043,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75063,13 +78061,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75087,41 +78085,114 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [997] = 23, + [1431] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1710), 1, + anon_sym_LBRACE, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2216), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1209), 1, + STATE(949), 1, sym__expression, - STATE(2170), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + STATE(984), 1, + sym_initializer_list, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1724), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1726), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(990), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_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, + [1538] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1528), 1, + anon_sym_LBRACE, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(816), 1, + sym_string_literal, + STATE(827), 1, + sym_initializer_list, + STATE(1013), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75131,6 +78202,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75149,17 +78232,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75168,12 +78246,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [1106] = 23, + [1645] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75186,15 +78268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2218), 1, + ACTIONS(2248), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1230), 1, + STATE(1290), 1, sym__expression, - STATE(1988), 1, + STATE(2027), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75235,13 +78317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75259,7 +78341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1215] = 23, + [1754] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75272,15 +78354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2220), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2250), 1, + anon_sym_SEMI, + STATE(816), 1, sym_string_literal, - STATE(1255), 1, + STATE(1244), 1, sym__expression, - STATE(2194), 1, + STATE(2079), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75321,13 +78403,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75345,32 +78427,41 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1324] = 22, + [1863] = 23, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1522), 1, - anon_sym_sizeof, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(792), 1, + ACTIONS(2252), 1, + anon_sym_RPAREN, + STATE(816), 1, sym_string_literal, - STATE(813), 1, - sym_initializer_list, - STATE(837), 1, + STATE(1297), 1, sym__expression, + STATE(2094), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75380,15 +78471,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1516), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75407,12 +78489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75421,88 +78508,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [1431] = 23, + [1972] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 1, - anon_sym_LBRACE, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1528), 1, + anon_sym_LBRACE, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(827), 1, + sym_initializer_list, + STATE(867), 1, sym_string_literal, - STATE(911), 1, + STATE(868), 1, sym__expression, - STATE(956), 1, - sym_initializer_list, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -75511,46 +78589,38 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [1540] = 23, + [2079] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1528), 1, + anon_sym_LBRACE, + ACTIONS(1933), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2234), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(827), 1, + sym_initializer_list, + STATE(867), 1, sym_string_literal, - STATE(1206), 1, + STATE(868), 1, sym__expression, - STATE(1932), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -75560,6 +78630,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1929), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1931), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -75578,13 +78660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75602,7 +78684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1649] = 23, + [2188] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75615,15 +78697,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2236), 1, + ACTIONS(2266), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1208), 1, + STATE(1253), 1, sym__expression, - STATE(2031), 1, + STATE(2029), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75664,13 +78746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75688,7 +78770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1758] = 23, + [2297] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75701,15 +78783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2238), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2268), 1, + anon_sym_SEMI, + STATE(816), 1, sym_string_literal, - STATE(1218), 1, + STATE(1275), 1, sym__expression, - STATE(2173), 1, + STATE(2247), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75750,13 +78832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75774,7 +78856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1867] = 23, + [2406] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75787,16 +78869,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2270), 1, + anon_sym_RPAREN, + STATE(816), 1, sym_string_literal, - STATE(1246), 1, + STATE(1241), 1, sym__expression, - STATE(1842), 1, - sym_initializer_list, + STATE(2244), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -75836,13 +78918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75860,7 +78942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [1976] = 23, + [2515] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -75873,15 +78955,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2240), 1, - anon_sym_RPAREN, - STATE(792), 1, + ACTIONS(2272), 1, + anon_sym_SEMI, + STATE(816), 1, sym_string_literal, - STATE(1263), 1, + STATE(1261), 1, sym__expression, - STATE(2131), 1, + STATE(2250), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -75922,13 +79004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -75946,92 +79028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2085] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 1, - anon_sym_LBRACE, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, - anon_sym_offsetof, - ACTIONS(1752), 1, - anon_sym__Generic, - ACTIONS(1756), 1, - sym_number_literal, - ACTIONS(2242), 1, - sym_identifier, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(852), 1, - sym_string_literal, - STATE(911), 1, - sym__expression, - STATE(956), 1, - sym_initializer_list, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1758), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1760), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(928), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_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, - [2192] = 23, + [2624] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76044,15 +79041,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1520), 1, + ACTIONS(1528), 1, anon_sym_LBRACE, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1260), 1, + STATE(1295), 1, sym__expression, - STATE(1844), 1, + STATE(1955), 1, sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, @@ -76093,13 +79090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76117,92 +79114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2301] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(792), 1, - sym_string_literal, - STATE(813), 1, - sym_initializer_list, - STATE(991), 1, - sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(814), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_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, - [2408] = 23, + [2733] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76215,15 +79127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2252), 1, + ACTIONS(2274), 1, anon_sym_SEMI, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1205), 1, + STATE(1257), 1, sym__expression, - STATE(2092), 1, + STATE(2135), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76264,99 +79176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [2517] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1921), 1, - sym_identifier, - STATE(792), 1, - sym_string_literal, - STATE(1250), 1, - sym__expression, - STATE(1852), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76374,7 +79200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2626] = 23, + [2842] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76387,15 +79213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2254), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(2276), 1, + anon_sym_RPAREN, + STATE(816), 1, sym_string_literal, - STATE(1213), 1, + STATE(1292), 1, sym__expression, - STATE(2133), 1, + STATE(2237), 1, sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76436,13 +79262,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76460,7 +79286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2735] = 23, + [2951] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76473,16 +79299,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1528), 1, + anon_sym_LBRACE, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2256), 1, - anon_sym_SEMI, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1258), 1, + STATE(1299), 1, sym__expression, - STATE(2111), 1, - sym_comma_expression, + STATE(1956), 1, + sym_initializer_list, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76522,13 +79348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76546,7 +79372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2844] = 23, + [3060] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76559,16 +79385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1528), 1, + anon_sym_LBRACE, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2258), 1, - anon_sym_SEMI, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1202), 1, + STATE(827), 1, + sym_initializer_list, + STATE(868), 1, sym__expression, - STATE(1963), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -76608,13 +79434,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76632,29 +79458,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [2953] = 22, + [3169] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1520), 1, - anon_sym_LBRACE, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(813), 1, - sym_initializer_list, - STATE(837), 1, - sym__expression, - STATE(840), 1, + STATE(816), 1, sym_string_literal, + STATE(1260), 1, + sym__expression, + STATE(2070), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76664,18 +79500,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76694,12 +79518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76708,50 +79537,32 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [3060] = 23, + [3275] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2264), 1, - anon_sym_SEMI, - STATE(792), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2278), 1, + anon_sym_RBRACK, + STATE(816), 1, sym_string_literal, - STATE(1252), 1, + STATE(1025), 1, sym__expression, - STATE(2112), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -76761,6 +79572,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -76779,17 +79602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -76798,59 +79616,63 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [3169] = 23, + [3379] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, - sym_identifier, - ACTIONS(2142), 1, - aux_sym_preproc_if_token2, - ACTIONS(2156), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2159), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2162), 1, + ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(2168), 1, + ACTIONS(49), 1, sym_primitive_type, - ACTIONS(2171), 1, + ACTIONS(51), 1, anon_sym_enum, - ACTIONS(2174), 1, + ACTIONS(53), 1, anon_sym_struct, - ACTIONS(2177), 1, + ACTIONS(55), 1, anon_sym_union, - ACTIONS(2266), 1, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + ACTIONS(2280), 1, aux_sym_preproc_def_token1, - ACTIONS(2269), 1, + ACTIONS(2282), 1, aux_sym_preproc_if_token1, - ACTIONS(2275), 1, + ACTIONS(2284), 1, + aux_sym_preproc_if_token2, + ACTIONS(2288), 1, sym_preproc_directive, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, + STATE(1499), 1, sym__declaration_specifiers, - ACTIONS(2272), 2, + ACTIONS(2286), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2165), 4, + ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -76858,7 +79680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(586), 8, + STATE(626), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -76867,7 +79689,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, - ACTIONS(2150), 9, + ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -76877,7 +79699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2153), 10, + ACTIONS(45), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -76888,7 +79710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [3277] = 22, + [3487] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76901,13 +79723,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2278), 1, + ACTIONS(2290), 1, anon_sym_COLON, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1265), 1, + STATE(1334), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -76948,13 +79770,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -76972,7 +79794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3383] = 22, + [3593] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -76985,14 +79807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2280), 1, - anon_sym_COLON, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1291), 1, + STATE(1235), 1, sym__expression, + STATE(1974), 1, + sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77032,13 +79854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77056,7 +79878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3489] = 22, + [3699] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -77069,14 +79891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2292), 1, + anon_sym_COLON, + STATE(816), 1, sym_string_literal, - STATE(1249), 1, + STATE(1318), 1, sym__expression, - STATE(2097), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -77116,13 +79938,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77140,112 +79962,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3595] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2282), 1, - aux_sym_preproc_def_token1, - ACTIONS(2284), 1, - aux_sym_preproc_if_token1, - ACTIONS(2288), 1, - sym_preproc_directive, - ACTIONS(2290), 1, - anon_sym_RBRACE, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1471), 1, - sym__declaration_specifiers, - ACTIONS(2286), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(599), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [3703] = 21, + [3805] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2292), 1, - anon_sym_RBRACK, - STATE(792), 1, + ACTIONS(2294), 1, + anon_sym_COLON, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1309), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77255,18 +80004,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77285,12 +80022,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77299,16 +80041,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [3807] = 21, + [3911] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77317,17 +80055,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2294), 1, + ACTIONS(2296), 1, anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1025), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77338,16 +80076,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77368,7 +80106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77391,54 +80129,54 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [3911] = 23, + [4015] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2133), 1, + ACTIONS(2127), 1, sym_identifier, - ACTIONS(2156), 1, + ACTIONS(2150), 1, anon_sym___attribute__, - ACTIONS(2159), 1, + ACTIONS(2153), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2162), 1, + ACTIONS(2156), 1, anon_sym___declspec, - ACTIONS(2168), 1, + ACTIONS(2162), 1, sym_primitive_type, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_enum, - ACTIONS(2174), 1, + ACTIONS(2168), 1, anon_sym_struct, - ACTIONS(2177), 1, + ACTIONS(2171), 1, anon_sym_union, - ACTIONS(2296), 1, + ACTIONS(2298), 1, aux_sym_preproc_def_token1, - ACTIONS(2299), 1, + ACTIONS(2301), 1, aux_sym_preproc_if_token1, - ACTIONS(2305), 1, + ACTIONS(2307), 1, sym_preproc_directive, - ACTIONS(2308), 1, + ACTIONS(2310), 1, anon_sym_RBRACE, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1471), 1, + STATE(1503), 1, sym__declaration_specifiers, - ACTIONS(2302), 2, + ACTIONS(2304), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - ACTIONS(2165), 4, + ACTIONS(2159), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77446,7 +80184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(593), 8, + STATE(619), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -77455,7 +80193,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, - ACTIONS(2150), 9, + ACTIONS(2144), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -77465,7 +80203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2153), 10, + ACTIONS(2147), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -77476,27 +80214,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4019] = 21, + [4123] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2312), 1, + anon_sym_RBRACK, + STATE(816), 1, + sym_string_literal, + STATE(1025), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(843), 22, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_pointer_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_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, + [4227] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1919), 1, + sym_identifier, + ACTIONS(2314), 1, + anon_sym_COLON, + STATE(816), 1, + sym_string_literal, + STATE(1333), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [4333] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2310), 1, - anon_sym_RBRACK, - STATE(792), 1, + ACTIONS(2316), 1, + anon_sym_COLON, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1314), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77506,18 +80423,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77536,12 +80441,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77550,16 +80460,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [4123] = 21, + [4439] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77568,17 +80474,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2312), 1, + ACTIONS(2318), 1, anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1025), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77589,16 +80495,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77619,7 +80525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77642,7 +80548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4227] = 21, + [4543] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -77651,17 +80557,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2314), 1, + ACTIONS(2320), 1, anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1025), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -77672,16 +80578,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -77702,7 +80608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -77725,39 +80631,27 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4331] = 22, + [4647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2316), 1, - anon_sym_COLON, - STATE(792), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2322), 1, + anon_sym_RBRACK, + STATE(816), 1, sym_string_literal, - STATE(1283), 1, + STATE(1025), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -77767,6 +80661,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -77785,17 +80691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -77804,12 +80705,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [4437] = 23, + [4751] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -77826,106 +80731,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2318), 1, + ACTIONS(2280), 1, aux_sym_preproc_def_token1, - ACTIONS(2320), 1, - aux_sym_preproc_if_token1, - ACTIONS(2322), 1, - aux_sym_preproc_if_token2, - ACTIONS(2326), 1, - sym_preproc_directive, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, - sym__declaration_specifiers, - ACTIONS(2324), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - STATE(601), 8, - sym_preproc_def, - sym_preproc_function_def, - sym_preproc_call, - sym_preproc_if_in_field_declaration_list, - sym_preproc_ifdef_in_field_declaration_list, - sym__field_declaration_list_item, - sym_field_declaration, - aux_sym_preproc_if_in_field_declaration_list_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [4545] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, ACTIONS(2282), 1, - aux_sym_preproc_def_token1, - ACTIONS(2284), 1, aux_sym_preproc_if_token1, ACTIONS(2288), 1, sym_preproc_directive, - ACTIONS(2328), 1, - anon_sym_RBRACE, - STATE(1072), 1, + ACTIONS(2324), 1, + aux_sym_preproc_if_token2, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1471), 1, + STATE(1499), 1, sym__declaration_specifiers, ACTIONS(2286), 2, aux_sym_preproc_ifdef_token1, @@ -77935,13 +80755,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -77949,7 +80769,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(593), 8, + STATE(632), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -77979,39 +80799,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4653] = 22, + [4859] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2330), 1, - anon_sym_COLON, - STATE(792), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + ACTIONS(2326), 1, + anon_sym_RBRACK, + STATE(816), 1, sym_string_literal, - STATE(1288), 1, + STATE(1025), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78021,6 +80829,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78039,17 +80859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78058,12 +80873,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [4759] = 23, + [4963] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -78080,23 +80899,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2318), 1, + ACTIONS(2328), 1, aux_sym_preproc_def_token1, - ACTIONS(2320), 1, + ACTIONS(2330), 1, aux_sym_preproc_if_token1, - ACTIONS(2326), 1, + ACTIONS(2334), 1, sym_preproc_directive, - ACTIONS(2332), 1, - aux_sym_preproc_if_token2, - STATE(1072), 1, + ACTIONS(2336), 1, + anon_sym_RBRACE, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1468), 1, + STATE(1503), 1, sym__declaration_specifiers, - ACTIONS(2324), 2, + ACTIONS(2332), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, ACTIONS(43), 4, @@ -78104,13 +80923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -78118,7 +80937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - STATE(586), 8, + STATE(634), 8, sym_preproc_def, sym_preproc_function_def, sym_preproc_call, @@ -78148,7 +80967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [4867] = 22, + [5071] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78161,13 +80980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2334), 1, + ACTIONS(2338), 1, anon_sym_COLON, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1292), 1, + STATE(1310), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78208,13 +81027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78232,7 +81051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [4973] = 21, + [5177] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78241,17 +81060,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2336), 1, + ACTIONS(2340), 1, anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1025), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78262,16 +81081,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78292,7 +81111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78315,175 +81134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5077] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(2338), 1, - anon_sym_COLON, - STATE(792), 1, - sym_string_literal, - STATE(1296), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5183] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - ACTIONS(2340), 1, - anon_sym_COLON, - STATE(792), 1, - sym_string_literal, - STATE(1271), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [5289] = 21, + [5281] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78492,17 +81143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, ACTIONS(2342), 1, anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1025), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78513,16 +81164,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78543,7 +81194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78566,7 +81217,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5393] = 22, + [5385] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2127), 1, + sym_identifier, + ACTIONS(2136), 1, + aux_sym_preproc_if_token2, + ACTIONS(2150), 1, + anon_sym___attribute__, + ACTIONS(2153), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2156), 1, + anon_sym___declspec, + ACTIONS(2162), 1, + sym_primitive_type, + ACTIONS(2165), 1, + anon_sym_enum, + ACTIONS(2168), 1, + anon_sym_struct, + ACTIONS(2171), 1, + anon_sym_union, + ACTIONS(2344), 1, + aux_sym_preproc_def_token1, + ACTIONS(2347), 1, + aux_sym_preproc_if_token1, + ACTIONS(2353), 1, + sym_preproc_directive, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1499), 1, + sym__declaration_specifiers, + ACTIONS(2350), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(2159), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(632), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(2144), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2147), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5493] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78579,13 +81315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2344), 1, + ACTIONS(2356), 1, anon_sym_COLON, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1290), 1, + STATE(1335), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -78626,13 +81362,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78650,7 +81386,92 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5499] = 21, + [5599] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + ACTIONS(2328), 1, + aux_sym_preproc_def_token1, + ACTIONS(2330), 1, + aux_sym_preproc_if_token1, + ACTIONS(2334), 1, + sym_preproc_directive, + ACTIONS(2358), 1, + anon_sym_RBRACE, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1503), 1, + sym__declaration_specifiers, + ACTIONS(2332), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + STATE(619), 8, + sym_preproc_def, + sym_preproc_function_def, + sym_preproc_call, + sym_preproc_if_in_field_declaration_list, + sym_preproc_ifdef_in_field_declaration_list, + sym__field_declaration_list_item, + sym_field_declaration, + aux_sym_preproc_if_in_field_declaration_list_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [5707] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78659,17 +81480,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - ACTIONS(2346), 1, + ACTIONS(2360), 1, anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1025), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78680,16 +81501,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78710,7 +81531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78733,7 +81554,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5603] = 22, + [5811] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -78746,14 +81567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2362), 1, + anon_sym_COLON, + STATE(816), 1, sym_string_literal, - STATE(1241), 1, + STATE(1304), 1, sym__expression, - STATE(2064), 1, - sym_comma_expression, ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, @@ -78793,13 +81614,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -78817,27 +81638,39 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [5709] = 21, + [5917] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - ACTIONS(2348), 1, - anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1279), 1, sym__expression, + STATE(2139), 1, + sym_comma_expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -78847,18 +81680,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -78877,12 +81698,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -78891,16 +81717,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [5813] = 21, + [6023] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -78909,17 +81731,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - ACTIONS(2350), 1, - anon_sym_RBRACK, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1285), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -78930,16 +81750,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -78960,96 +81780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(1046), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_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, - [5917] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - STATE(792), 1, - sym_string_literal, - STATE(1201), 1, - sym__expression, - STATE(1887), 1, - sym_comma_expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79067,65 +81804,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6023] = 20, + [6126] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(877), 1, sym_string_literal, - STATE(909), 1, + STATE(950), 1, sym__expression, - ACTIONS(1740), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(1708), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(1730), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79148,70 +81885,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6124] = 20, + [6227] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(908), 1, + STATE(1313), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79220,79 +81962,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [6225] = 20, + [6330] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(920), 1, + STATE(1232), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79301,16 +82044,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [6326] = 20, + [6433] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79319,19 +82058,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(845), 1, + STATE(1035), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79341,13 +82077,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79368,7 +82107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79391,65 +82130,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6427] = 20, + [6534] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(1522), 1, - anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(892), 1, + STATE(932), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1514), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1708), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79472,7 +82211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6528] = 21, + [6635] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79485,11 +82224,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1195), 1, + STATE(1307), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79530,13 +82269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79554,7 +82293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6631] = 21, + [6738] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -79567,11 +82306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1270), 1, + STATE(1337), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -79612,13 +82351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79636,106 +82375,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [6734] = 20, + [6841] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(888), 1, + STATE(1289), 1, sym__expression, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(93), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(814), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_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, - [6835] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_offsetof, - ACTIONS(87), 1, - anon_sym__Generic, - ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(840), 1, - sym_string_literal, - STATE(877), 1, - sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -79745,18 +82415,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -79775,12 +82433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79789,16 +82452,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [6936] = 20, + [6944] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -79807,15 +82466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(901), 1, + STATE(926), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -79829,13 +82488,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -79856,7 +82515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -79879,70 +82538,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7037] = 20, + [7045] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2364), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(902), 1, + STATE(933), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -79951,80 +82615,163 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7138] = 21, + [7148] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + ACTIONS(2095), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2097), 1, + anon_sym_RPAREN, + ACTIONS(2105), 1, + anon_sym_LBRACK, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(2368), 1, + anon_sym_STAR, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1389), 1, + sym__declaration_specifiers, + STATE(1705), 1, + sym_parameter_list, + STATE(1783), 1, + sym__abstract_declarator, + STATE(1848), 2, + sym_variadic_parameter, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1703), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [7261] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1299), 1, + STATE(950), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80042,70 +82789,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7241] = 20, + [7364] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1939), 1, anon_sym_sizeof, + ACTIONS(2220), 1, + sym_identifier, ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(903), 1, + STATE(932), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80114,79 +82866,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7342] = 20, + [7467] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1939), 1, anon_sym_sizeof, + ACTIONS(2220), 1, + sym_identifier, ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(904), 1, + STATE(1206), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80195,34 +82948,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7443] = 21, + [7570] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1274), 1, + STATE(1308), 1, sym__expression, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80232,18 +82993,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80262,13 +83011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -80286,37 +83035,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [7546] = 21, + [7673] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1530), 1, + anon_sym_sizeof, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, - sym_string_literal, - STATE(1165), 1, + ACTIONS(2370), 1, + anon_sym_LPAREN2, + STATE(866), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(867), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80326,6 +83063,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1526), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2258), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80344,17 +83093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80363,42 +83107,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7649] = 21, + [7774] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, - sym_number_literal, - ACTIONS(1921), 1, - sym_identifier, - STATE(792), 1, - sym_string_literal, - STATE(1157), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + sym_number_literal, + ACTIONS(1530), 1, + anon_sym_sizeof, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(867), 1, + sym_string_literal, + STATE(869), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80408,6 +83144,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1526), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2258), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80426,17 +83174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80445,80 +83188,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7752] = 21, + [7875] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1150), 1, + STATE(945), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80527,42 +83269,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7855] = 21, + [7976] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1145), 1, + STATE(1037), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -80572,6 +83306,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -80590,17 +83336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80609,80 +83350,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [7958] = 21, + [8077] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1159), 1, + STATE(944), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80691,80 +83431,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8061] = 21, + [8178] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1155), 1, + STATE(943), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80773,80 +83512,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8164] = 21, + [8279] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1147), 1, + STATE(942), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80855,80 +83593,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8267] = 21, + [8380] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1161), 1, + STATE(941), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -80937,80 +83674,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8370] = 21, + [8481] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(845), 1, + STATE(940), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81019,80 +83755,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8473] = 21, + [8582] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1152), 1, + STATE(939), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81101,80 +83836,79 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8576] = 21, + [8683] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(2238), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1262), 1, + STATE(938), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(89), 2, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(83), 5, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81183,30 +83917,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8679] = 20, + [8784] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(832), 1, - sym__expression, - STATE(840), 1, + STATE(816), 1, sym_string_literal, + STATE(1303), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81216,18 +83966,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81246,12 +83984,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81260,74 +84003,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [8780] = 20, + [8887] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(877), 1, sym_string_literal, - STATE(921), 1, + STATE(937), 1, sym__expression, - ACTIONS(1740), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(1708), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(1730), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81350,65 +84089,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8881] = 20, + [8988] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(877), 1, sym_string_literal, - STATE(922), 1, + STATE(935), 1, sym__expression, - ACTIONS(1740), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(1708), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(1730), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81431,7 +84170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [8982] = 20, + [9089] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81440,16 +84179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(844), 1, + STATE(914), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81459,16 +84201,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81489,7 +84228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81512,65 +84251,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9083] = 20, + [9190] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(1522), 1, - anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(905), 1, + STATE(936), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(1514), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1708), 2, anon_sym_BANG, anon_sym_TILDE, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81593,7 +84332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9184] = 20, + [9291] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81602,15 +84341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2352), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(842), 1, + STATE(1038), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81621,16 +84360,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81651,7 +84390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81674,28 +84413,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9285] = 20, + [9392] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1522), 1, - anon_sym_sizeof, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(890), 1, + STATE(1322), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81705,15 +84453,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1516), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -81732,12 +84471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -81746,16 +84490,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [9386] = 20, + [9495] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81764,19 +84504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, - sym_string_literal, - STATE(898), 1, + STATE(860), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, + STATE(867), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -81786,13 +84523,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81813,7 +84553,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [9598] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(1716), 1, + anon_sym_offsetof, + ACTIONS(1718), 1, + anon_sym__Generic, + ACTIONS(1722), 1, + sym_number_literal, + ACTIONS(2238), 1, + sym_identifier, + ACTIONS(2240), 1, + anon_sym_LPAREN2, + STATE(877), 1, + sym_string_literal, + STATE(946), 1, + sym__expression, + ACTIONS(1706), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(2224), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2242), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(1714), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(1724), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(1726), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81836,65 +84658,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9487] = 20, + [9699] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(1712), 1, anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2240), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(877), 1, sym_string_literal, - STATE(925), 1, + STATE(948), 1, sym__expression, - ACTIONS(1740), 2, + ACTIONS(1706), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(1708), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(1730), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81917,7 +84739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9588] = 21, + [9800] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -81926,15 +84748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1139), 1, + STATE(1259), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -81945,16 +84767,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -81975,13 +84797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -81999,7 +84821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9691] = 21, + [9903] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82008,16 +84830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(840), 1, - sym_string_literal, - STATE(1131), 1, + STATE(864), 1, sym__expression, + STATE(867), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82027,16 +84849,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82057,13 +84879,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82081,65 +84903,147 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9794] = 20, + [10006] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(923), 1, + STATE(1262), 1, sym__expression, - ACTIONS(1740), 2, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(1046), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [10109] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1530), 1, + anon_sym_sizeof, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(867), 1, + sym_string_literal, + STATE(901), 1, + sym__expression, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1526), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82162,7 +85066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [9895] = 21, + [10210] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82171,16 +85075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(832), 1, - sym__expression, - STATE(840), 1, + STATE(816), 1, sym_string_literal, + STATE(997), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82190,16 +85094,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82220,17 +85124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82239,12 +85138,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [9998] = 20, + [10311] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82253,16 +85156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(840), 1, - sym_string_literal, - STATE(880), 1, + STATE(860), 1, sym__expression, + STATE(867), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82272,16 +85175,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82302,7 +85205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82325,37 +85228,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10099] = 21, + [10412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1941), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1148), 1, + STATE(1270), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82365,6 +85256,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82383,13 +85286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82407,37 +85310,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10202] = 21, + [10515] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1153), 1, + STATE(1034), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82447,6 +85338,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82465,17 +85368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82484,70 +85382,74 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [10305] = 20, + [10616] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1532), 1, sym_identifier, + ACTIONS(1903), 1, + anon_sym_sizeof, ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(915), 1, + STATE(1033), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82570,37 +85472,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10406] = 21, + [10717] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1286), 1, + STATE(1039), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82610,6 +85500,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82628,17 +85530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82647,12 +85544,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [10509] = 21, + [10818] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82661,15 +85562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(2354), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(981), 1, + STATE(1017), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -82680,16 +85581,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82710,13 +85611,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82734,28 +85635,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10612] = 20, + [10921] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1522), 1, - anon_sym_sizeof, - ACTIONS(2356), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(842), 1, + STATE(1188), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82765,15 +85675,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1516), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -82792,93 +85693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, + STATE(947), 5, sym_pointer_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_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, - [10713] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, - anon_sym_offsetof, - ACTIONS(1752), 1, - anon_sym__Generic, - ACTIONS(1756), 1, - sym_number_literal, - ACTIONS(2242), 1, - sym_identifier, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(852), 1, - sym_string_literal, - STATE(917), 1, - sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2246), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1758), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1760), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -82887,16 +85712,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [10814] = 20, + [11024] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -82905,19 +85726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(891), 1, + STATE(903), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -82927,13 +85745,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -82954,7 +85775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -82977,37 +85798,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [10915] = 21, + [11125] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1941), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1267), 1, + STATE(1265), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -83017,6 +85826,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83035,13 +85856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83059,7 +85880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11018] = 20, + [11228] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83068,15 +85889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(887), 1, + STATE(1032), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83087,16 +85908,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83117,7 +85938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83140,25 +85961,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11119] = 21, + [11329] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2210), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(844), 1, + STATE(1301), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -83168,18 +86001,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -83198,13 +86019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83222,65 +86043,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11222] = 20, + [11432] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1532), 1, sym_identifier, + ACTIONS(1903), 1, + anon_sym_sizeof, ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(924), 1, + STATE(1026), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83303,65 +86124,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11323] = 20, + [11533] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1532), 1, sym_identifier, + ACTIONS(1903), 1, + anon_sym_sizeof, ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(913), 1, + STATE(998), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1899), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1901), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83384,7 +86205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11424] = 20, + [11634] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83393,19 +86214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2372), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(844), 1, + STATE(1020), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -83415,13 +86233,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83442,7 +86263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83465,70 +86286,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11525] = 20, + [11735] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2358), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(912), 1, + STATE(1256), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(1046), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83537,16 +86363,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [11626] = 20, + [11838] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83555,15 +86377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(986), 1, + STATE(1255), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83574,16 +86396,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83604,12 +86426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(1046), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83618,74 +86445,70 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [11727] = 20, + [11941] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1530), 1, + anon_sym_sizeof, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, - STATE(918), 1, + STATE(907), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1526), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83708,7 +86531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [11828] = 21, + [12042] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83717,15 +86540,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(980), 1, + STATE(909), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83736,16 +86559,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83766,17 +86589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -83785,12 +86603,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [11931] = 20, + [12143] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83799,15 +86621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(867), 1, sym_string_literal, - STATE(881), 1, + STATE(910), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83818,16 +86640,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -83848,7 +86670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83871,65 +86693,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12032] = 20, + [12244] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1530), 1, + anon_sym_sizeof, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, - STATE(919), 1, + STATE(911), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1526), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -83952,7 +86774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12133] = 20, + [12345] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -83961,15 +86783,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(867), 1, sym_string_literal, - STATE(876), 1, + STATE(902), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -83980,16 +86802,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84010,7 +86832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84033,7 +86855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12234] = 21, + [12446] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84042,15 +86864,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1133), 1, + STATE(1036), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84061,16 +86883,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84091,17 +86913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84110,42 +86927,34 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [12337] = 21, + [12547] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1530), 1, + anon_sym_sizeof, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2254), 1, + anon_sym_LPAREN2, + STATE(867), 1, sym_string_literal, - STATE(1298), 1, + STATE(913), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84155,6 +86964,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1524), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1526), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2258), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84173,17 +86994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84192,12 +87008,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [12440] = 21, + [12648] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -84210,11 +87030,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1251), 1, + STATE(1312), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -84255,13 +87075,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84279,7 +87099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12543] = 20, + [12751] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84288,15 +87108,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(867), 1, sym_string_literal, - STATE(885), 1, + STATE(912), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84307,16 +87127,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84337,7 +87157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84360,75 +87180,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12644] = 21, + [12852] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(1712), 1, + anon_sym_sizeof, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2238), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2374), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(877), 1, sym_string_literal, - STATE(1170), 1, + STATE(933), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(1706), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1708), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(1730), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2242), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, + STATE(990), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84437,12 +87252,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [12747] = 20, + [12953] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84451,16 +87270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(834), 1, - sym__expression, - STATE(840), 1, + STATE(867), 1, sym_string_literal, + STATE(906), 1, + sym__expression, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84470,16 +87289,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84500,7 +87319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84523,147 +87342,65 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [12848] = 21, + [13054] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1175), 1, + STATE(1040), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2232), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1758), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1760), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [12951] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, - anon_sym_offsetof, - ACTIONS(1752), 1, - anon_sym__Generic, - ACTIONS(1756), 1, - sym_number_literal, - ACTIONS(2242), 1, - sym_identifier, - ACTIONS(2244), 1, - anon_sym_LPAREN2, - STATE(852), 1, - sym_string_literal, - STATE(910), 1, - sym__expression, - ACTIONS(1740), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1742), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84686,7 +87423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13052] = 20, + [13155] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84695,15 +87432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1903), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(845), 1, + STATE(1017), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84714,16 +87451,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84744,7 +87481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -84767,7 +87504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13153] = 21, + [13256] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -84776,15 +87513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1136), 1, + STATE(1042), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -84795,16 +87532,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -84825,17 +87562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84844,33 +87576,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [13256] = 20, + [13357] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1522), 1, - anon_sym_sizeof, - ACTIONS(2222), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(832), 1, + STATE(1320), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84880,15 +87625,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1516), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2224), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84907,12 +87643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -84921,34 +87662,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [13357] = 21, + [13460] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1222), 1, + STATE(1231), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -84958,18 +87707,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -84988,13 +87725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85012,7 +87749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13460] = 20, + [13563] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85021,15 +87758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(984), 1, + STATE(1264), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85040,16 +87777,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85070,12 +87807,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(1046), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85084,34 +87826,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [13561] = 20, + [13666] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(878), 1, + STATE(1266), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85121,18 +87871,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85151,12 +87889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85165,16 +87908,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [13662] = 21, + [13769] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85183,15 +87922,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(1216), 1, + STATE(905), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85202,16 +87941,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85232,17 +87971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85251,30 +87985,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [13765] = 21, + [13870] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2210), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1143), 1, + STATE(1187), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85284,18 +88034,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85314,13 +88052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85338,7 +88076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [13868] = 21, + [13973] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85347,16 +88085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(792), 1, - sym_string_literal, - STATE(986), 1, + STATE(864), 1, sym__expression, + STATE(867), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85366,16 +88104,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85396,17 +88134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85415,12 +88148,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [13971] = 21, + [14074] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85429,15 +88166,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1224), 1, + STATE(1252), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -85448,16 +88185,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85478,13 +88215,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85502,25 +88239,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14074] = 21, + [14177] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1240), 1, + STATE(1191), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85530,18 +88279,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -85560,13 +88297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85584,7 +88321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14177] = 21, + [14280] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85593,16 +88330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1248), 1, + STATE(919), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85612,16 +88352,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85642,17 +88379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85661,12 +88393,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [14280] = 21, + [14381] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85675,16 +88411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1238), 1, + STATE(920), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85694,16 +88433,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85724,17 +88460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85743,12 +88474,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [14383] = 21, + [14482] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85757,16 +88492,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1236), 1, + STATE(921), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85776,16 +88514,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85806,17 +88541,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85825,12 +88555,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [14486] = 20, + [14583] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -85839,16 +88573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(886), 1, + STATE(922), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -85858,16 +88595,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -85888,7 +88622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -85911,75 +88645,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14587] = 21, + [14684] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1538), 1, + anon_sym_sizeof, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1176), 1, + STATE(923), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -85988,12 +88717,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [14690] = 21, + [14785] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86002,15 +88735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(985), 1, + STATE(1327), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86021,16 +88754,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86051,13 +88784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86075,71 +88808,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14793] = 21, + [14888] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(1235), 1, + STATE(1207), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86157,7 +88890,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14896] = 21, + [14991] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86166,15 +88899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1215), 1, + STATE(1251), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86185,16 +88918,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86215,13 +88948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86239,7 +88972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [14999] = 21, + [15094] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86248,16 +88981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1266), 1, + STATE(864), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86267,16 +89003,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86297,17 +89030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86316,12 +89044,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [15102] = 21, + [15195] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86330,15 +89062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1530), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(2254), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(1210), 1, + STATE(870), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -86349,16 +89081,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1524), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1526), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2258), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86379,17 +89111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86398,30 +89125,46 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [15205] = 21, + [15296] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1284), 1, + STATE(1176), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86431,18 +89174,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86461,13 +89192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86485,7 +89216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15308] = 21, + [15399] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -86498,11 +89229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1146), 1, + STATE(1193), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -86543,13 +89274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86567,7 +89298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15411] = 21, + [15502] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86576,16 +89307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(1538), 1, + anon_sym_sizeof, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1142), 1, + STATE(860), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86595,16 +89329,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86625,17 +89356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86644,94 +89370,16 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_expression, sym_offsetof_expression, sym_generic_expression, - sym_gnu_asm_expression, - sym_compound_literal_expression, - sym_char_literal, - sym_concatenated_string, - sym_null, - [15514] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1750), 1, - anon_sym_offsetof, - ACTIONS(1752), 1, - anon_sym__Generic, - ACTIONS(1756), 1, - sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, - sym_identifier, - ACTIONS(2360), 1, - anon_sym_LPAREN2, - STATE(852), 1, - sym_string_literal, - STATE(912), 1, - sym__expression, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2232), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - ACTIONS(1758), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - ACTIONS(1760), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, sym_subscript_expression, sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, - sym__expression_not_binary, - sym__string, - sym_conditional_expression, - sym_assignment_expression, - sym_unary_expression, - sym_binary_expression, - sym_update_expression, - sym_cast_expression, - sym_sizeof_expression, - sym_alignof_expression, - sym_offsetof_expression, - sym_generic_expression, sym_gnu_asm_expression, + sym_field_expression, sym_compound_literal_expression, + sym_parenthesized_expression, sym_char_literal, sym_concatenated_string, sym_null, - [15617] = 20, + [15603] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -86740,15 +89388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2376), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(889), 1, + STATE(866), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -86762,13 +89410,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -86789,7 +89437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86812,25 +89460,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15718] = 20, + [15704] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1532), 1, - anon_sym_sizeof, - ACTIONS(2260), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(884), 1, + STATE(1331), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86840,18 +89500,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1528), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1530), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2262), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86870,12 +89518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -86884,34 +89537,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [15819] = 21, + [15807] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2210), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1134), 1, + STATE(1237), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -86921,18 +89582,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -86951,13 +89600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -86975,7 +89624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [15922] = 21, + [15910] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -86988,11 +89637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1194), 1, + STATE(1195), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -87033,13 +89682,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87057,25 +89706,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16025] = 21, + [16013] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1242), 1, + STATE(1196), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87085,18 +89746,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87115,13 +89764,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87139,25 +89788,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16128] = 21, + [16116] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1931), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1937), 1, - anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2378), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1204), 1, + STATE(866), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87167,18 +89828,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1933), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1935), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(1997), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87197,13 +89846,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87221,124 +89870,25 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16231] = 26, + [16219] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2083), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2085), 1, - anon_sym_RPAREN, - ACTIONS(2093), 1, - anon_sym_LBRACK, - ACTIONS(2362), 1, - anon_sym_LPAREN2, - ACTIONS(2364), 1, - anon_sym_STAR, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1338), 1, - sym__declaration_specifiers, - STATE(1644), 1, - sym_parameter_list, - STATE(1690), 1, - sym__abstract_declarator, - STATE(1753), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1645), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [16344] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1941), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1196), 1, + STATE(1330), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87348,6 +89898,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87366,13 +89928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87390,25 +89952,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16447] = 20, + [16322] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1017), 1, + STATE(860), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87418,18 +89992,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87448,12 +90010,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87462,16 +90029,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [16548] = 21, + [16425] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87480,15 +90043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(867), 1, sym_string_literal, - STATE(1141), 1, + STATE(1171), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87499,16 +90062,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87529,13 +90092,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87553,25 +90116,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16651] = 21, + [16528] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2210), 1, - anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1140), 1, + STATE(864), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87581,18 +90156,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1909), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -87611,13 +90174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87635,7 +90198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16754] = 21, + [16631] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87644,16 +90207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2380), 1, anon_sym_LPAREN2, - STATE(840), 1, - sym_string_literal, - STATE(1144), 1, + STATE(866), 1, sym__expression, + STATE(867), 1, + sym_string_literal, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87663,16 +90226,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87693,13 +90256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -87717,7 +90280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [16857] = 20, + [16734] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87726,15 +90289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(1016), 1, + STATE(1163), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87745,16 +90308,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87775,12 +90338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87789,16 +90357,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [16958] = 20, + [16837] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87807,15 +90371,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(1015), 1, + STATE(869), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87826,16 +90390,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87856,12 +90420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87870,16 +90439,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17059] = 20, + [16940] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87888,15 +90453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(1014), 1, + STATE(1174), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -87907,16 +90472,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -87937,12 +90502,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -87951,16 +90521,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17160] = 20, + [17043] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -87969,19 +90535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(899), 1, + STATE(1172), 1, sym__expression, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -87991,13 +90554,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88018,12 +90584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88032,79 +90603,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17261] = 20, + [17146] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(1013), 1, + STATE(1204), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88113,16 +90685,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17362] = 20, + [17249] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88131,15 +90699,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(1012), 1, + STATE(1161), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -88150,16 +90718,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88180,12 +90748,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88194,16 +90767,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17463] = 21, + [17352] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, @@ -88216,11 +90785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1285), 1, + STATE(1197), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -88261,13 +90830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88285,7 +90854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17566] = 20, + [17455] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -88294,15 +90863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1947), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1011), 1, + STATE(1026), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -88313,16 +90882,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -88343,12 +90912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(1046), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88357,80 +90931,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17667] = 21, + [17558] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, - STATE(913), 1, + STATE(1170), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88448,71 +91018,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17770] = 21, + [17661] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, STATE(1168), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88530,75 +91100,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [17873] = 21, + [17764] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1903), 1, + anon_sym_sizeof, + ACTIONS(2244), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1172), 1, + STATE(1025), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1899), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1901), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2246), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -88607,76 +91172,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [17976] = 21, + [17865] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, - STATE(1183), 1, + STATE(1167), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88694,71 +91263,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18079] = 21, + [17968] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1182), 1, + STATE(998), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88776,71 +91345,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18182] = 21, + [18071] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(2382), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1181), 1, + STATE(1020), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88858,71 +91427,153 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18285] = 21, + [18174] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1178), 1, + STATE(1328), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(21), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(83), 5, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + ACTIONS(93), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, + sym__expression_not_binary, + sym__string, + sym_conditional_expression, + sym_assignment_expression, + sym_unary_expression, + sym_binary_expression, + sym_update_expression, + sym_cast_expression, + sym_sizeof_expression, + sym_alignof_expression, + sym_offsetof_expression, + sym_generic_expression, + sym_gnu_asm_expression, + sym_compound_literal_expression, + sym_char_literal, + sym_concatenated_string, + sym_null, + [18277] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_offsetof, + ACTIONS(87), 1, + anon_sym__Generic, + ACTIONS(157), 1, + sym_number_literal, + ACTIONS(1941), 1, + sym_identifier, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + anon_sym_LPAREN2, + STATE(816), 1, + sym_string_literal, + STATE(1323), 1, + sym__expression, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -88940,75 +91591,70 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18388] = 21, + [18380] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1538), 1, + anon_sym_sizeof, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1171), 1, + STATE(924), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, - anon_sym_STAR, - anon_sym_AMP, ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89017,76 +91663,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [18491] = 21, + [18481] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, - STATE(1174), 1, + STATE(1166), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89104,71 +91754,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18594] = 21, + [18584] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(867), 1, sym_string_literal, - STATE(910), 1, + STATE(1164), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89186,71 +91836,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18697] = 21, + [18687] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1167), 1, + STATE(1280), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89268,25 +91918,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [18800] = 20, + [18790] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1010), 1, + STATE(1199), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89296,18 +91958,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89326,12 +91976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89340,80 +91995,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [18901] = 21, + [18893] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(2228), 1, - anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(1177), 1, + STATE(1178), 1, sym__expression, - ACTIONS(1754), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(1923), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(21), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(23), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(25), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(79), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(89), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(99), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89431,25 +92082,37 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19004] = 20, + [18996] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1009), 1, + STATE(1192), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89459,18 +92122,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89489,12 +92140,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89503,34 +92159,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [19105] = 20, + [19099] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(998), 1, + STATE(1198), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89540,18 +92204,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89570,12 +92222,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89584,34 +92241,42 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [19206] = 20, + [19202] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN2, + ACTIONS(81), 1, + anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1919), 1, sym_identifier, - ACTIONS(1891), 1, - anon_sym_sizeof, - ACTIONS(2248), 1, - anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(997), 1, + STATE(869), 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(79), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89621,18 +92286,6 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1889), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -89651,12 +92304,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(947), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89665,16 +92323,12 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [19307] = 20, + [19305] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89683,16 +92337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(985), 1, + STATE(931), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89702,16 +92359,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89732,7 +92386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89755,7 +92409,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19408] = 20, + [19406] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89764,16 +92418,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2248), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(980), 1, + STATE(925), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -89783,16 +92440,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89813,7 +92467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -89836,7 +92490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [19509] = 20, + [19507] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -89845,15 +92499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1891), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2366), 1, + ACTIONS(2260), 1, + sym_identifier, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(867), 1, sym_string_literal, - STATE(981), 1, + STATE(1162), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -89864,16 +92518,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1887), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1889), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2250), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -89894,12 +92548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(916), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -89908,80 +92567,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, [19610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1750), 1, + ACTIONS(85), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(87), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(157), 1, sym_number_literal, - ACTIONS(1927), 1, - anon_sym_sizeof, - ACTIONS(2226), 1, + ACTIONS(1941), 1, sym_identifier, - ACTIONS(2228), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(816), 1, sym_string_literal, - STATE(924), 1, + STATE(1248), 1, sym__expression, - ACTIONS(1754), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, - sym_true, - sym_false, - ACTIONS(1764), 2, + ACTIONS(99), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(1923), 2, + ACTIONS(159), 2, + sym_true, + sym_false, + ACTIONS(1943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1925), 2, + ACTIONS(1945), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2230), 2, + ACTIONS(2003), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2232), 2, + ACTIONS(2009), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(93), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(940), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(928), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90002,34 +92657,22 @@ static const uint16_t ts_small_parse_table[] = { [19713] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1941), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1947), 1, + anon_sym_sizeof, + ACTIONS(1999), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(832), 1, + STATE(1249), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90039,6 +92682,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1945), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2003), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2009), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90057,13 +92712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(1046), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90084,34 +92739,22 @@ static const uint16_t ts_small_parse_table[] = { [19816] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1933), 1, + anon_sym_sizeof, + ACTIONS(2260), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2262), 1, + anon_sym_LPAREN2, + STATE(867), 1, sym_string_literal, - STATE(844), 1, + STATE(1173), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(25), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90121,6 +92764,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1929), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1931), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2256), 2, + anon_sym_STAR, + anon_sym_AMP, + ACTIONS(2264), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90139,13 +92794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90172,15 +92827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1510), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(1522), 1, + ACTIONS(1538), 1, anon_sym_sizeof, - ACTIONS(2222), 1, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(834), 1, + STATE(869), 1, sym__expression, ACTIONS(25), 2, anon_sym_STAR, @@ -90194,13 +92849,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1514), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1516), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2224), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90221,7 +92876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90244,7 +92899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20020] = 21, + [20020] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, @@ -90253,16 +92908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, - anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(1532), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(1538), 1, + anon_sym_sizeof, + ACTIONS(2230), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(816), 1, sym_string_literal, - STATE(1132), 1, + STATE(928), 1, sym__expression, + ACTIONS(25), 2, + anon_sym_STAR, + anon_sym_AMP, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90272,16 +92930,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1534), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1536), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, - anon_sym_STAR, - anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2232), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -90302,17 +92957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90321,42 +92971,37 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [20123] = 21, + [20121] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, ACTIONS(85), 1, anon_sym_offsetof, ACTIONS(87), 1, anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1532), 1, sym_identifier, - STATE(792), 1, + ACTIONS(1538), 1, + anon_sym_sizeof, + ACTIONS(2230), 1, + anon_sym_LPAREN2, + STATE(816), 1, sym_string_literal, - STATE(1301), 1, + STATE(870), 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(79), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, @@ -90366,6 +93011,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, + ACTIONS(1534), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1536), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2232), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(83), 5, anon_sym___alignof__, anon_sym___alignof, @@ -90384,17 +93038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, - sym_pointer_expression, - sym_subscript_expression, - sym_call_expression, - sym_field_expression, - sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 22, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, + sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90403,76 +93052,80 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [20226] = 21, + [20222] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2368), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(877), 1, sym_string_literal, - STATE(842), 1, + STATE(1211), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90490,71 +93143,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20329] = 21, + [20325] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(877), 1, sym_string_literal, - STATE(1135), 1, + STATE(1212), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90572,71 +93225,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20432] = 21, + [20428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2370), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(842), 1, + STATE(1214), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90654,71 +93307,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20535] = 21, + [20531] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(877), 1, sym_string_literal, - STATE(845), 1, + STATE(1201), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90736,71 +93389,71 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20638] = 21, + [20634] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1214), 1, + STATE(1215), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90818,70 +93471,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20741] = 20, + [20737] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, - anon_sym_sizeof, - ACTIONS(1750), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(1752), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(1756), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(2242), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - ACTIONS(2244), 1, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(852), 1, + STATE(877), 1, sym_string_literal, - STATE(914), 1, + STATE(1216), 1, sym__expression, - ACTIONS(1740), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(1742), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(1754), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(1762), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1764), 2, + ACTIONS(1730), 2, anon_sym_NULL, anon_sym_nullptr, - ACTIONS(2230), 2, + ACTIONS(1935), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2246), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(1748), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(1758), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(928), 22, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -90890,80 +93548,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, - [20842] = 21, + [20840] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1282), 1, + STATE(1217), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -90981,70 +93635,75 @@ static const uint16_t ts_small_parse_table[] = { sym_char_literal, sym_concatenated_string, sym_null, - [20945] = 20, + [20943] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1510), 1, - sym_identifier, - ACTIONS(1532), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(2260), 1, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(877), 1, sym_string_literal, - STATE(883), 1, + STATE(1218), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1528), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1530), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2262), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(814), 22, + STATE(995), 5, + sym_pointer_expression, + sym_subscript_expression, + sym_call_expression, + sym_field_expression, + sym_parenthesized_expression, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, sym_assignment_expression, - sym_pointer_expression, sym_unary_expression, sym_binary_expression, sym_update_expression, @@ -91053,80 +93712,76 @@ static const uint16_t ts_small_parse_table[] = { sym_alignof_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, [21046] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1192), 1, + STATE(935), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91147,68 +93802,68 @@ static const uint16_t ts_small_parse_table[] = { [21149] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN2, - ACTIONS(81), 1, - anon_sym_sizeof, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1939), 1, + anon_sym_sizeof, + ACTIONS(2220), 1, sym_identifier, - STATE(792), 1, + ACTIONS(2222), 1, + anon_sym_LPAREN2, + STATE(877), 1, sym_string_literal, - STATE(1294), 1, + STATE(1202), 1, sym__expression, - ACTIONS(21), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(23), 2, + ACTIONS(1720), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(1728), 2, + sym_true, + sym_false, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(25), 2, + ACTIONS(1937), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(79), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(89), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, - sym_true, - sym_false, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91239,11 +93894,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1199), 1, + STATE(1239), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -91284,13 +93939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91317,15 +93972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1911), 1, + ACTIONS(1933), 1, anon_sym_sizeof, - ACTIONS(2208), 1, + ACTIONS(2260), 1, sym_identifier, - ACTIONS(2210), 1, + ACTIONS(2262), 1, anon_sym_LPAREN2, - STATE(840), 1, + STATE(867), 1, sym_string_literal, - STATE(1137), 1, + STATE(1165), 1, sym__expression, ACTIONS(89), 2, anon_sym_asm, @@ -91336,16 +93991,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(159), 2, sym_true, sym_false, - ACTIONS(1907), 2, + ACTIONS(1929), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1909), 2, + ACTIONS(1931), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(2212), 2, + ACTIONS(2256), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(2214), 2, + ACTIONS(2264), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, ACTIONS(83), 5, @@ -91366,13 +94021,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(894), 5, + STATE(916), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91393,68 +94048,68 @@ static const uint16_t ts_small_parse_table[] = { [21458] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1716), 1, anon_sym_offsetof, - ACTIONS(87), 1, + ACTIONS(1718), 1, anon_sym__Generic, - ACTIONS(157), 1, + ACTIONS(1722), 1, sym_number_literal, - ACTIONS(1931), 1, - sym_identifier, - ACTIONS(1937), 1, + ACTIONS(1939), 1, anon_sym_sizeof, - ACTIONS(1987), 1, + ACTIONS(2220), 1, + sym_identifier, + ACTIONS(2222), 1, anon_sym_LPAREN2, - STATE(792), 1, + STATE(877), 1, sym_string_literal, - STATE(1211), 1, + STATE(1213), 1, sym__expression, - ACTIONS(89), 2, + ACTIONS(1720), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(99), 2, - anon_sym_NULL, - anon_sym_nullptr, - ACTIONS(159), 2, + ACTIONS(1728), 2, sym_true, sym_false, - ACTIONS(1933), 2, + ACTIONS(1730), 2, + anon_sym_NULL, + anon_sym_nullptr, + ACTIONS(1935), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(1935), 2, + ACTIONS(1937), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(1991), 2, + ACTIONS(2224), 2, anon_sym_STAR, anon_sym_AMP, - ACTIONS(1997), 2, + ACTIONS(2226), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(83), 5, + ACTIONS(1714), 5, anon_sym___alignof__, anon_sym___alignof, anon_sym__alignof, anon_sym_alignof, anon_sym__Alignof, - ACTIONS(93), 5, + ACTIONS(1724), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - ACTIONS(95), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(1021), 5, + STATE(995), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(990), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91485,11 +94140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Generic, ACTIONS(157), 1, sym_number_literal, - ACTIONS(1921), 1, + ACTIONS(1919), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1268), 1, + STATE(1238), 1, sym__expression, ACTIONS(21), 2, anon_sym_BANG, @@ -91530,13 +94185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - STATE(907), 5, + STATE(947), 5, sym_pointer_expression, sym_subscript_expression, sym_call_expression, sym_field_expression, sym_parenthesized_expression, - STATE(814), 17, + STATE(843), 17, sym__expression_not_binary, sym__string, sym_conditional_expression, @@ -91557,22 +94212,22 @@ static const uint16_t ts_small_parse_table[] = { [21664] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1951), 1, + ACTIONS(1963), 1, anon_sym_const, - ACTIONS(1955), 1, + ACTIONS(1967), 1, anon_sym_LPAREN2, - ACTIONS(1961), 1, + ACTIONS(1973), 1, anon_sym_STAR, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - STATE(770), 1, + STATE(799), 1, sym_string_literal, - STATE(1082), 1, + STATE(1106), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(1980), 2, + ACTIONS(1976), 2, anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(2372), 4, + ACTIONS(2384), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -91583,7 +94238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1964), 8, + ACTIONS(1979), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -91592,7 +94247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -91603,7 +94258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 11, + ACTIONS(1971), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -91615,7 +94270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 12, + ACTIONS(1965), 12, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91628,7 +94283,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [21752] = 21, + [21752] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2386), 1, + sym_identifier, + STATE(792), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(2393), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2391), 16, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + ACTIONS(2389), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [21823] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -91645,19 +94365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2374), 1, + ACTIONS(2396), 1, anon_sym_LBRACE, - STATE(854), 1, + STATE(890), 1, sym_ms_call_modifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1491), 1, + STATE(1522), 1, sym__declaration_specifiers, - STATE(210), 3, + STATE(386), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91666,7 +94386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91679,7 +94399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91708,71 +94428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [21853] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2376), 1, - sym_identifier, - STATE(773), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2380), 16, - aux_sym_preproc_elif_token1, - 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, - anon_sym_DOT, - ACTIONS(2378), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, [21924] = 21, ACTIONS(3), 1, sym_comment, @@ -91790,19 +94445,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2382), 1, + ACTIONS(2398), 1, anon_sym_LBRACE, - STATE(859), 1, + STATE(882), 1, sym_ms_call_modifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1494), 1, + STATE(1512), 1, sym__declaration_specifiers, - STATE(403), 3, + STATE(239), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91811,7 +94466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91824,7 +94479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -91856,9 +94511,9 @@ static const uint16_t ts_small_parse_table[] = { [22025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2384), 1, + ACTIONS(2400), 1, sym_identifier, - STATE(768), 2, + STATE(792), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, ACTIONS(95), 5, @@ -91867,7 +94522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2388), 16, + ACTIONS(2404), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -91884,7 +94539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2386), 33, + ACTIONS(2402), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -91935,19 +94590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2390), 1, + ACTIONS(2406), 1, anon_sym_LBRACE, - STATE(861), 1, + STATE(888), 1, sym_ms_call_modifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1498), 1, + STATE(1524), 1, sym__declaration_specifiers, - STATE(382), 3, + STATE(413), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -91956,7 +94611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -91969,7 +94624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92015,19 +94670,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2392), 1, + ACTIONS(2408), 1, anon_sym_LBRACE, - STATE(863), 1, + STATE(885), 1, sym_ms_call_modifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1493), 1, + STATE(1517), 1, sym__declaration_specifiers, - STATE(148), 3, + STATE(492), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -92036,7 +94691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -92049,7 +94704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92078,72 +94733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [22298] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2394), 1, - sym_identifier, - STATE(773), 2, - sym_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(2401), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2399), 16, - aux_sym_preproc_elif_token1, - 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, - anon_sym_DOT, - ACTIONS(2397), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [22369] = 21, + [22298] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -92160,19 +94750,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2404), 1, + ACTIONS(2410), 1, anon_sym_LBRACE, - STATE(855), 1, + STATE(883), 1, sym_ms_call_modifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1486), 1, + STATE(1521), 1, sym__declaration_specifiers, - STATE(479), 3, + STATE(155), 3, sym_function_definition, sym_declaration, sym_declaration_list, @@ -92181,7 +94771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -92194,7 +94784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -92223,10 +94813,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [22399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2412), 1, + sym_identifier, + STATE(795), 2, + sym_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2416), 16, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + ACTIONS(2414), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, [22470] = 5, ACTIONS(3), 1, sym_comment, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -92234,7 +94889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1959), 17, + ACTIONS(1971), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92252,7 +94907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(1953), 33, + ACTIONS(1965), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92289,7 +94944,7 @@ static const uint16_t ts_small_parse_table[] = { [22538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2406), 17, + ACTIONS(2418), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92307,7 +94962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2408), 38, + ACTIONS(2420), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92349,7 +95004,7 @@ static const uint16_t ts_small_parse_table[] = { [22601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2410), 17, + ACTIONS(2422), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92367,7 +95022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2412), 38, + ACTIONS(2424), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92409,7 +95064,7 @@ static const uint16_t ts_small_parse_table[] = { [22664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 20, + ACTIONS(2426), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92430,7 +95085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2416), 34, + ACTIONS(2428), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92468,7 +95123,7 @@ static const uint16_t ts_small_parse_table[] = { [22726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 20, + ACTIONS(2430), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92489,7 +95144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2420), 34, + ACTIONS(2432), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92527,7 +95182,7 @@ static const uint16_t ts_small_parse_table[] = { [22788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 20, + ACTIONS(2434), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92548,7 +95203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2424), 34, + ACTIONS(2436), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92586,7 +95241,7 @@ static const uint16_t ts_small_parse_table[] = { [22850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 20, + ACTIONS(2438), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92607,7 +95262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2428), 34, + ACTIONS(2440), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92645,7 +95300,7 @@ static const uint16_t ts_small_parse_table[] = { [22912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 20, + ACTIONS(2442), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92666,7 +95321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2432), 34, + ACTIONS(2444), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92704,7 +95359,7 @@ static const uint16_t ts_small_parse_table[] = { [22974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 20, + ACTIONS(2446), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92725,7 +95380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2436), 34, + ACTIONS(2448), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92763,7 +95418,7 @@ static const uint16_t ts_small_parse_table[] = { [23036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 20, + ACTIONS(2450), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92784,7 +95439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2440), 34, + ACTIONS(2452), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92822,7 +95477,7 @@ static const uint16_t ts_small_parse_table[] = { [23098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 20, + ACTIONS(2454), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92843,7 +95498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2444), 34, + ACTIONS(2456), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92881,7 +95536,7 @@ static const uint16_t ts_small_parse_table[] = { [23160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 20, + ACTIONS(2458), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92902,7 +95557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2448), 34, + ACTIONS(2460), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92940,7 +95595,7 @@ static const uint16_t ts_small_parse_table[] = { [23222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 20, + ACTIONS(2462), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -92961,7 +95616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT, sym_identifier, - ACTIONS(2452), 34, + ACTIONS(2464), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -92999,7 +95654,7 @@ static const uint16_t ts_small_parse_table[] = { [23284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 21, + ACTIONS(1923), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93021,7 +95676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1913), 30, + ACTIONS(1921), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -93055,7 +95710,7 @@ static const uint16_t ts_small_parse_table[] = { [23343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 17, + ACTIONS(2466), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93073,7 +95728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2456), 34, + ACTIONS(2468), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93111,63 +95766,7 @@ static const uint16_t ts_small_parse_table[] = { [23402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2456), 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(2454), 30, - 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___try, - anon_sym___leave, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - [23461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1919), 21, + ACTIONS(2468), 21, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -93189,7 +95788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1917), 30, + ACTIONS(2466), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym_if, @@ -93220,12 +95819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_NULL, anon_sym_nullptr, sym_identifier, - [23520] = 6, + [23461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2458), 1, + ACTIONS(2470), 1, sym_identifier, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -93233,7 +95832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2462), 15, + ACTIONS(2474), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -93249,7 +95848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, anon_sym_DOT, - ACTIONS(2460), 29, + ACTIONS(2472), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93279,224 +95878,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [23585] = 20, + [23526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(553), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, + ACTIONS(1927), 21, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(447), 1, - sym_compound_statement, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - STATE(833), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23677] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(152), 1, - sym_compound_statement, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - STATE(833), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23769] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2464), 1, + 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(1925), 30, + 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___try, + anon_sym___leave, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + 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(2466), 1, - anon_sym_RPAREN, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1338), 1, - sym__declaration_specifiers, - STATE(1695), 1, - sym_variadic_parameter, - STATE(1753), 1, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [23863] = 20, + [23585] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93511,21 +95949,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(221), 1, + STATE(150), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93533,13 +95971,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93568,7 +96006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [23955] = 20, + [23677] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93583,21 +96021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(223), 1, + STATE(149), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(827), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93605,13 +96043,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93640,10 +96078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24047] = 3, + [23769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 17, + ACTIONS(2476), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -93661,7 +96099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2470), 33, + ACTIONS(2478), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -93695,159 +96133,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24105] = 20, + [23827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(2480), 17, + aux_sym_preproc_elif_token1, + 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__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + anon_sym_EQ, + anon_sym_DOT, sym_identifier, - ACTIONS(2083), 1, + ACTIONS(2482), 33, anon_sym_DOT_DOT_DOT, - ACTIONS(2085), 1, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1338), 1, - sym__declaration_specifiers, - STATE(1753), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24197] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - STATE(150), 1, - sym_compound_statement, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, - sym__declaration_specifiers, - STATE(833), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [24289] = 20, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [23885] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, + anon_sym___declspec, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -93856,19 +96203,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, + ACTIONS(551), 1, + anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(476), 1, + STATE(449), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(840), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -93876,13 +96225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93911,7 +96260,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24381] = 20, + [23977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2484), 17, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + sym_identifier, + ACTIONS(2486), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [24035] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93926,35 +96330,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(553), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(412), 1, - sym_compound_statement, - STATE(1072), 1, + ACTIONS(2095), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2097), 1, + anon_sym_RPAREN, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1389), 1, sym__declaration_specifiers, - STATE(833), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1848), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -93983,7 +96387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24473] = 20, + [24127] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -93998,21 +96402,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(160), 1, + STATE(434), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(794), 2, + STATE(845), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94020,13 +96424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94055,7 +96459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24565] = 20, + [24219] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94070,21 +96474,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(553), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(445), 1, + STATE(476), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(802), 2, + STATE(852), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94092,13 +96496,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94127,10 +96531,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24657] = 3, + [24311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2488), 17, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + sym_identifier, + ACTIONS(2490), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [24369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 17, + ACTIONS(2492), 17, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + sym_identifier, + ACTIONS(2494), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [24427] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94148,7 +96662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2474), 33, + ACTIONS(2498), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94182,7 +96696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24715] = 20, + [24485] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94197,21 +96711,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(551), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(429), 1, + STATE(438), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94219,13 +96733,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94254,10 +96768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24807] = 3, + [24577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 17, + ACTIONS(2500), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94275,7 +96789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2478), 33, + ACTIONS(2502), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94309,7 +96823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [24865] = 20, + [24635] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94328,17 +96842,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(227), 1, + STATE(217), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(796), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94346,13 +96860,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94381,10 +96895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [24957] = 3, + [24727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2480), 17, + ACTIONS(2504), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94402,7 +96916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2482), 33, + ACTIONS(2506), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94436,7 +96950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25015] = 20, + [24785] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94451,21 +96965,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(145), 1, + STATE(222), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(800), 2, + STATE(832), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94473,13 +96987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94508,10 +97022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25107] = 3, + [24877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 17, + ACTIONS(2508), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94529,7 +97043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2486), 33, + ACTIONS(2510), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94563,10 +97077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25165] = 3, + [24935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 17, + ACTIONS(2512), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94584,7 +97098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2490), 33, + ACTIONS(2514), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94618,10 +97132,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25223] = 3, + [24993] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 17, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + STATE(226), 1, + sym_compound_statement, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1516), 1, + sym__declaration_specifiers, + STATE(861), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25085] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + STATE(472), 1, + sym_compound_statement, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1516), 1, + sym__declaration_specifiers, + STATE(830), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 17, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + sym_identifier, + ACTIONS(2518), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [25235] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + STATE(475), 1, + sym_compound_statement, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1516), 1, + sym__declaration_specifiers, + STATE(861), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25327] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, + sym_identifier, + STATE(142), 1, + sym_compound_statement, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1516), 1, + sym__declaration_specifiers, + STATE(819), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2520), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94639,7 +97496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2494), 33, + ACTIONS(2522), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94673,10 +97530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25281] = 3, + [25477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 17, + ACTIONS(2524), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -94694,7 +97551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2498), 33, + ACTIONS(2526), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -94728,7 +97585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25339] = 20, + [25535] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94747,17 +97604,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(481), 1, + STATE(493), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(849), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94765,13 +97622,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94800,7 +97657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25431] = 20, + [25627] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94815,21 +97672,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(553), 1, + ACTIONS(499), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(435), 1, + STATE(474), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(793), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94837,13 +97694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94872,7 +97729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25523] = 20, + [25719] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -94887,21 +97744,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, + ACTIONS(129), 1, anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(386), 1, + STATE(157), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(825), 2, + STATE(818), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -94909,13 +97766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -94944,120 +97801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2500), 17, - aux_sym_preproc_elif_token1, - 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, - anon_sym_DOT, - sym_identifier, - ACTIONS(2502), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [25673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2504), 17, - aux_sym_preproc_elif_token1, - 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, - anon_sym_DOT, - sym_identifier, - ACTIONS(2506), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [25731] = 3, + [25811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2508), 17, + ACTIONS(2528), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95075,7 +97822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, sym_identifier, - ACTIONS(2510), 33, + ACTIONS(2530), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -95109,62 +97856,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DASH_GT, - [25789] = 3, + [25869] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2512), 17, - aux_sym_preproc_elif_token1, - 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(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2514), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [25847] = 20, + STATE(241), 1, + sym_compound_statement, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1516), 1, + sym__declaration_specifiers, + STATE(837), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [25961] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95183,17 +97947,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(464), 1, + STATE(506), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(815), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95201,13 +97965,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95236,117 +98000,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [25939] = 3, + [26053] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 17, - aux_sym_preproc_elif_token1, - 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(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, - sym_identifier, - ACTIONS(2518), 33, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2095), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(2532), 1, + sym_identifier, + ACTIONS(2534), 1, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [25997] = 3, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1389), 1, + sym__declaration_specifiers, + STATE(1758), 1, + sym_variadic_parameter, + STATE(1848), 1, + sym_parameter_declaration, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26147] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2520), 17, - aux_sym_preproc_elif_token1, - 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(33), 1, anon_sym___attribute__, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(51), 1, + anon_sym_enum, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(2522), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [26055] = 20, + STATE(491), 1, + sym_compound_statement, + STATE(1073), 1, + sym__type_specifier, + STATE(1118), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1516), 1, + sym__declaration_specifiers, + STATE(853), 2, + sym_declaration, + aux_sym__old_style_function_definition_repeat1, + ACTIONS(43), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + STATE(893), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [26239] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95365,17 +98164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(397), 1, + STATE(458), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95383,13 +98182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95418,68 +98217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2524), 17, - aux_sym_preproc_elif_token1, - 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, - anon_sym_DOT, - sym_identifier, - ACTIONS(2526), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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_DASH_GT, - [26205] = 20, + [26331] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, + ACTIONS(41), 1, + anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -95488,21 +98234,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(201), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(218), 1, + STATE(499), 1, sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, ACTIONS(43), 4, @@ -95510,13 +98254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95545,15 +98289,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26297] = 20, + [26423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2536), 17, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + sym_identifier, + ACTIONS(2538), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [26481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2540), 17, + aux_sym_preproc_elif_token1, + 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, + anon_sym_DOT, + sym_identifier, + ACTIONS(2542), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_DASH_GT, + [26539] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(41), 1, - anon_sym_LBRACE, ACTIONS(49), 1, sym_primitive_type, ACTIONS(51), 1, @@ -95564,31 +98416,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(470), 1, - sym_compound_statement, - STATE(1072), 1, + ACTIONS(2095), 1, + anon_sym_DOT_DOT_DOT, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1389), 1, sym__declaration_specifiers, - STATE(801), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1914), 2, + sym_variadic_parameter, + sym_parameter_declaration, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95617,7 +98469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26389] = 20, + [26628] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -95632,35 +98484,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(499), 1, - anon_sym_LBRACE, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2095), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2544), 1, sym_identifier, - STATE(399), 1, - sym_compound_statement, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1389), 1, sym__declaration_specifiers, - STATE(806), 2, - sym_declaration, - aux_sym__old_style_function_definition_repeat1, + STATE(1914), 1, + sym_parameter_declaration, + STATE(1972), 1, + sym_variadic_parameter, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95689,10 +98540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26481] = 3, + [26719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 17, + ACTIONS(2546), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95708,10 +98559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym_EQ, - anon_sym_DOT, sym_identifier, - ACTIONS(2530), 33, - anon_sym_DOT_DOT_DOT, + ACTIONS(2548), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95726,9 +98575,9 @@ 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_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -95743,32 +98592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DOT, anon_sym_DASH_GT, - [26539] = 7, + [26776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_EQ, - STATE(770), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2534), 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(1959), 14, + ACTIONS(2550), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95782,9 +98611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym_EQ, sym_identifier, - ACTIONS(1953), 18, + ACTIONS(2552), 33, anon_sym_COMMA, + anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -95796,25 +98628,42 @@ 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_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, - [26604] = 7, + [26833] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2536), 16, + ACTIONS(2554), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95831,7 +98680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2538), 28, + ACTIONS(2556), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -95858,50 +98707,48 @@ 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, - [26669] = 19, + [26900] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2546), 1, + ACTIONS(2566), 1, sym_identifier, - ACTIONS(2555), 1, + ACTIONS(2575), 1, anon_sym___attribute__, - ACTIONS(2558), 1, + ACTIONS(2578), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2561), 1, + ACTIONS(2581), 1, anon_sym___declspec, - ACTIONS(2564), 1, + ACTIONS(2584), 1, anon_sym_LBRACE, - ACTIONS(2569), 1, + ACTIONS(2589), 1, sym_primitive_type, - ACTIONS(2572), 1, + ACTIONS(2592), 1, anon_sym_enum, - ACTIONS(2575), 1, + ACTIONS(2595), 1, anon_sym_struct, - ACTIONS(2578), 1, + ACTIONS(2598), 1, anon_sym_union, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1492), 1, + STATE(1516), 1, sym__declaration_specifiers, - STATE(833), 2, + STATE(861), 2, sym_declaration, aux_sym__old_style_function_definition_repeat1, - ACTIONS(2566), 4, + ACTIONS(2586), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -95909,7 +98756,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(2549), 9, + ACTIONS(2569), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -95919,7 +98766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(2552), 10, + ACTIONS(2572), 10, anon_sym_extern, anon_sym_static, anon_sym_auto, @@ -95930,22 +98777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [26758] = 8, + [26989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2581), 16, + ACTIONS(2601), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -95962,13 +98797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2583), 26, + ACTIONS(2603), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -95976,7 +98812,9 @@ 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_RBRACE, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -95989,46 +98827,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [26825] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT, + anon_sym_DASH_GT, + [27046] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2587), 16, - aux_sym_preproc_elif_token1, - 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__, + ACTIONS(2605), 1, anon_sym_EQ, - sym_identifier, - ACTIONS(2589), 33, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, + STATE(799), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2607), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -96039,14 +98855,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, - [26882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2591), 16, + ACTIONS(1971), 14, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96060,12 +98869,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym_EQ, sym_identifier, - ACTIONS(2593), 33, + ACTIONS(1965), 18, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, @@ -96077,89 +98883,25 @@ 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_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, - [26939] = 8, + [27111] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2595), 16, - aux_sym_preproc_elif_token1, - 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, - sym_identifier, - ACTIONS(2597), 26, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - 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, - [27006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2599), 16, + ACTIONS(2609), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96176,14 +98918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2601), 33, + ACTIONS(2611), 28, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -96191,9 +98932,7 @@ 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_RBRACE, - anon_sym_LBRACK, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -96208,12 +98947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - [27063] = 3, + [27176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2603), 16, + ACTIONS(2613), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96230,7 +98967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2605), 33, + ACTIONS(2615), 33, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96264,10 +99001,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27120] = 5, + [27233] = 8, ACTIONS(3), 1, sym_comment, - STATE(770), 1, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2617), 16, + aux_sym_preproc_elif_token1, + 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, + sym_identifier, + ACTIONS(2619), 26, + anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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, + [27300] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -96275,7 +99071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2462), 15, + ACTIONS(2474), 15, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96291,7 +99087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2460), 28, + ACTIONS(2472), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96320,92 +99116,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27181] = 19, + [27361] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(2083), 1, - anon_sym_DOT_DOT_DOT, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1338), 1, - sym__declaration_specifiers, - STATE(1900), 2, - sym_variadic_parameter, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [27270] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2607), 16, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2621), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96422,7 +99148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2609), 26, + ACTIONS(2623), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96449,93 +99175,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [27337] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(51), 1, - anon_sym_enum, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2083), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2611), 1, - sym_identifier, - STATE(1072), 1, - sym__type_specifier, - STATE(1086), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1338), 1, - sym__declaration_specifiers, - STATE(1851), 1, - sym_variadic_parameter, - STATE(1900), 1, - sym_parameter_declaration, - ACTIONS(43), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - STATE(869), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, [27428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2613), 16, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96552,7 +99207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2615), 26, + ACTIONS(2627), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96582,19 +99237,19 @@ static const uint16_t ts_small_parse_table[] = { [27495] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 16, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2629), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -96611,7 +99266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_EQ, sym_identifier, - ACTIONS(2619), 26, + ACTIONS(2631), 26, anon_sym_COMMA, anon_sym_RPAREN, aux_sym_preproc_if_token2, @@ -96641,18 +99296,18 @@ static const uint16_t ts_small_parse_table[] = { [27562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2621), 1, + ACTIONS(2633), 1, sym_identifier, - STATE(846), 2, + STATE(874), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(2624), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2399), 13, + ACTIONS(2404), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96666,7 +99321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2397), 27, + ACTIONS(2402), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96697,18 +99352,18 @@ static const uint16_t ts_small_parse_table[] = { [27624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2627), 1, + ACTIONS(2635), 1, sym_identifier, - STATE(846), 2, + STATE(871), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2380), 13, + ACTIONS(2416), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96722,7 +99377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2378), 27, + ACTIONS(2414), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96753,9 +99408,9 @@ static const uint16_t ts_small_parse_table[] = { [27686] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -96763,7 +99418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -96774,7 +99429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96787,7 +99442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + ACTIONS(1965), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -96810,18 +99465,18 @@ static const uint16_t ts_small_parse_table[] = { [27750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2629), 1, + ACTIONS(2637), 1, sym_identifier, - STATE(847), 2, + STATE(874), 2, sym_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(1760), 5, + ACTIONS(2640), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2388), 13, + ACTIONS(2391), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96835,7 +99490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2386), 27, + ACTIONS(2389), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96863,72 +99518,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27812] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(850), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2635), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2631), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(2633), 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, - [27871] = 5, + [27812] = 7, ACTIONS(3), 1, sym_comment, - STATE(849), 1, + ACTIONS(2643), 1, + anon_sym_EQ, + STATE(872), 1, sym_string_literal, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1959), 14, + ACTIONS(2645), 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(1971), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96941,9 +99555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, sym_identifier, - ACTIONS(1953), 27, + ACTIONS(1965), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -96957,32 +99570,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27930] = 5, + [27875] = 5, ACTIONS(3), 1, sym_comment, - STATE(849), 1, + STATE(872), 1, sym_string_literal, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2462), 14, + ACTIONS(1971), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -96997,7 +99600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, sym_identifier, - ACTIONS(2460), 27, + ACTIONS(1965), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97025,31 +99628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [27989] = 7, + [27934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2638), 1, - anon_sym_EQ, - STATE(849), 1, + STATE(872), 1, sym_string_literal, - ACTIONS(1760), 5, + ACTIONS(1726), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2640), 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(1959), 13, + ACTIONS(2474), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97062,8 +99652,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, sym_identifier, - ACTIONS(1953), 17, + ACTIONS(2472), 27, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -97077,10 +99668,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, + [27993] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(878), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2651), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2647), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(2649), 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, [28052] = 17, ACTIONS(3), 1, sym_comment, @@ -97098,26 +99753,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1533), 1, + STATE(1542), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97163,26 +99818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1523), 1, + STATE(1539), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97211,7 +99866,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28216] = 17, + [28216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2422), 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_EQ, + sym_identifier, + ACTIONS(2424), 32, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_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, + [28270] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97228,26 +99934,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1505), 1, + STATE(1554), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97276,7 +99982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28298] = 17, + [28352] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97293,26 +99999,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1509), 1, + STATE(1559), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97341,57 +100047,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2406), 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_EQ, - sym_identifier, - ACTIONS(2408), 32, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_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, [28434] = 17, ACTIONS(3), 1, sym_comment, @@ -97409,26 +100064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1518), 1, + STATE(1537), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97457,58 +100112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2410), 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_EQ, - sym_identifier, - ACTIONS(2412), 32, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_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, - [28570] = 17, + [28516] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97525,26 +100129,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1521), 1, + STATE(1545), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97573,7 +100177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [28652] = 17, + [28598] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -97590,26 +100194,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1506), 1, + STATE(1536), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97638,6 +100242,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + [28680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2418), 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_EQ, + sym_identifier, + ACTIONS(2420), 32, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_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, [28734] = 17, ACTIONS(3), 1, sym_comment, @@ -97655,26 +100310,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1525), 1, + STATE(1553), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97720,26 +100375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1508), 1, + STATE(1541), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97785,26 +100440,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1072), 1, + STATE(1073), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1514), 1, + STATE(1555), 1, sym__declaration_specifiers, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(869), 7, + STATE(893), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -97836,11 +100491,11 @@ static const uint16_t ts_small_parse_table[] = { [28980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - ACTIONS(2642), 1, + ACTIONS(1989), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97848,7 +100503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97859,7 +100514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97872,7 +100527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -97881,7 +100536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, @@ -97891,11 +100546,11 @@ static const uint16_t ts_small_parse_table[] = { [29043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - ACTIONS(1974), 1, + ACTIONS(1995), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -97903,7 +100558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -97914,7 +100569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -97927,7 +100582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -97943,63 +100598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29106] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2654), 1, - anon_sym___attribute__, - ACTIONS(2657), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2660), 1, - anon_sym___declspec, - ACTIONS(2646), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(868), 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(2648), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2651), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - ACTIONS(2644), 11, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [29171] = 16, + [29106] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -98016,24 +100615,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - STATE(1054), 1, + STATE(1052), 1, sym__type_specifier, - STATE(1086), 1, + STATE(1118), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(43), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, sym_union_specifier, sym_macro_type_specifier, - STATE(868), 7, + STATE(897), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -98062,14 +100661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [29250] = 8, + [29185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - ACTIONS(1985), 1, + ACTIONS(1993), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98077,7 +100676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98088,7 +100687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98101,7 +100700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -98117,14 +100716,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29313] = 8, + [29248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(2656), 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(2654), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + [29301] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1983), 1, anon_sym_EQ, - ACTIONS(1976), 1, + ACTIONS(2658), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98132,7 +100781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98143,7 +100792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98156,7 +100805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -98165,39 +100814,37 @@ 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_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29376] = 3, + [29364] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 19, + ACTIONS(2670), 1, + anon_sym___attribute__, + ACTIONS(2673), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2676), 1, + anon_sym___declspec, + ACTIONS(2662), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, - anon_sym_RBRACK, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2663), 26, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_SEMI, + STATE(897), 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(2664), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -98207,29 +100854,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(2667), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(2660), 11, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, [29429] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, - anon_sym_EQ, ACTIONS(1983), 1, + anon_sym_EQ, + ACTIONS(1985), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98237,7 +100892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98248,7 +100903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98261,7 +100916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -98280,11 +100935,11 @@ static const uint16_t ts_small_parse_table[] = { [29492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - ACTIONS(1978), 1, + ACTIONS(1997), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98292,7 +100947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98303,7 +100958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98316,7 +100971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -98335,11 +100990,11 @@ static const uint16_t ts_small_parse_table[] = { [29555] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, + ACTIONS(1983), 1, anon_sym_EQ, - ACTIONS(1970), 1, + ACTIONS(1991), 1, anon_sym_COLON, - STATE(770), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -98347,7 +101002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(1972), 10, + ACTIONS(1987), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98358,7 +101013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 12, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -98371,7 +101026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 15, + ACTIONS(1965), 15, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -98387,54 +101042,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [29618] = 13, + [29618] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2687), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2689), 1, + anon_sym_AMP_AMP, + ACTIONS(2691), 1, + anon_sym_PIPE, + ACTIONS(2693), 1, + anon_sym_CARET, + ACTIONS(2695), 1, + anon_sym_AMP, + ACTIONS(2705), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2681), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2669), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 5, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2619), 21, + ACTIONS(2679), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98446,48 +101108,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29690] = 15, + [29704] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, + ACTIONS(2695), 1, anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 4, + ACTIONS(2625), 4, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(2619), 19, + ACTIONS(2627), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98507,223 +101169,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [29766] = 11, + [29780] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2669), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2617), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2619), 23, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(2687), 1, anon_sym_PIPE_PIPE, + ACTIONS(2689), 1, 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_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, - sym_identifier, - [29834] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2681), 1, - anon_sym_EQ, - STATE(770), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2683), 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(1959), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(2691), 1, anon_sym_PIPE, + ACTIONS(2693), 1, anon_sym_CARET, + ACTIONS(2695), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(1953), 14, - anon_sym_DOT_DOT_DOT, - 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, + ACTIONS(2705), 1, anon_sym_QMARK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT, - [29894] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_AMP, - ACTIONS(2685), 1, - anon_sym_PIPE, - ACTIONS(2687), 1, - anon_sym_CARET, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2667), 2, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2619), 19, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - 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, - sym_identifier, - [29974] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2669), 3, + ACTIONS(2709), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 11, - aux_sym_preproc_elif_token1, - 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(2619), 23, + ACTIONS(2707), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - 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_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98735,56 +101235,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30038] = 20, + [29866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_AMP, - ACTIONS(2685), 1, - anon_sym_PIPE, ACTIONS(2687), 1, - anon_sym_CARET, - ACTIONS(2693), 1, anon_sym_PIPE_PIPE, - ACTIONS(2695), 1, + ACTIONS(2689), 1, anon_sym_AMP_AMP, - ACTIONS(2697), 1, + ACTIONS(2691), 1, + anon_sym_PIPE, + ACTIONS(2693), 1, + anon_sym_CARET, + ACTIONS(2695), 1, + anon_sym_AMP, + ACTIONS(2705), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2691), 2, + ACTIONS(2713), 2, aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2669), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2689), 16, + ACTIONS(2711), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98801,49 +101301,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30124] = 16, + [29952] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_AMP, - ACTIONS(2687), 1, - anon_sym_CARET, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2685), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2625), 11, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2617), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2669), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2619), 19, + ACTIONS(2627), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -98851,6 +101340,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, 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_STAR_EQ, anon_sym_SLASH_EQ, @@ -98863,61 +101356,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30202] = 20, + [30016] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_AMP, - ACTIONS(2685), 1, + ACTIONS(2689), 1, + anon_sym_AMP_AMP, + ACTIONS(2691), 1, anon_sym_PIPE, - ACTIONS(2687), 1, - anon_sym_CARET, ACTIONS(2693), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_QMARK, - STATE(824), 1, + anon_sym_AMP, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2701), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2669), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2699), 16, + ACTIONS(2627), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98929,61 +101420,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30288] = 20, + [30098] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_AMP, - ACTIONS(2685), 1, - anon_sym_PIPE, - ACTIONS(2687), 1, - anon_sym_CARET, - ACTIONS(2693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - ACTIONS(2697), 1, - anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2685), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2625), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2675), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2705), 2, - aux_sym_preproc_elif_token1, anon_sym_EQ, - ACTIONS(2669), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2703), 16, + ACTIONS(2627), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + 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_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -98995,39 +101476,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30374] = 10, + [30164] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 1, + anon_sym_EQ, + STATE(799), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2717), 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(1971), 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_DOT, + ACTIONS(1965), 14, + anon_sym_DOT_DOT_DOT, + 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_DASH_GT, + [30224] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2669), 3, + ACTIONS(2703), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 9, + ACTIONS(2625), 7, aux_sym_preproc_elif_token1, 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(2619), 23, + ACTIONS(2627), 23, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99051,58 +101586,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30440] = 18, + [30292] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_AMP, - ACTIONS(2685), 1, - anon_sym_PIPE, - ACTIONS(2687), 1, - anon_sym_CARET, - ACTIONS(2695), 1, - anon_sym_AMP_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 18, + ACTIONS(2625), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2627), 21, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99115,47 +101645,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30522] = 14, + [30364] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2667), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2671), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2673), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2675), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2679), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2669), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 5, + ACTIONS(2625), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2619), 19, + ACTIONS(2627), 19, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -99175,61 +101705,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [30596] = 20, + [30438] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, - anon_sym_EQ, - ACTIONS(2711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2713), 1, - anon_sym_AMP_AMP, - ACTIONS(2715), 1, + ACTIONS(2691), 1, anon_sym_PIPE, - ACTIONS(2717), 1, + ACTIONS(2693), 1, anon_sym_CARET, - ACTIONS(2719), 1, + ACTIONS(2695), 1, anon_sym_AMP, - ACTIONS(2729), 1, - anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2697), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2701), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2703), 16, + ACTIONS(2627), 19, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99240,51 +101767,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30681] = 11, + sym_identifier, + [30518] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2693), 1, + anon_sym_CARET, + ACTIONS(2695), 1, + anon_sym_AMP, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2683), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2727), 2, + ACTIONS(2697), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2699), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2701), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2703), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2625), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2685), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_EQ, - ACTIONS(2619), 23, + ACTIONS(2627), 19, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, 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, @@ -99296,55 +101829,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30748] = 20, + sym_identifier, + [30596] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2681), 1, anon_sym_EQ, - ACTIONS(2711), 1, + ACTIONS(2723), 1, anon_sym_PIPE_PIPE, - ACTIONS(2713), 1, + ACTIONS(2725), 1, anon_sym_AMP_AMP, - ACTIONS(2715), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(2717), 1, + ACTIONS(2729), 1, anon_sym_CARET, - ACTIONS(2719), 1, + ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2729), 1, + ACTIONS(2741), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2699), 16, + ACTIONS(2679), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -99361,59 +101895,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30833] = 18, + [30681] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2617), 1, - anon_sym_EQ, ACTIONS(2713), 1, + anon_sym_EQ, + ACTIONS(2723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2725), 1, anon_sym_AMP_AMP, - ACTIONS(2715), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(2717), 1, + ACTIONS(2729), 1, anon_sym_CARET, - ACTIONS(2719), 1, + ACTIONS(2731), 1, anon_sym_AMP, - STATE(824), 1, + ACTIONS(2741), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 18, + ACTIONS(2711), 16, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -99424,10 +101960,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [30914] = 3, + [30766] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2603), 14, + ACTIONS(2605), 1, + anon_sym_EQ, + ACTIONS(2607), 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(1971), 13, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99440,14 +101990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2605), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 19, anon_sym_COMMA, 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, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99456,40 +102004,16 @@ static const uint16_t ts_small_parse_table[] = { 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, sym_identifier, - [30965] = 5, + [30821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2532), 1, - anon_sym_EQ, - ACTIONS(2534), 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(1959), 13, - aux_sym_preproc_elif_token1, + ACTIONS(2613), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -99502,12 +102026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2615), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99516,16 +102042,26 @@ static const uint16_t ts_small_parse_table[] = { 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, sym_identifier, - [31020] = 3, + [30872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2733), 9, + ACTIONS(2745), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -99535,7 +102071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_COLON, - ACTIONS(2731), 34, + ACTIONS(2743), 34, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -99570,63 +102106,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, sym_identifier, - [31071] = 3, + [30923] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2599), 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_EQ, - anon_sym_DOT, - ACTIONS(2601), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(2558), 1, 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, + ACTIONS(2560), 1, 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, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_identifier, - [31122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2591), 14, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2625), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -99635,22 +102137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_DOT, - ACTIONS(2593), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2627), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99662,42 +102161,39 @@ 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_DASH_GT, - sym_identifier, - [31173] = 10, + [30988] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2709), 3, + ACTIONS(2739), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 8, + ACTIONS(2625), 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(2619), 23, + ACTIONS(2627), 23, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -99721,45 +102217,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31238] = 9, + [31055] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2709), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2617), 10, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2737), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2721), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(2619), 23, + ACTIONS(2627), 21, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, @@ -99775,39 +102275,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31301] = 3, + [31126] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2587), 14, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2733), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2735), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2737), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2739), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2625), 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, - anon_sym_DOT, - ACTIONS(2589), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(2627), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + 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_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -99819,53 +102334,47 @@ 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_DASH_GT, - sym_identifier, - [31352] = 17, + [31199] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2617), 1, - anon_sym_EQ, - ACTIONS(2715), 1, - anon_sym_PIPE, - ACTIONS(2717), 1, - anon_sym_CARET, - ACTIONS(2719), 1, + ACTIONS(2731), 1, anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2625), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 19, + ACTIONS(2627), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -99885,48 +102394,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31431] = 16, + [31274] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2717), 1, + ACTIONS(2729), 1, anon_sym_CARET, - ACTIONS(2719), 1, + ACTIONS(2731), 1, anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, anon_sym_PIPE, anon_sym_EQ, - ACTIONS(2707), 2, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 19, + ACTIONS(2627), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -99946,47 +102455,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31508] = 15, + [31351] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2719), 1, + ACTIONS(2625), 1, + anon_sym_EQ, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, + anon_sym_CARET, + ACTIONS(2731), 1, anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2617), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2709), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 19, + ACTIONS(2627), 19, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -100006,55 +102517,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31583] = 14, + [31430] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(824), 1, + ACTIONS(2709), 1, + anon_sym_EQ, + ACTIONS(2723), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2725), 1, + anon_sym_AMP_AMP, + ACTIONS(2727), 1, + anon_sym_PIPE, + ACTIONS(2729), 1, + anon_sym_CARET, + ACTIONS(2731), 1, + anon_sym_AMP, + ACTIONS(2741), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(2619), 19, + ACTIONS(2707), 16, 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, @@ -100065,53 +102582,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31656] = 13, + [31515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2601), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2723), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2725), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2727), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2709), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 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(2619), 21, + anon_sym_DOT, + ACTIONS(2603), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100123,61 +102626,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31727] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_GT, + sym_identifier, + [31566] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2625), 1, anon_sym_EQ, - ACTIONS(2711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2713), 1, + ACTIONS(2725), 1, anon_sym_AMP_AMP, - ACTIONS(2715), 1, + ACTIONS(2727), 1, anon_sym_PIPE, - ACTIONS(2717), 1, + ACTIONS(2729), 1, anon_sym_CARET, - ACTIONS(2719), 1, + ACTIONS(2731), 1, anon_sym_AMP, - ACTIONS(2729), 1, - anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2707), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2719), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2721), 2, + ACTIONS(2733), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2723), 2, + ACTIONS(2735), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2725), 2, + ACTIONS(2737), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2727), 2, + ACTIONS(2739), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2709), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2689), 16, + ACTIONS(2627), 18, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100188,23 +102693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31812] = 5, + [31647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 1, - anon_sym_EQ, - ACTIONS(1972), 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(1959), 12, + ACTIONS(2550), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100217,9 +102709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 19, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(2552), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -100227,69 +102724,57 @@ 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___attribute__, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_COLON, + 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, - [31866] = 20, + sym_identifier, + [31698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2701), 1, - anon_sym_EQ, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2741), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, - anon_sym_AMP_AMP, - ACTIONS(2745), 1, + ACTIONS(2546), 14, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(2747), 1, anon_sym_CARET, - ACTIONS(2749), 1, anon_sym_AMP, - ACTIONS(2759), 1, - anon_sym_LBRACK, - ACTIONS(2761), 1, - anon_sym_QMARK, - STATE(965), 1, - sym_argument_list, - ACTIONS(2737), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2753), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2755), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + anon_sym_EQ, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2699), 15, + ACTIONS(2548), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + 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, @@ -100300,54 +102785,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_DASH_GT, sym_identifier, - [31950] = 15, + [31749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2759), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2737), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2753), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2755), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2757), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2763), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2617), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2739), 3, + ACTIONS(2721), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 18, + ACTIONS(2625), 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(2627), 23, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + 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, @@ -100359,23 +102843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - sym_identifier, - [32024] = 8, + [31812] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2617), 13, + ACTIONS(2609), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100389,7 +102869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2619), 22, + ACTIONS(2611), 24, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100411,23 +102891,25 @@ 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, sym_identifier, - [32084] = 8, + [31870] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2595), 13, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2617), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100441,7 +102923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2597), 22, + ACTIONS(2619), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100464,22 +102946,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32144] = 8, + [31930] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2713), 1, + anon_sym_EQ, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + ACTIONS(2759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2761), 1, + anon_sym_AMP_AMP, + ACTIONS(2763), 1, + anon_sym_PIPE, + ACTIONS(2765), 1, + anon_sym_CARET, + ACTIONS(2767), 1, + anon_sym_AMP, + ACTIONS(2777), 1, + anon_sym_QMARK, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2771), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2773), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2757), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2711), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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, + sym_identifier, + [32014] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2749), 1, + anon_sym_LBRACK, + STATE(980), 1, + sym_argument_list, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2607), 13, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2625), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -100493,7 +103039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2609), 22, + ACTIONS(2627), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100516,27 +103062,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32204] = 8, + [32074] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2613), 13, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(2625), 10, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -100545,7 +103092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2615), 22, + ACTIONS(2627), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100568,59 +103115,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32264] = 20, + [32136] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2705), 1, + ACTIONS(2625), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2741), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, + ACTIONS(2749), 1, + anon_sym_LBRACK, + ACTIONS(2761), 1, anon_sym_AMP_AMP, - ACTIONS(2745), 1, + ACTIONS(2763), 1, anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2765), 1, anon_sym_CARET, - ACTIONS(2749), 1, + ACTIONS(2767), 1, anon_sym_AMP, - ACTIONS(2759), 1, - anon_sym_LBRACK, - ACTIONS(2761), 1, - anon_sym_QMARK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2751), 2, + ACTIONS(2769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2753), 2, + ACTIONS(2771), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2755), 2, + ACTIONS(2773), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2703), 15, + ACTIONS(2627), 17, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100632,46 +103177,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32348] = 8, + [32216] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2625), 1, + anon_sym_EQ, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + ACTIONS(2763), 1, + anon_sym_PIPE, + ACTIONS(2765), 1, + anon_sym_CARET, + ACTIONS(2767), 1, + anon_sym_AMP, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2581), 13, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(2769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2771), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2773), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(2627), 18, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + sym_identifier, + [32294] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2749), 1, + anon_sym_LBRACK, + ACTIONS(2765), 1, anon_sym_CARET, + ACTIONS(2767), 1, anon_sym_AMP, + STATE(980), 1, + sym_argument_list, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2771), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2773), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2583), 22, + ACTIONS(2757), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2627), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, 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_STAR_EQ, anon_sym_SLASH_EQ, @@ -100684,59 +103298,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32408] = 20, + [32370] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, - anon_sym_EQ, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2741), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2743), 1, - anon_sym_AMP_AMP, - ACTIONS(2745), 1, - anon_sym_PIPE, ACTIONS(2747), 1, - anon_sym_CARET, + anon_sym_LPAREN2, ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2759), 1, anon_sym_LBRACK, - ACTIONS(2761), 1, - anon_sym_QMARK, - STATE(965), 1, + ACTIONS(2767), 1, + anon_sym_AMP, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2751), 2, + ACTIONS(2769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2753), 2, + ACTIONS(2771), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2755), 2, + ACTIONS(2773), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2625), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2689), 15, + ACTIONS(2627), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -100748,51 +103357,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32492] = 13, + [32444] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2753), 2, + ACTIONS(2769), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2771), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2755), 2, + ACTIONS(2773), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 4, + ACTIONS(2625), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2619), 20, + ACTIONS(2627), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -100805,39 +103415,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32562] = 11, + [32516] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2757), 2, + ACTIONS(2771), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2773), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 6, + ACTIONS(2625), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, anon_sym_EQ, - ACTIONS(2619), 22, + ACTIONS(2627), 20, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100846,8 +103460,6 @@ static const uint16_t ts_small_parse_table[] = { 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_STAR_EQ, anon_sym_SLASH_EQ, @@ -100860,38 +103472,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32628] = 10, + [32586] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2775), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 8, + ACTIONS(2625), 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(2619), 22, + ACTIONS(2627), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100914,28 +103527,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32692] = 9, + [32652] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(2625), 8, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -100944,7 +103558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2619), 22, + ACTIONS(2627), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -100967,57 +103581,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32754] = 18, + [32716] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2709), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2743), 1, + ACTIONS(2749), 1, + anon_sym_LBRACK, + ACTIONS(2759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2761), 1, anon_sym_AMP_AMP, - ACTIONS(2745), 1, + ACTIONS(2763), 1, anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2765), 1, anon_sym_CARET, - ACTIONS(2749), 1, + ACTIONS(2767), 1, anon_sym_AMP, - ACTIONS(2759), 1, - anon_sym_LBRACK, - STATE(965), 1, + ACTIONS(2777), 1, + anon_sym_QMARK, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2751), 2, + ACTIONS(2769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2753), 2, + ACTIONS(2771), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2755), 2, + ACTIONS(2773), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 17, + ACTIONS(2707), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101029,56 +103645,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32834] = 17, + [32800] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2681), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2745), 1, + ACTIONS(2749), 1, + anon_sym_LBRACK, + ACTIONS(2759), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2761), 1, + anon_sym_AMP_AMP, + ACTIONS(2763), 1, anon_sym_PIPE, - ACTIONS(2747), 1, + ACTIONS(2765), 1, anon_sym_CARET, - ACTIONS(2749), 1, + ACTIONS(2767), 1, anon_sym_AMP, - ACTIONS(2759), 1, - anon_sym_LBRACK, - STATE(965), 1, + ACTIONS(2777), 1, + anon_sym_QMARK, + STATE(980), 1, sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2755), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2751), 2, + ACTIONS(2769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2753), 2, + ACTIONS(2771), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2755), 2, + ACTIONS(2773), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(2757), 2, + ACTIONS(2775), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2739), 3, + ACTIONS(2757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 18, + ACTIONS(2679), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -101090,52 +103709,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32912] = 14, + [32884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2759), 1, - anon_sym_LBRACK, - STATE(965), 1, - sym_argument_list, - ACTIONS(2737), 2, + ACTIONS(1983), 1, + anon_sym_EQ, + ACTIONS(1987), 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(1971), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2753), 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(2755), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2757), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2763), 2, + ACTIONS(1965), 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, - ACTIONS(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 3, + [32938] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2749), 1, + anon_sym_LBRACK, + STATE(980), 1, + sym_argument_list, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2629), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 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(2619), 18, + ACTIONS(2631), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, 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_STAR_EQ, anon_sym_SLASH_EQ, @@ -101148,19 +103810,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, sym_identifier, - [32984] = 7, + [32998] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2536), 13, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2621), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101174,7 +103839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2538), 24, + ACTIONS(2623), 22, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101196,57 +103861,135 @@ 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, sym_identifier, - [33042] = 16, + [33058] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, - anon_sym_LPAREN2, ACTIONS(2747), 1, - anon_sym_CARET, + anon_sym_LPAREN2, ACTIONS(2749), 1, - anon_sym_AMP, - ACTIONS(2759), 1, anon_sym_LBRACK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2617), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2737), 2, - anon_sym_DASH, - anon_sym_PLUS, ACTIONS(2751), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2554), 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, - ACTIONS(2755), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(2556), 22, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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(2757), 2, + 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, + sym_identifier, + [33118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2480), 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(2763), 2, + anon_sym_EQ, + ACTIONS(2482), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_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(2765), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2739), 3, + sym_identifier, + [33167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2458), 13, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 18, + 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(2460), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -101258,13 +104001,17 @@ 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, sym_identifier, - [33118] = 3, + [33216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 40, + ACTIONS(2779), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101305,12 +104052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33167] = 3, + [33265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2785), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 40, + ACTIONS(2783), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101351,10 +104098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33216] = 3, + [33314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2496), 13, + ACTIONS(2520), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101368,7 +104115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2498), 28, + ACTIONS(2522), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101397,7 +104144,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33265] = 3, + [33363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2450), 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(2452), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_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, + sym_identifier, + [33412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2426), 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(2428), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_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, + sym_identifier, + [33461] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2512), 13, @@ -101443,12 +104282,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33314] = 3, + [33510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2484), 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(2486), 28, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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_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, + sym_identifier, + [33559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1448), 40, + ACTIONS(2787), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101489,12 +104374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33363] = 3, + [33608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2793), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2775), 40, + ACTIONS(2791), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101535,12 +104420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33412] = 3, + [33657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 40, + ACTIONS(2795), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101581,56 +104466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2468), 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(2470), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_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, - sym_identifier, - [33510] = 3, + [33706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2528), 13, + ACTIONS(2442), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101644,7 +104483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2530), 28, + ACTIONS(2444), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101673,10 +104512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33559] = 3, + [33755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2454), 13, + ACTIONS(2438), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101690,7 +104529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2456), 28, + ACTIONS(2440), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101719,10 +104558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33608] = 3, + [33804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(2540), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101736,7 +104575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2444), 28, + ACTIONS(2542), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101765,12 +104604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33657] = 3, + [33853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 1, + ACTIONS(2801), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1500), 40, + ACTIONS(2799), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -101811,10 +104650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [33706] = 3, + [33902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2414), 13, + ACTIONS(2536), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101828,7 +104667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2416), 28, + ACTIONS(2538), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101857,69 +104696,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33755] = 3, + [33951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [33804] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2638), 1, - anon_sym_EQ, - ACTIONS(2640), 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(1959), 12, + ACTIONS(2454), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101932,7 +104712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1953), 18, + anon_sym_EQ, + ACTIONS(2456), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101946,15 +104727,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33857] = 3, + [34000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(2462), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -101968,7 +104759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2436), 28, + ACTIONS(2464), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -101997,10 +104788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33906] = 3, + [34049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2524), 13, + ACTIONS(2500), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102014,7 +104805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2526), 28, + ACTIONS(2502), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102043,10 +104834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [33955] = 3, + [34098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2430), 13, + ACTIONS(2446), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102060,7 +104851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2432), 28, + ACTIONS(2448), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102089,10 +104880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34004] = 3, + [34147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2446), 13, + ACTIONS(2528), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102106,7 +104897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2448), 28, + ACTIONS(2530), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102135,10 +104926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34053] = 3, + [34196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2504), 13, + ACTIONS(2466), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102152,7 +104943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2506), 28, + ACTIONS(2468), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102181,12 +104972,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34102] = 3, + [34245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 40, + ACTIONS(2803), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1430), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34343] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1464), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1462), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1416), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1414), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102227,10 +105156,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34151] = 3, + [34441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2472), 13, + ACTIONS(1484), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1482), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2492), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102244,7 +105219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2474), 28, + ACTIONS(2494), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102273,10 +105248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34200] = 3, + [34539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2484), 13, + ACTIONS(2496), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102290,7 +105265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2486), 28, + ACTIONS(2498), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102319,10 +105294,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34249] = 3, + [34588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2500), 13, + ACTIONS(1498), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1496), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1474), 40, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [34686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2516), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102336,7 +105403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2502), 28, + ACTIONS(2518), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102365,10 +105432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34298] = 3, + [34735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 13, + ACTIONS(2488), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102382,7 +105449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2440), 28, + ACTIONS(2490), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102411,10 +105478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34347] = 3, + [34784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2418), 13, + ACTIONS(2476), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102428,7 +105495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2420), 28, + ACTIONS(2478), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102457,104 +105524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2789), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34445] = 3, + [34833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, + ACTIONS(2809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 40, + ACTIONS(2807), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102595,10 +105570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34543] = 3, + [34882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2488), 13, + ACTIONS(2504), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102612,7 +105587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2490), 28, + ACTIONS(2506), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102641,10 +105616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34592] = 3, + [34931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2492), 13, + ACTIONS(2434), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102658,7 +105633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2494), 28, + ACTIONS(2436), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102687,10 +105662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34641] = 3, + [34980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2426), 13, + ACTIONS(2430), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102704,7 +105679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2428), 28, + ACTIONS(2432), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102733,10 +105708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34690] = 3, + [35029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 13, + ACTIONS(2524), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -102750,7 +105725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2424), 28, + ACTIONS(2526), 28, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -102779,7 +105754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34739] = 3, + [35078] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2508), 13, @@ -102825,58 +105800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [34788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 40, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [34837] = 3, + [35127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2803), 40, + ACTIONS(2811), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102917,12 +105846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34886] = 3, + [35176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 1, + ACTIONS(2817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 40, + ACTIONS(2815), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -102963,12 +105892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34935] = 3, + [35225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(2821), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2811), 40, + ACTIONS(2819), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103009,37 +105938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [34984] = 3, + [35274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2516), 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(2643), 1, anon_sym_EQ, - ACTIONS(2518), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_QMARK, + ACTIONS(2645), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -103050,15 +105954,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, - sym_identifier, - [35033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2520), 13, + ACTIONS(1971), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103071,8 +105967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2522), 28, + ACTIONS(1965), 18, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -103086,73 +105981,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, sym_identifier, - [35082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2480), 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(2482), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - 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_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, - sym_identifier, - [35131] = 3, + [35327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(2825), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 40, + ACTIONS(2823), 40, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103193,10 +106032,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35180] = 3, + [35376] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2476), 13, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_DOT, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(2827), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2837), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2839), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2841), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2829), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2627), 15, + anon_sym_DOT_DOT_DOT, + 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, + [35451] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2554), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -103210,19 +106120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2478), 28, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - anon_sym_LPAREN2, + ACTIONS(2556), 19, + anon_sym_DOT_DOT_DOT, 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, @@ -103234,17 +106140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - [35229] = 3, + [35510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(2825), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1492), 40, + ACTIONS(2823), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103252,8 +106153,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___extension__, anon_sym_extern, @@ -103285,12 +106184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35278] = 3, + [35557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2821), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 40, + ACTIONS(2819), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103298,8 +106197,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___extension__, anon_sym_extern, @@ -103331,81 +106228,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35327] = 3, + [35604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2450), 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(2452), 28, - anon_sym_COMMA, + ACTIONS(1464), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1462), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - 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_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, - sym_identifier, - [35376] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2819), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_field_declaration_list, - STATE(1080), 1, - sym_attribute_specifier, - ACTIONS(2817), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2815), 28, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103424,13 +106268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [35431] = 3, + [35651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(2817), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1492), 38, + ACTIONS(2815), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103469,12 +106316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35478] = 3, + [35698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(2813), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 38, + ACTIONS(2811), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103513,12 +106360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35525] = 3, + [35745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 38, + ACTIONS(2807), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103557,12 +106404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35572] = 3, + [35792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1448), 38, + ACTIONS(2803), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -103601,28 +106448,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35619] = 3, + [35839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2849), 1, + anon_sym_LBRACE, + STATE(1074), 1, + sym_field_declaration_list, + STATE(1114), 1, + sym_attribute_specifier, + ACTIONS(2847), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2845), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103641,32 +106495,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [35666] = 3, + [35894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 1, + ACTIONS(2656), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1500), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2654), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103689,188 +106540,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35713] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2691), 1, - anon_sym_EQ, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2827), 1, - anon_sym_AMP_AMP, - ACTIONS(2829), 1, - anon_sym_PIPE, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2843), 1, - anon_sym_QMARK, - ACTIONS(2845), 1, - anon_sym_DOT, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2689), 12, - anon_sym_DOT_DOT_DOT, - 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, - [35796] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2613), 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(2615), 19, - anon_sym_DOT_DOT_DOT, - 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, - [35855] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2607), 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(2609), 19, - anon_sym_DOT_DOT_DOT, - 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, - [35914] = 6, + [35941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2851), 1, - anon_sym___attribute__, - ACTIONS(2854), 2, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2857), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2849), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2847), 29, + ACTIONS(2779), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -103898,35 +106584,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [35967] = 7, + [35988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2819), 1, - anon_sym_LBRACE, - STATE(1068), 1, - sym_field_declaration_list, - STATE(1094), 1, - sym_attribute_specifier, - ACTIONS(2861), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2859), 28, + ACTIONS(1430), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -103945,245 +106624,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36022] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2581), 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(2583), 19, - anon_sym_DOT_DOT_DOT, - 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, - [36081] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - STATE(824), 1, - sym_argument_list, - ACTIONS(2536), 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(2538), 21, - anon_sym_DOT_DOT_DOT, - 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, - [36138] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2617), 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(2619), 19, - anon_sym_DOT_DOT_DOT, - 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, - [36197] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_LPAREN2, - ACTIONS(2089), 1, - anon_sym_STAR, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(2871), 1, - anon_sym_LBRACK, - STATE(1316), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1483), 1, - sym__declarator, - STATE(1637), 1, - sym__abstract_declarator, - STATE(1644), 1, - sym_parameter_list, - STATE(1941), 1, - sym_ms_based_modifier, - ACTIONS(2865), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(2869), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1180), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1185), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2867), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(1645), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [36276] = 7, + [36035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2819), 1, - anon_sym_LBRACE, - STATE(1029), 1, - sym_field_declaration_list, - STATE(1088), 1, - sym_attribute_specifier, - ACTIONS(2875), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2785), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2873), 28, + ACTIONS(2783), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104202,13 +106668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36331] = 3, + [36082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 38, + ACTIONS(2787), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -104247,35 +106716,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36378] = 7, + [36129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(2819), 1, - anon_sym_LBRACE, - STATE(1041), 1, - sym_field_declaration_list, - STATE(1107), 1, - sym_attribute_specifier, - ACTIONS(2879), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2793), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2877), 28, + ACTIONS(2791), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104294,24 +106756,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [36433] = 9, + [36176] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2595), 13, + ACTIONS(2621), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -104325,7 +106790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2597), 19, + ACTIONS(2623), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104345,59 +106810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36492] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2885), 1, - anon_sym___attribute__, - ACTIONS(2888), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2891), 3, - anon_sym_LBRACK, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(2883), 4, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_EQ, - ACTIONS(2881), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [36545] = 3, + [36235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 38, + ACTIONS(2795), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -104436,12 +106854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36592] = 3, + [36282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2801), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2775), 38, + ACTIONS(2799), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -104480,28 +106898,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36639] = 3, + [36329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 7, + ACTIONS(2851), 2, + anon_sym___attribute__, + sym_identifier, + ACTIONS(2858), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(2861), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2854), 4, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2663), 32, + anon_sym_EQ, + ACTIONS(2856), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104523,29 +106945,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [36686] = 3, + [36382] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2625), 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(2627), 19, + anon_sym_DOT_DOT_DOT, + 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, + [36441] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2849), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_field_declaration_list, + STATE(1138), 1, + sym_attribute_specifier, + ACTIONS(2865), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2863), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104564,41 +107042,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36733] = 21, + [36496] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2705), 1, + ACTIONS(2713), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2827), 1, - anon_sym_AMP_AMP, - ACTIONS(2829), 1, - anon_sym_PIPE, ACTIONS(2831), 1, anon_sym_CARET, ACTIONS(2833), 1, anon_sym_AMP, ACTIONS(2843), 1, - anon_sym_QMARK, - ACTIONS(2845), 1, anon_sym_DOT, - STATE(824), 1, + ACTIONS(2867), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2869), 1, + anon_sym_AMP_AMP, + ACTIONS(2871), 1, + anon_sym_PIPE, + ACTIONS(2873), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2835), 2, @@ -104613,11 +107088,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2703), 12, + ACTIONS(2711), 12, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -104630,58 +107105,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36816] = 21, + [36579] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2701), 1, - anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2825), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2827), 1, - anon_sym_AMP_AMP, - ACTIONS(2829), 1, - anon_sym_PIPE, - ACTIONS(2831), 1, - anon_sym_CARET, - ACTIONS(2833), 1, - anon_sym_AMP, ACTIONS(2843), 1, - anon_sym_QMARK, - ACTIONS(2845), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2617), 13, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2837), 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(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2699), 12, + anon_sym_EQ, + ACTIONS(2619), 19, anon_sym_DOT_DOT_DOT, + 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, @@ -104692,28 +107155,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [36899] = 3, + [36638] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2849), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_field_declaration_list, + STATE(1123), 1, + sym_attribute_specifier, + ACTIONS(2877), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2811), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2875), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -104732,16 +107202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [36946] = 3, + [36693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 1, + ACTIONS(1416), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 38, + ACTIONS(1414), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -104780,37 +107247,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [36993] = 3, + [36740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2803), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2101), 1, + anon_sym_STAR, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(1356), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1533), 1, + sym__declarator, + STATE(1671), 1, + sym__abstract_declarator, + STATE(1705), 1, + sym_parameter_list, + STATE(2088), 1, + sym_ms_based_modifier, + ACTIONS(2881), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(2885), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1205), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1225), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2883), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(1703), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -104819,72 +107307,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [37040] = 3, + [36819] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, - anon_sym___extension__, - anon_sym_extern, + ACTIONS(2889), 2, anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [37087] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2797), 1, + ACTIONS(2896), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2899), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(2892), 4, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_EQ, + ACTIONS(2894), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym_signed, anon_sym_unsigned, @@ -104911,19 +107354,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_struct, anon_sym_union, - sym_identifier, - [37134] = 7, + [36872] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2629), 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(2631), 19, + anon_sym_DOT_DOT_DOT, + 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, + [36931] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + STATE(829), 1, + sym_argument_list, + ACTIONS(2609), 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(2611), 21, + anon_sym_DOT_DOT_DOT, + 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, + [36988] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2819), 1, + ACTIONS(2849), 1, anon_sym_LBRACE, - STATE(1048), 1, + STATE(1102), 1, sym_field_declaration_list, - STATE(1114), 1, + STATE(1110), 1, sym_attribute_specifier, - ACTIONS(2895), 7, + ACTIONS(2903), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -104931,7 +107472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2893), 28, + ACTIONS(2901), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -104960,28 +107501,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [37189] = 3, + [37043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, + ACTIONS(2907), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 38, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - sym_preproc_directive, + anon_sym_LBRACE, + ACTIONS(2905), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105004,12 +107545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37236] = 3, + [37090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 1, + ACTIONS(1476), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 38, + ACTIONS(1474), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105048,28 +107589,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37283] = 3, + [37137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2899), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1498), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2897), 32, + ACTIONS(1496), 38, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105092,12 +107633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37330] = 3, + [37184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 1, + ACTIONS(1484), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2783), 38, + ACTIONS(1482), 38, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -105136,48 +107677,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [37377] = 11, + [37231] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2681), 1, + anon_sym_EQ, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + ACTIONS(2867), 1, + anon_sym_PIPE_PIPE, + ACTIONS(2869), 1, + anon_sym_AMP_AMP, + ACTIONS(2871), 1, + anon_sym_PIPE, + ACTIONS(2873), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2823), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(2617), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(2835), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(2839), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(2619), 19, + ACTIONS(2829), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2679), 12, anon_sym_DOT_DOT_DOT, + 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, + [37314] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2709), 1, + anon_sym_EQ, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2831), 1, + anon_sym_CARET, + ACTIONS(2833), 1, + anon_sym_AMP, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(2867), 1, anon_sym_PIPE_PIPE, + ACTIONS(2869), 1, anon_sym_AMP_AMP, + ACTIONS(2871), 1, + anon_sym_PIPE, + ACTIONS(2873), 1, + anon_sym_QMARK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2827), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(2835), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(2837), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2839), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(2841), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2829), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2707), 12, + anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -105188,40 +107801,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37440] = 12, + [37397] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2841), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 6, + ACTIONS(2625), 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(2619), 19, + ACTIONS(2627), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105241,49 +107853,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37505] = 14, + [37460] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2837), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2839), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 4, + ACTIONS(2625), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, anon_sym_EQ, - ACTIONS(2619), 17, + ACTIONS(2627), 19, anon_sym_DOT_DOT_DOT, 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, @@ -105296,28 +107906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37574] = 15, + [37525] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2835), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, ACTIONS(2837), 2, anon_sym_GT, anon_sym_LT, @@ -105327,19 +107934,21 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 4, + ACTIONS(2625), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(2619), 15, + ACTIONS(2627), 17, anon_sym_DOT_DOT_DOT, 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, @@ -105352,25 +107961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37645] = 16, + [37594] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2833), 1, - anon_sym_AMP, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2835), 2, @@ -105385,15 +107992,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2617), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 15, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(2627), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105409,30 +108017,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37718] = 17, + [37665] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2831), 1, - anon_sym_CARET, ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2835), 2, @@ -105447,11 +108050,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2625), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 15, + ACTIONS(2627), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105467,31 +108074,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37793] = 18, + [37738] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2617), 1, + ACTIONS(2625), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2829), 1, - anon_sym_PIPE, ACTIONS(2831), 1, anon_sym_CARET, ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + ACTIONS(2871), 1, + anon_sym_PIPE, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2835), 2, @@ -105506,11 +108113,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 15, + ACTIONS(2627), 15, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105526,33 +108133,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [37870] = 19, + [37815] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2617), 1, + ACTIONS(2625), 1, anon_sym_EQ, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2827), 1, - anon_sym_AMP_AMP, - ACTIONS(2829), 1, - anon_sym_PIPE, ACTIONS(2831), 1, anon_sym_CARET, ACTIONS(2833), 1, anon_sym_AMP, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + ACTIONS(2869), 1, + anon_sym_AMP_AMP, + ACTIONS(2871), 1, + anon_sym_PIPE, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2821), 2, + ACTIONS(2827), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(2835), 2, @@ -105567,11 +108174,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2841), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2619), 14, + ACTIONS(2627), 14, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -105586,27 +108193,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [37894] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2849), 1, + anon_sym_LBRACE, + STATE(1076), 1, + sym_field_declaration_list, + STATE(1135), 1, + sym_attribute_specifier, + ACTIONS(2911), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2909), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, [37949] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2823), 3, + ACTIONS(2829), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(2617), 10, + ACTIONS(2625), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -105617,7 +108272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(2619), 19, + ACTIONS(2627), 19, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105640,24 +108295,24 @@ static const uint16_t ts_small_parse_table[] = { [38010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2420), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2901), 32, + anon_sym_LBRACE, + ACTIONS(2418), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105683,24 +108338,24 @@ static const uint16_t ts_small_parse_table[] = { [38056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2412), 2, + ACTIONS(1927), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2410), 36, + ACTIONS(1925), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105726,24 +108381,24 @@ static const uint16_t ts_small_parse_table[] = { [38102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(2424), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1913), 32, + anon_sym_LBRACE, + ACTIONS(2422), 36, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105769,9 +108424,9 @@ static const uint16_t ts_small_parse_table[] = { [38148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2681), 1, + ACTIONS(2715), 1, anon_sym_EQ, - ACTIONS(2683), 10, + ACTIONS(2717), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -105782,7 +108437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - ACTIONS(1959), 13, + ACTIONS(1971), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -105796,7 +108451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(1953), 14, + ACTIONS(1965), 14, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -105814,24 +108469,24 @@ static const uint16_t ts_small_parse_table[] = { [38198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2408), 2, + ACTIONS(2915), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2406), 36, + ACTIONS(2913), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -105857,14 +108512,14 @@ static const uint16_t ts_small_parse_table[] = { [38244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 6, + ACTIONS(1923), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(1917), 32, + ACTIONS(1921), 32, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -105902,9 +108557,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1081), 1, + STATE(1134), 1, sym_attribute_specifier, - ACTIONS(2907), 7, + ACTIONS(2919), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -105912,7 +108567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2905), 28, + ACTIONS(2917), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -105944,10 +108599,234 @@ static const uint16_t ts_small_parse_table[] = { [38339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 2, + ACTIONS(1464), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1462), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38384] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2921), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2923), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(897), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [38441] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2925), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2927), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(1104), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [38498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2825), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2823), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [38543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1121), 1, + sym_attribute_specifier, + ACTIONS(2931), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2929), 28, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [38592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2795), 35, + ACTIONS(1430), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -105983,12 +108862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38384] = 3, + [38637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, + ACTIONS(2821), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1448), 36, + ACTIONS(2819), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106025,15 +108904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38429] = 3, + [38682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 2, + ACTIONS(2817), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2807), 35, + ACTIONS(2815), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106067,15 +108946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38474] = 3, + [38727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 2, + ACTIONS(2813), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1418), 35, + ACTIONS(2811), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106109,56 +108988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38519] = 5, + [38772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1100), 1, - sym_attribute_specifier, - ACTIONS(2911), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2909), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [38568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 1, + ACTIONS(2809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1418), 36, + ACTIONS(2807), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106195,26 +109030,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38613] = 3, + [38817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 2, + STATE(1060), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2935), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2767), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2933), 25, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106233,19 +109073,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [38658] = 3, + [38866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 2, + ACTIONS(2805), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2775), 35, + ACTIONS(2803), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106279,12 +109116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38703] = 3, + [38911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 1, + ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1500), 36, + ACTIONS(2779), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106321,7 +109158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38748] = 3, + [38956] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(2785), 1, @@ -106363,59 +109200,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38793] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 1, - anon_sym_LBRACK_LBRACK, - STATE(771), 1, - sym_string_literal, - ACTIONS(2913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2901), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [38842] = 3, + [39001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 2, + ACTIONS(2789), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2771), 35, + ACTIONS(2787), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106449,15 +109242,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38887] = 3, + [39046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2781), 2, + ACTIONS(2793), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2779), 35, + ACTIONS(2791), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106491,12 +109284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38932] = 3, + [39091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 1, + ACTIONS(2797), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2787), 36, + ACTIONS(2795), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -106533,15 +109326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [38977] = 3, + [39136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 2, + ACTIONS(2801), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2811), 35, + ACTIONS(2799), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106575,15 +109368,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39022] = 3, + [39181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 1, + ACTIONS(1464), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2791), 36, + anon_sym_RBRACE, + ACTIONS(1462), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106617,62 +109410,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39067] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1112), 1, - sym_attribute_specifier, - ACTIONS(2917), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2915), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39116] = 3, + [39226] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2915), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2795), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(793), 1, + sym_string_literal, + ACTIONS(2940), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2913), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106703,59 +109454,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39161] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1106), 1, - sym_attribute_specifier, - ACTIONS(2921), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2919), 28, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [39210] = 3, + [39275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 1, + ACTIONS(1416), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2799), 36, + anon_sym_RBRACE, + ACTIONS(1414), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106789,15 +109496,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39255] = 3, + [39320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 1, + ACTIONS(2821), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2803), 36, + anon_sym_RBRACE, + ACTIONS(2819), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -106831,18 +109538,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39300] = 3, + [39365] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2805), 2, + ACTIONS(2915), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2803), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + STATE(797), 1, + sym_string_literal, + ACTIONS(2940), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2913), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -106873,26 +109582,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39345] = 3, + [39414] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2809), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2807), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + ACTIONS(2942), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2944), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(1051), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [39471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, anon_sym___attribute__, + STATE(1108), 1, + sym_attribute_specifier, + ACTIONS(2948), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + ACTIONS(2946), 28, + anon_sym___extension__, + anon_sym_extern, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -106911,18 +109673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39390] = 5, + [39520] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1102), 1, + STATE(1124), 1, sym_attribute_specifier, - ACTIONS(2925), 7, + ACTIONS(2952), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106930,7 +109689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2923), 28, + ACTIONS(2950), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -106959,17 +109718,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [39439] = 5, + [39569] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2931), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2929), 7, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1139), 1, + sym_attribute_specifier, + ACTIONS(2956), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -106977,12 +109733,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2927), 25, + ACTIONS(2954), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -107003,13 +109762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [39488] = 3, + [39618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 2, + ACTIONS(2825), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1448), 35, + ACTIONS(2823), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107045,26 +109804,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39533] = 3, + [39663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2813), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1105), 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, - ACTIONS(2811), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2958), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107083,19 +109847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39578] = 3, + [39712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 1, + ACTIONS(2785), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(1414), 36, + anon_sym_RBRACE, + ACTIONS(2783), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -107129,45 +109890,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39623] = 9, + [39757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(2817), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2934), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2936), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(868), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_RBRACE, + ACTIONS(2815), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107177,35 +109919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [39680] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2938), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2940), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1056), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -107214,25 +109927,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [39737] = 5, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [39802] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1084), 1, + STATE(1145), 1, sym_attribute_specifier, - ACTIONS(2944), 7, + ACTIONS(2964), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -107240,7 +109947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2942), 28, + ACTIONS(2962), 28, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -107269,74 +109976,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [39786] = 9, + [39851] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(2946), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2948), 5, + STATE(1143), 1, + sym_attribute_specifier, + ACTIONS(2968), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, - STATE(868), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - [39843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2781), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(2779), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2966), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107355,19 +110019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [39888] = 3, + [39900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2777), 1, + ACTIONS(2789), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2775), 36, + anon_sym_RBRACE, + ACTIONS(2787), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -107401,15 +110062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39933] = 3, + [39945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2769), 1, + ACTIONS(2801), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2767), 36, + anon_sym_RBRACE, + ACTIONS(2799), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -107443,13 +110104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [39978] = 3, + [39990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2801), 2, + ACTIONS(2793), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2799), 35, + ACTIONS(2791), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107485,15 +110146,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40023] = 3, + [40035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(2915), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1406), 36, + STATE(796), 1, + sym_string_literal, + ACTIONS(2940), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2913), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2915), 1, + anon_sym_LBRACK_LBRACK, + STATE(794), 1, + sym_string_literal, + ACTIONS(2940), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(2913), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2813), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2811), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, + ACTIONS(2795), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -107527,12 +110318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40068] = 3, + [40223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(1476), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(1492), 36, + ACTIONS(1474), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_if_token2, @@ -107569,20 +110360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40113] = 5, + [40268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 1, + ACTIONS(2915), 1, anon_sym_LBRACK_LBRACK, - STATE(769), 1, + STATE(798), 1, sym_string_literal, - ACTIONS(2913), 5, + ACTIONS(2940), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(2901), 30, + ACTIONS(2913), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107613,15 +110404,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40162] = 3, + [40317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 2, + ACTIONS(1498), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1406), 35, + ACTIONS(1496), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -107655,15 +110446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40207] = 3, + [40362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 2, + ACTIONS(1484), 1, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(1414), 35, + ACTIONS(1482), 36, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, @@ -107697,31 +110488,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40252] = 5, + [40407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1113), 1, - sym_attribute_specifier, - ACTIONS(2952), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1476), 2, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2950), 28, + anon_sym_RBRACE, + ACTIONS(1474), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107740,21 +110526,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40301] = 5, + [40452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 1, + ACTIONS(1416), 1, anon_sym_LBRACK_LBRACK, - STATE(767), 1, - sym_string_literal, - ACTIONS(2913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2901), 30, + ACTIONS(1414), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -107785,31 +110572,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40350] = 5, + [40497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1116), 1, - sym_attribute_specifier, - ACTIONS(2956), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(1432), 1, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(2954), 28, + ACTIONS(1430), 36, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -107828,14 +110610,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [40399] = 3, + [40542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1502), 2, + ACTIONS(2809), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1500), 35, + ACTIONS(2807), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107871,13 +110656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40444] = 3, + [40587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2793), 2, + ACTIONS(1498), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2791), 35, + ACTIONS(1496), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107913,13 +110698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40489] = 3, + [40632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2789), 2, + ACTIONS(1484), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(2787), 35, + ACTIONS(1482), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -107955,45 +110740,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40534] = 9, + [40677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(1290), 1, + ACTIONS(2805), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(2958), 3, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - ACTIONS(2960), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - STATE(1053), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, + anon_sym_RBRACE, + ACTIONS(2803), 35, + aux_sym_preproc_def_token1, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108003,13 +110769,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [40591] = 3, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [40722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 2, + ACTIONS(2781), 2, anon_sym_LBRACK_LBRACK, anon_sym_RBRACE, - ACTIONS(1492), 35, + ACTIONS(2779), 35, aux_sym_preproc_def_token1, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, @@ -108045,26 +110824,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [40636] = 3, + [40767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2785), 2, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1140), 1, + sym_attribute_specifier, + ACTIONS(2972), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, - ACTIONS(2783), 35, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2970), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108083,32 +110867,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40681] = 5, + [40816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + STATE(1131), 1, + sym_attribute_specifier, + ACTIONS(2976), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(772), 1, - sym_string_literal, - ACTIONS(2913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2901), 30, + anon_sym_COLON, + ACTIONS(2974), 28, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108127,18 +110911,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40730] = 5, + [40865] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1117), 1, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(2978), 3, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + ACTIONS(2980), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + STATE(897), 7, + sym__declaration_modifiers, sym_attribute_specifier, - ACTIONS(2964), 7, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(45), 10, + anon_sym_extern, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + [40922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108146,9 +110971,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2962), 28, + ACTIONS(2982), 29, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_signed, @@ -108175,14 +111001,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [40779] = 5, + [40966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, - anon_sym___attribute__, - STATE(1098), 1, - sym_attribute_specifier, - ACTIONS(2968), 7, + STATE(1060), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2990), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2988), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108190,15 +111019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2966), 28, + ACTIONS(2986), 24, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108217,28 +111043,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [40828] = 3, + [41014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 1, + STATE(1060), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2990), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2994), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 36, - aux_sym_preproc_def_token1, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, + anon_sym_COLON, + ACTIONS(2992), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108256,33 +111086,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40873] = 5, + [41062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2903), 1, + ACTIONS(2998), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - STATE(774), 1, - sym_string_literal, - ACTIONS(2913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(2901), 30, + anon_sym_COLON, + ACTIONS(2996), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + anon_sym_LBRACK, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -108301,14 +111127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, sym_identifier, - [40922] = 3, + [41106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 7, + STATE(1111), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3004), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3002), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108316,16 +111146,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2970), 29, + ACTIONS(3000), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108344,12 +111170,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [40966] = 3, + [41154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2976), 7, + ACTIONS(3008), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108357,7 +111182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2974), 29, + ACTIONS(3006), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108387,17 +111212,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41010] = 5, + [41198] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1060), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2982), 4, + ACTIONS(2990), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2980), 7, + ACTIONS(3012), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108405,7 +111230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2978), 24, + ACTIONS(3010), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108430,10 +111255,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [41058] = 3, + [41246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2986), 7, + ACTIONS(3016), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108441,7 +111266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2984), 29, + ACTIONS(3014), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108471,10 +111296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41102] = 3, + [41290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2990), 7, + ACTIONS(3020), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108482,7 +111307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2988), 29, + ACTIONS(3018), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108512,10 +111337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41146] = 3, + [41334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2994), 7, + ACTIONS(3024), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108523,7 +111348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2992), 29, + ACTIONS(3022), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108553,28 +111378,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41190] = 7, + [41378] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2996), 1, - sym_identifier, - ACTIONS(3005), 1, - sym_primitive_type, - STATE(1103), 1, + STATE(1107), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3003), 4, + ACTIONS(3030), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2999), 6, + ACTIONS(3028), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3001), 23, + anon_sym_COLON, + ACTIONS(3026), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108598,17 +111420,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [41242] = 5, + sym_identifier, + [41426] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1060), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2982), 4, + ACTIONS(2990), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3009), 7, + ACTIONS(3034), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108616,7 +111439,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3007), 24, + ACTIONS(3032), 24, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [41474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1304), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41518] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 1, + sym_identifier, + ACTIONS(3045), 1, + sym_primitive_type, + STATE(1125), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3043), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3039), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3041), 23, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108640,11 +111550,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + [41570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - [41290] = 3, + ACTIONS(1340), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [41614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3013), 7, + STATE(1116), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3051), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3049), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108652,16 +111609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3011), 29, + ACTIONS(3047), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108680,12 +111633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41334] = 3, + [41662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3017), 7, + ACTIONS(3055), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108693,7 +111645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3015), 29, + ACTIONS(3053), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108723,60 +111675,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41378] = 5, + [41706] = 3, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3021), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(1338), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1340), 19, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3019), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [41426] = 5, + 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, + [41750] = 3, ACTIONS(3), 1, sym_comment, - STATE(1087), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3023), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2986), 7, + ACTIONS(3059), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108784,12 +111727,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(2984), 24, + ACTIONS(3057), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108808,11 +111755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [41474] = 3, + [41794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3027), 7, + ACTIONS(3063), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108820,7 +111768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3025), 29, + ACTIONS(3061), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108850,68 +111798,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41518] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_sizeof, - anon_sym___alignof__, - anon_sym___alignof, - anon_sym__alignof, - anon_sym_alignof, - anon_sym__Alignof, - anon_sym_offsetof, - anon_sym__Generic, - anon_sym_asm, - anon_sym___asm__, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - ACTIONS(1352), 19, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - sym_number_literal, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [41562] = 3, + [41838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3031), 7, + ACTIONS(2933), 1, + sym_primitive_type, + STATE(1060), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3068), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3029), 29, + ACTIONS(3065), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -108930,12 +111841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41606] = 3, + [41888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3035), 7, + ACTIONS(3073), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108943,7 +111853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3033), 29, + ACTIONS(3071), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -108973,10 +111883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41650] = 3, + [41932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3039), 7, + ACTIONS(3077), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -108984,7 +111894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3037), 29, + ACTIONS(3075), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109014,10 +111924,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41694] = 3, + [41976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1360), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1388), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3043), 7, + ACTIONS(3081), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109025,7 +112017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3041), 29, + ACTIONS(3079), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109055,10 +112047,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41738] = 3, + [42108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 7, + ACTIONS(3085), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109066,7 +112058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3045), 29, + ACTIONS(3083), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109096,27 +112088,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41782] = 3, + [42152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3051), 7, + ACTIONS(3087), 1, + anon_sym_LPAREN2, + STATE(1106), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1981), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1979), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3049), 29, + ACTIONS(1963), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109135,12 +112131,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, sym_identifier, - [41826] = 3, + [42202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3055), 7, + ACTIONS(3092), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109148,7 +112143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3053), 29, + ACTIONS(3090), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109178,10 +112173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41870] = 3, + [42246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 7, + ACTIONS(3096), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109189,7 +112184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3057), 29, + ACTIONS(3094), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109219,10 +112214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41914] = 3, + [42290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3063), 7, + ACTIONS(3100), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109230,7 +112225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3061), 29, + ACTIONS(3098), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109260,74 +112255,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [41958] = 6, + [42334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2927), 1, - sym_primitive_type, - STATE(1049), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2931), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3068), 6, + ACTIONS(3104), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3065), 24, + anon_sym_COLON, + ACTIONS(3102), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42008] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1090), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3075), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3073), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3071), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109346,11 +112294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [42056] = 3, + [42378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3079), 7, + ACTIONS(3049), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109358,7 +112307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3077), 29, + ACTIONS(3047), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109388,10 +112337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42100] = 3, + [42422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3083), 7, + ACTIONS(3108), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109399,7 +112348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3081), 29, + ACTIONS(3106), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109429,10 +112378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42144] = 3, + [42466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 7, + ACTIONS(3112), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109440,7 +112389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3085), 29, + ACTIONS(3110), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109470,17 +112419,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42188] = 5, + [42510] = 3, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2982), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3091), 7, + ACTIONS(3116), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109488,99 +112430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3089), 24, + ACTIONS(3114), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42236] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1108), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3097), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - 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), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [42284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 1, - anon_sym_LPAREN2, - STATE(1082), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1966), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1964), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(1951), 24, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_LBRACK, anon_sym_static, anon_sym_auto, @@ -109599,11 +112458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, sym_identifier, - [42334] = 3, + [42554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 7, + ACTIONS(3120), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109611,7 +112471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3102), 29, + ACTIONS(3118), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109641,10 +112501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42378] = 3, + [42598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3108), 7, + ACTIONS(3124), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109652,7 +112512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3106), 29, + ACTIONS(3122), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109682,10 +112542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42422] = 3, + [42642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 7, + ACTIONS(3128), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109693,7 +112553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3110), 29, + ACTIONS(3126), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109723,10 +112583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42466] = 3, + [42686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3116), 7, + ACTIONS(3132), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109734,7 +112594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3114), 29, + ACTIONS(3130), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109764,10 +112624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42510] = 3, + [42730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3120), 7, + ACTIONS(3136), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109775,7 +112635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3118), 29, + ACTIONS(3134), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109805,10 +112665,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42554] = 3, + [42774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3124), 7, + ACTIONS(1358), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_sizeof, + anon_sym___alignof__, + anon_sym___alignof, + anon_sym__alignof, + anon_sym_alignof, + anon_sym__Alignof, + anon_sym_offsetof, + anon_sym__Generic, + anon_sym_asm, + anon_sym___asm__, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + ACTIONS(1360), 19, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [42818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3140), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -109816,7 +112717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - ACTIONS(3122), 29, + ACTIONS(3138), 29, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109846,37 +112747,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [42598] = 3, + [42862] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3142), 1, + sym_identifier, + ACTIONS(3144), 1, anon_sym_LPAREN2, + ACTIONS(3146), 1, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - ACTIONS(3126), 29, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, + ACTIONS(3150), 1, + sym_primitive_type, + STATE(1356), 1, + sym_ms_unaligned_ptr_modifier, + STATE(1570), 1, + sym__type_declarator, + STATE(2034), 1, + sym_ms_based_modifier, + ACTIONS(2885), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(1332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1341), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(2883), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + STATE(1652), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -109885,30 +112800,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [42642] = 9, + [42931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3087), 1, anon_sym_LPAREN2, - ACTIONS(3130), 1, + ACTIONS(3152), 1, anon_sym_COMMA, - ACTIONS(3133), 1, + ACTIONS(3155), 1, anon_sym_RPAREN, - STATE(1082), 1, + STATE(1106), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1741), 1, + STATE(1798), 1, aux_sym__old_style_parameter_list_repeat1, - ACTIONS(1964), 2, + ACTIONS(1979), 2, anon_sym_STAR, anon_sym_LBRACK_LBRACK, - ACTIONS(1966), 4, + ACTIONS(1981), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(1951), 24, + ACTIONS(1963), 24, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -109933,44 +112846,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [42697] = 16, + [42986] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1540), 1, + STATE(1570), 1, sym__type_declarator, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1120), 2, + STATE(1151), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1293), 2, + STATE(1332), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -109986,44 +112899,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42766] = 16, + [43055] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1538), 1, + STATE(1567), 1, sym__type_declarator, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1280), 2, + STATE(1315), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1302), 2, + STATE(1341), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -110039,44 +112952,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42835] = 16, + [43124] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1538), 1, + STATE(1582), 1, sym__type_declarator, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1122), 2, + STATE(1148), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1280), 2, + STATE(1338), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -110092,96 +113005,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [42904] = 16, + [43193] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3161), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3165), 1, + anon_sym_LBRACK, + STATE(1106), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1979), 2, + anon_sym_COMMA, anon_sym_STAR, - ACTIONS(3144), 1, - sym_primitive_type, - STATE(1316), 1, - sym_ms_unaligned_ptr_modifier, - STATE(1542), 1, - sym__type_declarator, - STATE(2005), 1, - sym_ms_based_modifier, - ACTIONS(2869), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(1273), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1302), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(2867), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(3142), 4, + ACTIONS(3158), 2, + anon_sym_RPAREN, + anon_sym_LBRACK_LBRACK, + ACTIONS(1981), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, + ACTIONS(1963), 23, anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [42973] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(33), 1, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(37), 1, anon_sym___declspec, - ACTIONS(1290), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3146), 1, - anon_sym_SEMI, - ACTIONS(2958), 2, anon_sym___based, - sym_identifier, - ACTIONS(2960), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1053), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, - sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(45), 10, - anon_sym_extern, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110191,7 +113040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43029] = 10, + 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, + [43245] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -110200,15 +113058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3148), 1, + ACTIONS(3168), 1, anon_sym_SEMI, - ACTIONS(2958), 2, + ACTIONS(2942), 2, anon_sym___based, sym_identifier, - ACTIONS(2960), 2, + ACTIONS(2944), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1053), 7, + STATE(1051), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110237,28 +113095,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43085] = 7, + [43301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, + ACTIONS(3174), 1, + anon_sym___attribute__, + ACTIONS(3177), 1, + anon_sym_LBRACE, + ACTIONS(3179), 1, + anon_sym_COLON, + STATE(1141), 1, + sym_attribute_specifier, + STATE(1209), 1, + sym_enumerator_list, + ACTIONS(3172), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(1082), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1964), 2, anon_sym_STAR, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3150), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(1966), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 24, + ACTIONS(3170), 23, anon_sym___extension__, anon_sym_extern, - anon_sym___attribute__, anon_sym___declspec, anon_sym___based, anon_sym_LBRACK, @@ -110280,7 +113139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43135] = 10, + [43353] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -110289,15 +113148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3153), 1, + ACTIONS(3181), 1, anon_sym_SEMI, - ACTIONS(2958), 2, + ACTIONS(2942), 2, anon_sym___based, sym_identifier, - ACTIONS(2960), 2, + ACTIONS(2944), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1053), 7, + STATE(1051), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110326,41 +113185,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43191] = 8, + [43409] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3162), 1, - anon_sym_LBRACE, - ACTIONS(3164), 1, - anon_sym_COLON, - STATE(1085), 1, - sym_attribute_specifier, - STATE(1179), 1, - sym_enumerator_list, - ACTIONS(3157), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(1290), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3183), 1, + anon_sym_SEMI, + ACTIONS(2942), 2, + anon_sym___based, + sym_identifier, + ACTIONS(2944), 2, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3155), 23, + STATE(1051), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, + sym_type_qualifier, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(47), 9, anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -110369,33 +113220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_identifier, - [43243] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 1, - anon_sym_LPAREN2, - ACTIONS(3173), 1, - anon_sym_LBRACK, - STATE(1082), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(1964), 2, - anon_sym_COMMA, - anon_sym_STAR, - ACTIONS(3166), 2, - anon_sym_RPAREN, - anon_sym_LBRACK_LBRACK, - ACTIONS(1966), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 23, - anon_sym___extension__, + ACTIONS(45), 10, anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym___based, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -110405,16 +113231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_identifier, - [43295] = 10, + [43465] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -110423,15 +113240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3176), 1, + ACTIONS(3185), 1, anon_sym_SEMI, - ACTIONS(2958), 2, + ACTIONS(2942), 2, anon_sym___based, sym_identifier, - ACTIONS(2960), 2, + ACTIONS(2944), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1053), 7, + STATE(1051), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110460,7 +113277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43351] = 10, + [43521] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, @@ -110469,15 +113286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___declspec, ACTIONS(1290), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3178), 1, + ACTIONS(3187), 1, anon_sym_SEMI, - ACTIONS(2958), 2, + ACTIONS(2942), 2, anon_sym___based, sym_identifier, - ACTIONS(2960), 2, + ACTIONS(2944), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1053), 7, + STATE(1051), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -110506,146 +113323,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - [43407] = 21, + [43577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(3087), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + STATE(1106), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(1979), 2, + anon_sym_STAR, + anon_sym_LBRACK_LBRACK, + ACTIONS(3189), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1981), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1963), 24, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(2691), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3184), 1, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_identifier, + [43627] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3188), 1, - anon_sym_AMP_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3198), 1, anon_sym_CARET, - ACTIONS(3194), 1, + ACTIONS(3200), 1, anon_sym_AMP, - ACTIONS(3204), 1, - anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2689), 6, + ACTIONS(2627), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, sym_identifier, - [43484] = 19, + [43696] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2617), 1, + ACTIONS(2709), 1, aux_sym_preproc_elif_token1, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3188), 1, - anon_sym_AMP_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3198), 1, anon_sym_CARET, - ACTIONS(3194), 1, + ACTIONS(3200), 1, anon_sym_AMP, - STATE(824), 1, + ACTIONS(3210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3212), 1, + anon_sym_AMP_AMP, + ACTIONS(3214), 1, + anon_sym_PIPE, + ACTIONS(3216), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 8, + ACTIONS(2707), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, sym_identifier, - [43557] = 11, + [43773] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(3194), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2625), 7, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 16, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + 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_QMARK, + sym_identifier, + [43828] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3196), 1, + anon_sym_SLASH, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2617), 5, + ACTIONS(2625), 5, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 16, + ACTIONS(2627), 16, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110662,151 +113565,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [43614] = 21, + [43885] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2701), 1, + ACTIONS(2681), 1, aux_sym_preproc_elif_token1, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3186), 1, + ACTIONS(3198), 1, + anon_sym_CARET, + ACTIONS(3200), 1, + anon_sym_AMP, + ACTIONS(3210), 1, anon_sym_PIPE_PIPE, - ACTIONS(3188), 1, + ACTIONS(3212), 1, anon_sym_AMP_AMP, - ACTIONS(3190), 1, + ACTIONS(3214), 1, anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP, - ACTIONS(3204), 1, + ACTIONS(3216), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2699), 6, + ACTIONS(2679), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [43691] = 21, + [43962] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3188), 1, - anon_sym_AMP_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP, - ACTIONS(3204), 1, - anon_sym_QMARK, - ACTIONS(3208), 1, - aux_sym_preproc_elif_token1, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3198), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3200), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3206), 6, + ACTIONS(2625), 5, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 14, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + 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_QMARK, sym_identifier, - [43768] = 12, + [44021] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3202), 2, + ACTIONS(3204), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3206), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2617), 5, + ACTIONS(2625), 3, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2619), 14, + ACTIONS(2627), 12, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110817,85 +113715,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_QMARK, sym_identifier, - [43827] = 21, + [44084] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2705), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3186), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3188), 1, - anon_sym_AMP_AMP, - ACTIONS(3190), 1, - anon_sym_PIPE, - ACTIONS(3192), 1, - anon_sym_CARET, - ACTIONS(3194), 1, - anon_sym_AMP, - ACTIONS(3204), 1, - anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 6, + ACTIONS(2625), 3, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2627), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [43904] = 7, + [44149] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, + ACTIONS(3177), 1, anon_sym_LBRACE, - ACTIONS(3214), 1, + ACTIONS(3222), 1, anon_sym___attribute__, - STATE(1095), 1, + STATE(1126), 1, sym_attribute_specifier, - STATE(1166), 1, + STATE(1203), 1, sym_enumerator_list, - ACTIONS(3212), 6, + ACTIONS(3220), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3210), 23, + ACTIONS(3218), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -110919,35 +113809,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [43953] = 10, + [44198] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3200), 1, + anon_sym_AMP, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3182), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2617), 7, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, aux_sym_preproc_elif_token1, + anon_sym_PIPE, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3194), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3202), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 16, + ACTIONS(3206), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3208), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2627), 10, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -110956,107 +113858,108 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK, sym_identifier, - [44008] = 17, + [44265] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(2713), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3192), 1, + ACTIONS(3198), 1, anon_sym_CARET, - ACTIONS(3194), 1, + ACTIONS(3200), 1, anon_sym_AMP, - STATE(824), 1, + ACTIONS(3210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3212), 1, + anon_sym_AMP_AMP, + ACTIONS(3214), 1, + anon_sym_PIPE, + ACTIONS(3216), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 9, + ACTIONS(2711), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [44077] = 16, + [44342] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(2625), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3196), 1, anon_sym_SLASH, - ACTIONS(3194), 1, + ACTIONS(3198), 1, + anon_sym_CARET, + ACTIONS(3200), 1, anon_sym_AMP, - STATE(824), 1, + ACTIONS(3214), 1, + anon_sym_PIPE, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 10, + ACTIONS(2627), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -111064,377 +113967,706 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [44144] = 15, + [44413] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(3196), 1, anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3198), 1, + anon_sym_CARET, + ACTIONS(3200), 1, + anon_sym_AMP, + ACTIONS(3210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3212), 1, + anon_sym_AMP_AMP, + ACTIONS(3214), 1, + anon_sym_PIPE, + ACTIONS(3216), 1, + anon_sym_QMARK, + ACTIONS(3227), 1, + aux_sym_preproc_elif_token1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3202), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2617), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2619), 10, + ACTIONS(3225), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, sym_identifier, - [44209] = 14, + [44490] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3184), 1, + ACTIONS(2625), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3196), 1, anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3198), 1, + anon_sym_CARET, + ACTIONS(3200), 1, + anon_sym_AMP, + ACTIONS(3212), 1, + anon_sym_AMP_AMP, + ACTIONS(3214), 1, + anon_sym_PIPE, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3192), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3194), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3198), 2, + ACTIONS(3202), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3204), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3206), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3208), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2617), 3, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(2619), 12, + ACTIONS(2627), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, + anon_sym_QMARK, + sym_identifier, + [44563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1338), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44603] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 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, + [44659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3237), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(3235), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [44272] = 18, + [44699] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2617), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3184), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3190), 1, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3192), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3194), 1, + ACTIONS(3247), 1, anon_sym_AMP, - STATE(824), 1, + ACTIONS(3257), 1, + anon_sym_QMARK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3180), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3182), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3196), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3198), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3200), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3202), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 9, + ACTIONS(2707), 6, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_COLON, + [44773] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3259), 1, + anon_sym_typedef, + ACTIONS(2654), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44815] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3261), 1, + anon_sym_typedef, + ACTIONS(2654), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1358), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3263), 1, + anon_sym_typedef, + ACTIONS(2654), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44939] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3265), 1, + anon_sym_typedef, + ACTIONS(2654), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [44981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1358), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1304), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1302), 30, + anon_sym___extension__, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [44343] = 15, + [45061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2619), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_SEMI, + ACTIONS(1340), 2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(1338), 30, + anon_sym___extension__, + anon_sym_extern, anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - [44407] = 20, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, + sym_identifier, + [45101] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2699), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACE, - anon_sym_COLON, - [44481] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 9, + ACTIONS(2711), 6, 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, - [44549] = 20, + [45175] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2689), 6, + ACTIONS(2679), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_RBRACE, anon_sym_COLON, - [44623] = 4, + [45249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(3269), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3243), 1, - anon_sym_typedef, - ACTIONS(2663), 30, + anon_sym_LBRACE, + ACTIONS(3267), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111465,61 +114697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44665] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2619), 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, - [44727] = 3, + [45289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 2, + ACTIONS(1388), 2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(1350), 30, + ACTIONS(1386), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111550,34 +114734,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [44767] = 10, + [45329] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3219), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2617), 6, + ACTIONS(2625), 6, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 16, + ACTIONS(2627), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111594,157 +114778,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [44821] = 20, + [45383] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, + anon_sym_SLASH, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 6, + ACTIONS(2627), 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, - [44895] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2665), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3245), 1, - anon_sym_typedef, - ACTIONS(2663), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [44937] = 17, + anon_sym_QMARK, + [45451] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 9, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 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, - [45005] = 4, + [45509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2665), 1, + ACTIONS(2656), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3247), 1, + ACTIONS(3271), 1, anon_sym_typedef, - ACTIONS(2663), 30, + ACTIONS(2654), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -111775,38 +114913,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45047] = 12, + [45551] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2617), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 14, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2627), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111814,91 +114956,50 @@ static const uint16_t ts_small_parse_table[] = { 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, - [45105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2665), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3249), 1, - anon_sym_typedef, - ACTIONS(2663), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45147] = 16, + [45613] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3239), 1, - anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 10, + ACTIONS(2627), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -111909,272 +115010,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COLON, anon_sym_QMARK, - [45213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3253), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3251), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45253] = 18, + [45677] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(2625), 1, anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3247), 1, anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 8, + ACTIONS(2627), 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, - [45323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3257), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(3255), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3259), 2, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(2881), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2665), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3261), 1, - anon_sym_typedef, - ACTIONS(2663), 30, - anon_sym___extension__, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - anon_sym_enum, - anon_sym_struct, - anon_sym_union, - sym_identifier, - [45445] = 11, + anon_sym_QMARK, + [45743] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2617), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 16, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2627), 8, 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, + [45813] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2625), 1, + anon_sym_PIPE, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3245), 1, anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(2627), 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, - [45501] = 5, + [45881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 1, - anon_sym___attribute__, - STATE(1115), 1, - sym_attribute_specifier, - ACTIONS(3265), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, + ACTIONS(3273), 2, anon_sym_LBRACK_LBRACK, - ACTIONS(3263), 23, + anon_sym_LBRACE, + ACTIONS(2856), 30, anon_sym___extension__, anon_sym_extern, + anon_sym___attribute__, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_static, anon_sym_auto, anon_sym_register, @@ -112192,35 +115195,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, + sym_primitive_type, + anon_sym_enum, + anon_sym_struct, + anon_sym_union, sym_identifier, - [45544] = 10, + [45921] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2617), 6, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 15, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2627), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112228,43 +115246,36 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK, sym_identifier, - [45597] = 11, + [45984] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3277), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2625), 6, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(2617), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 15, + ACTIONS(2627), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112280,21 +115291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, sym_identifier, - [45652] = 5, + [46037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3280), 1, + ACTIONS(3293), 1, anon_sym___attribute__, - STATE(1101), 1, + STATE(1112), 1, sym_attribute_specifier, - ACTIONS(3278), 6, + ACTIONS(3291), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(3276), 23, + ACTIONS(3289), 23, anon_sym___extension__, anon_sym_extern, anon_sym___declspec, @@ -112318,160 +115329,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Noreturn, anon_sym_noreturn, sym_identifier, - [45695] = 20, + [46080] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3283), 1, + ACTIONS(3296), 1, anon_sym_PIPE_PIPE, - ACTIONS(3285), 1, + ACTIONS(3298), 1, anon_sym_AMP_AMP, - ACTIONS(3287), 1, + ACTIONS(3300), 1, anon_sym_PIPE, - ACTIONS(3289), 1, + ACTIONS(3302), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3301), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2703), 5, + ACTIONS(2707), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [45768] = 17, + [46153] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2099), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2101), 1, + anon_sym_STAR, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(1534), 1, + sym__declarator, + STATE(1692), 1, + sym__abstract_declarator, + STATE(1705), 1, + sym_parameter_list, + STATE(2088), 1, + sym_ms_based_modifier, + ACTIONS(3308), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1340), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1703), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [46216] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3287), 1, + ACTIONS(3296), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3298), 1, + anon_sym_AMP_AMP, + ACTIONS(3300), 1, anon_sym_PIPE, - ACTIONS(3289), 1, + ACTIONS(3302), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3304), 1, anon_sym_AMP, - STATE(965), 1, + ACTIONS(3306), 1, + anon_sym_QMARK, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 8, + ACTIONS(3225), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, sym_identifier, - [45835] = 12, + [46289] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - STATE(965), 1, + ACTIONS(3296), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3298), 1, + anon_sym_AMP_AMP, + ACTIONS(3300), 1, + anon_sym_PIPE, + ACTIONS(3302), 1, + anon_sym_CARET, + ACTIONS(3304), 1, + anon_sym_AMP, + ACTIONS(3306), 1, + anon_sym_QMARK, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3299), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2617), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 13, + ACTIONS(3285), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2679), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - 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_QMARK, sym_identifier, - [45892] = 3, + [46362] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3314), 1, + anon_sym___attribute__, + STATE(1144), 1, + sym_attribute_specifier, + ACTIONS(3312), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3310), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + 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, + [46405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3321), 1, + anon_sym___attribute__, + STATE(1130), 1, + sym_attribute_specifier, + ACTIONS(3319), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(3317), 23, + anon_sym___extension__, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_auto, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + 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, + [46448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3326), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3303), 30, + ACTIONS(3324), 30, anon_sym___extension__, anon_sym_extern, anon_sym___attribute__, @@ -112502,258 +115648,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, anon_sym_union, sym_identifier, - [45931] = 18, + [46487] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3285), 1, - anon_sym_AMP_AMP, - ACTIONS(3287), 1, - anon_sym_PIPE, - ACTIONS(3289), 1, - anon_sym_CARET, - ACTIONS(3291), 1, - anon_sym_AMP, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(2627), 15, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + 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(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 7, + anon_sym_QMARK, + sym_identifier, + [46542] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2749), 1, + anon_sym_LBRACK, + ACTIONS(3279), 1, + anon_sym_SLASH, + STATE(980), 1, + sym_argument_list, + ACTIONS(2751), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3287), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 13, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, 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_QMARK, sym_identifier, - [46000] = 20, + [46599] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3283), 1, + ACTIONS(3296), 1, anon_sym_PIPE_PIPE, - ACTIONS(3285), 1, + ACTIONS(3298), 1, anon_sym_AMP_AMP, - ACTIONS(3287), 1, + ACTIONS(3300), 1, anon_sym_PIPE, - ACTIONS(3289), 1, + ACTIONS(3302), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3301), 1, + ACTIONS(3306), 1, anon_sym_QMARK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3206), 5, + ACTIONS(2711), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [46073] = 20, + [46672] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3285), 1, - anon_sym_AMP_AMP, - ACTIONS(3287), 1, + STATE(980), 1, + sym_argument_list, + ACTIONS(2625), 2, anon_sym_PIPE, - ACTIONS(3289), 1, - anon_sym_CARET, - ACTIONS(3291), 1, anon_sym_AMP, - ACTIONS(3301), 1, - anon_sym_QMARK, - STATE(965), 1, - sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2699), 5, + ACTIONS(2627), 11, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, sym_identifier, - [46146] = 20, + [46733] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2625), 1, + anon_sym_PIPE, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3283), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3285), 1, - anon_sym_AMP_AMP, - ACTIONS(3287), 1, - anon_sym_PIPE, - ACTIONS(3289), 1, - anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(3301), 1, - anon_sym_QMARK, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2689), 5, + ACTIONS(2627), 9, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_QMARK, sym_identifier, - [46219] = 17, + [46798] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2625), 1, anon_sym_PIPE, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3289), 1, + ACTIONS(3302), 1, anon_sym_CARET, - ACTIONS(3291), 1, + ACTIONS(3304), 1, anon_sym_AMP, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 8, + ACTIONS(2627), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, @@ -112762,272 +115936,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_QMARK, sym_identifier, - [46286] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3311), 1, - anon_sym___attribute__, - STATE(1096), 1, - sym_attribute_specifier, - ACTIONS(3309), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(3307), 23, - anon_sym___extension__, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_auto, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - 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, - [46329] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2087), 1, - anon_sym_LPAREN2, - ACTIONS(2089), 1, - anon_sym_STAR, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(2871), 1, - anon_sym_LBRACK, - STATE(1484), 1, - sym__declarator, - STATE(1643), 1, - sym__abstract_declarator, - STATE(1644), 1, - sym_parameter_list, - STATE(1941), 1, - sym_ms_based_modifier, - ACTIONS(3314), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1645), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [46392] = 16, + [46865] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - ACTIONS(3291), 1, + ACTIONS(3300), 1, + anon_sym_PIPE, + ACTIONS(3302), 1, + anon_sym_CARET, + ACTIONS(3304), 1, anon_sym_AMP, - STATE(965), 1, + STATE(980), 1, sym_argument_list, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 9, + ACTIONS(2627), 8, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [46457] = 15, + [46932] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2759), 1, + ACTIONS(2749), 1, anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3279), 1, anon_sym_SLASH, - STATE(965), 1, - sym_argument_list, - ACTIONS(2617), 2, + ACTIONS(3298), 1, + anon_sym_AMP_AMP, + ACTIONS(3300), 1, anon_sym_PIPE, + ACTIONS(3302), 1, + anon_sym_CARET, + ACTIONS(3304), 1, anon_sym_AMP, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, + STATE(980), 1, + sym_argument_list, + ACTIONS(2751), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, + ACTIONS(2753), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3275), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3293), 2, + ACTIONS(3277), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3281), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3295), 2, + ACTIONS(3283), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + ACTIONS(3285), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3299), 2, + ACTIONS(3287), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 9, + ACTIONS(2627), 7, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_QMARK, sym_identifier, - [46520] = 14, + [47001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2759), 1, - anon_sym_LBRACK, - ACTIONS(3272), 1, + ACTIONS(3328), 11, anon_sym_SLASH, - STATE(965), 1, - sym_argument_list, - ACTIONS(2617), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(2763), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2765), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3270), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3274), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3295), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3297), 2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3330), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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, - ACTIONS(3299), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 11, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [47039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3332), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3334), 19, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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_QMARK, - sym_identifier, - [46581] = 14, + 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_LBRACE, + [47077] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1484), 1, - sym__declarator, - STATE(1941), 1, + STATE(1561), 1, + sym__field_declarator, + STATE(2119), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1188), 2, + STATE(1341), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1326), 2, + STATE(1362), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1626), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -113038,37 +116153,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46641] = 14, + [47137] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1484), 1, + STATE(1534), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1302), 2, + STATE(1226), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1326), 2, + STATE(1364), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -113084,42 +116199,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46701] = 14, + [47197] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1483), 1, - sym__declarator, - STATE(1941), 1, + STATE(1552), 1, + sym__field_declarator, + STATE(2119), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1185), 2, + STATE(1221), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1322), 2, + STATE(1358), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1626), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -113130,42 +116245,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46761] = 14, + [47257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3346), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3348), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [47295] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, STATE(1534), 1, - sym__field_declarator, - STATE(2107), 1, + sym__declarator, + STATE(2088), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1302), 2, + STATE(1341), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1318), 2, + STATE(1364), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1589), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -113176,37 +116326,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46821] = 14, + [47355] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1502), 1, + STATE(1531), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1302), 2, + STATE(1341), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1324), 2, + STATE(1365), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -113222,37 +116372,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46881] = 14, + [47415] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1527), 1, + STATE(1544), 1, sym__field_declarator, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1187), 2, + STATE(1228), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1325), 2, + STATE(1360), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -113268,37 +116418,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [46941] = 14, + [47475] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1522), 1, + STATE(1552), 1, sym__field_declarator, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1191), 2, + STATE(1341), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1319), 2, + STATE(1358), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -113314,42 +116464,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47001] = 14, + [47535] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - STATE(1527), 1, - sym__field_declarator, - STATE(2107), 1, + STATE(1533), 1, + sym__declarator, + STATE(2088), 1, sym_ms_based_modifier, - ACTIONS(2869), 2, + ACTIONS(2885), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1302), 2, + STATE(1225), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(1325), 2, + STATE(1357), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2867), 3, + ACTIONS(2883), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(1589), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -113360,585 +116510,816 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47061] = 22, + [47595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3350), 11, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3352), 19, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + 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, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + [47633] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3326), 1, + ACTIONS(3354), 1, anon_sym_COMMA, - ACTIONS(3328), 1, + ACTIONS(3356), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1752), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2544), 2, + STATE(1878), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47708] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47136] = 22, + ACTIONS(3358), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [47779] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3330), 1, + ACTIONS(3360), 1, anon_sym_COMMA, - ACTIONS(3332), 1, + ACTIONS(3362), 1, anon_sym_RBRACE, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1823), 1, + STATE(1789), 1, aux_sym_initializer_list_repeat1, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47211] = 22, + [47854] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3326), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(3334), 1, + ACTIONS(3366), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1825), 1, + STATE(1900), 1, aux_sym_argument_list_repeat1, - ACTIONS(2544), 2, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [47929] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + ACTIONS(3368), 1, + anon_sym_COMMA, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47286] = 20, + ACTIONS(3370), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + [48002] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3364), 1, + anon_sym_COMMA, + ACTIONS(3372), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, + STATE(1823), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [48077] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + ACTIONS(3364), 1, + anon_sym_COMMA, + ACTIONS(3374), 1, + anon_sym_RPAREN, + STATE(829), 1, + sym_argument_list, + STATE(1901), 1, + aux_sym_argument_list_repeat1, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3336), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [47357] = 22, + [48152] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3338), 1, + ACTIONS(3354), 1, anon_sym_COMMA, - ACTIONS(3340), 1, + ACTIONS(3376), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1808), 1, + STATE(1833), 1, aux_sym_generic_expression_repeat1, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47432] = 22, + [48227] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3326), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(3378), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1804), 1, + STATE(1797), 1, aux_sym_argument_list_repeat1, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47507] = 22, + [48302] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3344), 1, + ACTIONS(3380), 1, anon_sym_COMMA, - ACTIONS(3346), 1, + ACTIONS(3382), 1, anon_sym_RBRACE, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1775), 1, + STATE(1897), 1, aux_sym_initializer_list_repeat1, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47582] = 22, + [48377] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3338), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3348), 1, + ACTIONS(3384), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - STATE(1764), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47657] = 22, + [48449] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3326), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3350), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(3386), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - STATE(1807), 1, - aux_sym_argument_list_repeat1, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47732] = 21, + [48521] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - STATE(824), 1, + ACTIONS(3388), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3354), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - [47805] = 21, + [48593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3356), 1, + ACTIONS(3390), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [47877] = 13, + [48665] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(2069), 1, + sym_identifier, + STATE(1353), 1, + sym__type_specifier, + STATE(1363), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2046), 1, + sym_type_descriptor, + STATE(1324), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1915), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48721] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -113947,25 +117328,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2057), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(3358), 1, + ACTIONS(3392), 1, anon_sym_enum, - STATE(1312), 1, + STATE(1353), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1363), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2167), 1, + sym_type_descriptor, + STATE(1336), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1915), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [48777] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(2069), 1, + sym_identifier, + STATE(1353), 1, + sym__type_specifier, + STATE(1363), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2184), 1, + STATE(2022), 1, sym_type_descriptor, - STATE(1276), 2, + STATE(1324), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -113981,1146 +117405,980 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [47933] = 21, + [48833] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3402), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2627), 8, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, - anon_sym_PIPE, - ACTIONS(3372), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(824), 1, + [48893] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, + anon_sym_SLASH, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2703), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3360), 2, + ACTIONS(2625), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48005] = 21, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2627), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [48955] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3386), 1, + ACTIONS(3408), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48077] = 21, + [49027] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2625), 1, + anon_sym_PIPE, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, + anon_sym_SLASH, + ACTIONS(3410), 1, + anon_sym_AMP, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3402), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2627), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + [49091] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3388), 1, - anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2707), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48149] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3390), 1, - sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1357), 1, - sym__type_specifier, - STATE(1415), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1451), 1, - sym__type_definition_type, - STATE(1287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48205] = 21, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [49163] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3396), 1, + ACTIONS(3422), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48277] = 21, + [49235] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3398), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(3424), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48349] = 12, + [49307] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2625), 1, + anon_sym_PIPE, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3418), 1, + anon_sym_CARET, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(2617), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2627), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_QMARK, - [48403] = 22, + [49373] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, - anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3402), 1, - anon_sym_RBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48477] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3390), 1, - sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1357), 1, - sym__type_specifier, - STATE(1415), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1453), 1, - sym__type_definition_type, - STATE(1287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48533] = 21, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2627), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_QMARK, + [49439] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3404), 1, + ACTIONS(3426), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48605] = 20, + [49511] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3428), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3206), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48675] = 13, + [49583] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2617), 4, - anon_sym_PIPE, + ACTIONS(3410), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(2619), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, + ACTIONS(3414), 1, anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_PIPE, + ACTIONS(3418), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_RBRACK, + ACTIONS(3420), 1, anon_sym_QMARK, - [48731] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3364), 1, - anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3430), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3432), 1, + anon_sym_RBRACK, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3362), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(2617), 6, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(2619), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - [48783] = 21, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [49657] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3406), 1, - anon_sym_SEMI, - STATE(824), 1, + ACTIONS(3434), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48855] = 21, + [49729] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3408), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(3436), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [48927] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3390), 1, - sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1357), 1, - sym__type_specifier, - STATE(1415), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1448), 1, - sym__type_definition_type, - STATE(1287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [48983] = 21, + [49801] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3410), 1, - anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2711), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49055] = 21, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [49873] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3412), 1, + ACTIONS(3438), 1, anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49127] = 21, + [49945] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2689), 2, + ACTIONS(2679), 2, anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, - ACTIONS(3360), 2, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49199] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(2057), 1, - sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2054), 1, - sym_type_descriptor, - STATE(1277), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [49255] = 19, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [50017] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(2564), 1, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2843), 1, anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3368), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 4, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2627), 4, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_QMARK, - [49323] = 21, + [50085] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3414), 1, - anon_sym_SEMI, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49395] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3416), 1, - anon_sym_SEMI, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(3225), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49467] = 13, + [50155] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1357), 1, + ACTIONS(3392), 1, + anon_sym_enum, + STATE(1353), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1363), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1449), 1, - sym__type_definition_type, - STATE(1287), 2, + STATE(2258), 1, + sym_type_descriptor, + STATE(1336), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115136,34 +118394,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49523] = 13, + [50211] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3440), 1, + anon_sym_SEMI, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50283] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1357), 1, + STATE(1353), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1363), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1456), 1, - sym__type_definition_type, - STATE(1287), 2, + STATE(2256), 1, + sym_type_descriptor, + STATE(1324), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115179,186 +118488,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49579] = 21, + [50339] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3418), 1, - anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(2625), 6, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [49651] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(2627), 12, + anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3420), 1, - anon_sym_SEMI, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [49723] = 20, + anon_sym_RBRACK, + anon_sym_QMARK, + [50391] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3442), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [49793] = 13, + [50463] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3394), 1, + ACTIONS(3448), 1, sym_primitive_type, - STATE(1357), 1, + STATE(1394), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1450), 1, + STATE(1488), 1, sym__type_definition_type, - STATE(1287), 2, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115374,34 +118623,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49849] = 13, + [50519] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3394), 1, + ACTIONS(3448), 1, sym_primitive_type, - STATE(1357), 1, + STATE(1394), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1455), 1, + STATE(1492), 1, sym__type_definition_type, - STATE(1287), 2, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115417,34 +118666,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49905] = 13, + [50575] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, - anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1357), 1, + ACTIONS(3392), 1, + anon_sym_enum, + STATE(1353), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1363), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1454), 1, - sym__type_definition_type, - STATE(1287), 2, + STATE(2252), 1, + sym_type_descriptor, + STATE(1336), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115460,125 +118709,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [49961] = 15, + [50631] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3360), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3378), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3380), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2619), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, anon_sym_QMARK, - [50021] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3364), 1, - anon_sym_SLASH, - STATE(824), 1, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3450), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2617), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [50083] = 13, + [50703] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3444), 1, sym_identifier, - STATE(1312), 1, + ACTIONS(3448), 1, + sym_primitive_type, + STATE(1394), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2077), 1, - sym_type_descriptor, - STATE(1277), 2, + STATE(1482), 1, + sym__type_definition_type, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115594,81 +118803,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50139] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3364), 1, - anon_sym_SLASH, - ACTIONS(3374), 1, - anon_sym_AMP, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3380), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(2619), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_RBRACK, - anon_sym_QMARK, - [50203] = 13, + [50759] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3444), 1, sym_identifier, - STATE(1312), 1, + ACTIONS(3448), 1, + sym_primitive_type, + STATE(1394), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2052), 1, - sym_type_descriptor, - STATE(1277), 2, + STATE(1485), 1, + sym__type_definition_type, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115684,184 +118846,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50259] = 18, + [50815] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2544), 1, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3452), 1, + anon_sym_RPAREN, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [50887] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3370), 1, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - STATE(824), 1, + ACTIONS(3257), 1, + anon_sym_QMARK, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3454), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 5, + [50959] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, + anon_sym_SLASH, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 12, anon_sym_DOT_DOT_DOT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - [50325] = 21, + [51013] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3424), 1, + ACTIONS(3456), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50397] = 21, + [51085] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2845), 1, - anon_sym_DOT, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(2699), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [50469] = 13, + ACTIONS(3458), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51155] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3394), 1, + ACTIONS(3448), 1, sym_primitive_type, - STATE(1357), 1, + STATE(1394), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1457), 1, + STATE(1486), 1, sym__type_definition_type, - STATE(1287), 2, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115877,34 +119134,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50525] = 13, + [51211] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + ACTIONS(3368), 1, + anon_sym_COMMA, + ACTIONS(3460), 1, + anon_sym_SEMI, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [51283] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2564), 1, + anon_sym_DASH_GT, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(2843), 1, + anon_sym_DOT, + ACTIONS(3398), 1, + anon_sym_SLASH, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(3394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3404), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(2625), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(2627), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + [51339] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3444), 1, sym_identifier, - STATE(1312), 1, + ACTIONS(3448), 1, + sym_primitive_type, + STATE(1394), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2182), 1, - sym_type_descriptor, - STATE(1277), 2, + STATE(1487), 1, + sym__type_definition_type, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115920,7 +119271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50581] = 13, + [51395] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, @@ -115929,25 +119280,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3358), 1, + ACTIONS(1917), 1, anon_sym_enum, - STATE(1312), 1, + ACTIONS(2069), 1, + sym_identifier, + STATE(1353), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1363), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2137), 1, + STATE(2025), 1, sym_type_descriptor, - STATE(1276), 2, + STATE(1324), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -115963,428 +119314,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [50637] = 20, + [51451] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3426), 2, + ACTIONS(3462), 2, anon_sym_COMMA, anon_sym_RBRACE, - [50707] = 21, + [51521] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3428), 1, - anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50779] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2544), 1, - anon_sym_DASH_GT, - ACTIONS(2617), 1, - anon_sym_PIPE, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(2845), 1, + ACTIONS(2564), 2, anon_sym_DOT, - ACTIONS(3364), 1, - anon_sym_SLASH, - ACTIONS(3372), 1, - anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - STATE(824), 1, - sym_argument_list, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2619), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_QMARK, - [50845] = 21, + ACTIONS(3464), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [51591] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3430), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(3466), 1, + anon_sym_SEMI, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [50917] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3432), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [50987] = 20, + [51663] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3434), 2, + ACTIONS(3468), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [51057] = 21, + anon_sym_RBRACE, + [51733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3436), 1, - anon_sym_SEMI, - STATE(824), 1, + ACTIONS(3470), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51129] = 13, + [51805] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3444), 1, sym_identifier, - STATE(1312), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2014), 1, - sym_type_descriptor, - STATE(1277), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [51185] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + ACTIONS(3448), 1, sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3358), 1, - anon_sym_enum, - STATE(1312), 1, + STATE(1394), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2217), 1, - sym_type_descriptor, - STATE(1276), 2, + STATE(1490), 1, + sym__type_definition_type, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -116400,338 +119609,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51241] = 21, + [51861] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3438), 1, + ACTIONS(3472), 1, anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51313] = 20, + [51933] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3440), 2, + ACTIONS(3474), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [51383] = 21, + anon_sym_SEMI, + [52003] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(3444), 1, + sym_identifier, + ACTIONS(3448), 1, + sym_primitive_type, + STATE(1394), 1, + sym__type_specifier, + STATE(1451), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1491), 1, + sym__type_definition_type, + STATE(1316), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3446), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52059] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, + ACTIONS(3368), 1, anon_sym_COMMA, - ACTIONS(3442), 1, - anon_sym_SEMI, - STATE(824), 1, + ACTIONS(3476), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51455] = 21, + [52131] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1917), 1, + anon_sym_enum, ACTIONS(3444), 1, - anon_sym_SEMI, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [51527] = 21, + sym_identifier, + ACTIONS(3448), 1, + sym_primitive_type, + STATE(1394), 1, + sym__type_specifier, + STATE(1451), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1484), 1, + sym__type_definition_type, + STATE(1316), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3446), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52187] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3446), 1, - anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51599] = 20, + ACTIONS(3478), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [52257] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(1917), 1, + anon_sym_enum, + ACTIONS(2069), 1, + sym_identifier, + STATE(1353), 1, + sym__type_specifier, + STATE(1363), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2075), 1, + sym_type_descriptor, + STATE(1324), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1915), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [52313] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3448), 2, + ACTIONS(3480), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [51669] = 13, + anon_sym_RPAREN, + [52383] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(3444), 1, sym_identifier, - ACTIONS(3394), 1, + ACTIONS(3448), 1, sym_primitive_type, - STATE(1357), 1, + STATE(1394), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1447), 1, + STATE(1483), 1, sym__type_definition_type, - STATE(1287), 2, + STATE(1316), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -116747,703 +120033,625 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [51725] = 20, + [52439] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3482), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3450), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [51795] = 21, + [52508] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3352), 1, - anon_sym_COMMA, - ACTIONS(3452), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(3484), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51867] = 20, + [52577] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2350), 1, + ACTIONS(2342), 1, anon_sym_RBRACK, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [51936] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52646] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2322), 1, + anon_sym_RBRACK, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3454), 1, - anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52005] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [52715] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3456), 1, - anon_sym_RBRACK, - STATE(824), 1, + ACTIONS(3486), 1, + anon_sym_COMMA, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52074] = 20, + [52784] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3458), 1, - anon_sym_RPAREN, - STATE(824), 1, + ACTIONS(3488), 1, + anon_sym_COMMA, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52143] = 20, + [52853] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3460), 1, + ACTIONS(3490), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52212] = 20, + [52922] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2314), 1, - anon_sym_RBRACK, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3492), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52281] = 20, + [52991] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2318), 1, + anon_sym_RBRACK, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3462), 1, - anon_sym_RPAREN, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52350] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53060] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3464), 1, + ACTIONS(3494), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52419] = 20, + [53129] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2346), 1, - anon_sym_RBRACK, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3496), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52488] = 12, + [53198] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - ACTIONS(3138), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, - anon_sym_STAR, - ACTIONS(3144), 1, - sym_primitive_type, - STATE(1548), 1, - sym__type_declarator, - STATE(2005), 1, - sym_ms_based_modifier, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1607), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [52541] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3466), 1, - anon_sym_RBRACK, - STATE(824), 1, + ACTIONS(3498), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52610] = 5, + [53267] = 12, ACTIONS(3), 1, sym_comment, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(2633), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3468), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - ACTIONS(2631), 10, + ACTIONS(2103), 1, 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, + ACTIONS(3142), 1, sym_identifier, - [52649] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + ACTIONS(3144), 1, + anon_sym_LPAREN2, + ACTIONS(3146), 1, + anon_sym_STAR, + ACTIONS(3150), 1, sym_primitive_type, - ACTIONS(53), 1, - anon_sym_struct, - ACTIONS(55), 1, - anon_sym_union, - ACTIONS(2057), 1, - sym_identifier, - ACTIONS(3358), 1, - anon_sym_enum, - STATE(1310), 1, - sym__type_specifier, - STATE(1323), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1275), 2, + STATE(1579), 1, + sym__type_declarator, + STATE(2034), 1, + sym_ms_based_modifier, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_macro_type_specifier, + STATE(1652), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -117454,32 +120662,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52702] = 12, + [53320] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(2057), 1, + ACTIONS(3444), 1, sym_identifier, - STATE(1310), 1, + ACTIONS(3448), 1, + sym_primitive_type, + STATE(1401), 1, sym__type_specifier, - STATE(1323), 1, + STATE(1451), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1903), 4, + ACTIONS(3446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -117495,465 +120703,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [52755] = 20, + [53373] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2312), 1, + ACTIONS(2296), 1, anon_sym_RBRACK, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52824] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53442] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2348), 1, - anon_sym_RBRACK, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3500), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [52893] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(3136), 1, - sym_identifier, - ACTIONS(3138), 1, - anon_sym_LPAREN2, - ACTIONS(3140), 1, - anon_sym_STAR, - ACTIONS(3144), 1, - sym_primitive_type, - STATE(1542), 1, - sym__type_declarator, - STATE(2005), 1, - sym_ms_based_modifier, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(1607), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [52946] = 20, + [53511] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2342), 1, + ACTIONS(2278), 1, anon_sym_RBRACK, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3362), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3380), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3382), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53015] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3471), 1, - anon_sym_COLON, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53084] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53580] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3473), 1, + ACTIONS(3502), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53153] = 20, + [53649] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2542), 1, + ACTIONS(2340), 1, + anon_sym_RBRACK, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3475), 1, - anon_sym_RBRACK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53222] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53718] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3477), 1, - anon_sym_COLON, - STATE(824), 1, + ACTIONS(3504), 1, + anon_sym_RPAREN, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53291] = 20, + [53787] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3479), 1, - anon_sym_COLON, - STATE(824), 1, + ACTIONS(3506), 1, + anon_sym_RBRACK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53360] = 12, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53856] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(49), 1, + sym_primitive_type, ACTIONS(53), 1, anon_sym_struct, ACTIONS(55), 1, anon_sym_union, - ACTIONS(1905), 1, + ACTIONS(1917), 1, anon_sym_enum, - ACTIONS(3390), 1, + ACTIONS(2069), 1, sym_identifier, - ACTIONS(3394), 1, - sym_primitive_type, - STATE(1397), 1, + STATE(1349), 1, sym__type_specifier, - STATE(1415), 1, + STATE(1363), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3392), 4, + ACTIONS(1915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1083), 5, + STATE(1137), 5, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -117969,277 +121087,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53413] = 20, + [53909] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2360), 1, + anon_sym_RBRACK, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, + anon_sym_SLASH, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3414), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_PIPE, + ACTIONS(3418), 1, + anon_sym_CARET, + ACTIONS(3420), 1, + anon_sym_QMARK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3402), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [53978] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2326), 1, + anon_sym_RBRACK, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, + anon_sym_SLASH, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3414), 1, + anon_sym_AMP_AMP, + ACTIONS(3416), 1, + anon_sym_PIPE, + ACTIONS(3418), 1, + anon_sym_CARET, + ACTIONS(3420), 1, + anon_sym_QMARK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3396), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3400), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3402), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3404), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54047] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3481), 1, - anon_sym_COLON, - STATE(824), 1, + ACTIONS(3508), 1, + anon_sym_RBRACK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53482] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54116] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2294), 1, - anon_sym_RBRACK, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3510), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53551] = 20, + [54185] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2312), 1, + anon_sym_RBRACK, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3483), 1, - anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53620] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54254] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(2747), 1, + anon_sym_LPAREN2, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - ACTIONS(3485), 1, - anon_sym_COLON, - STATE(824), 1, + ACTIONS(3512), 1, + anon_sym_RBRACK, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53689] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54323] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3487), 1, + ACTIONS(3514), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53758] = 12, + [54392] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1538), 1, + STATE(1567), 1, sym__type_declarator, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, @@ -118255,417 +121471,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [53811] = 20, + [54445] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3489), 1, + ACTIONS(3516), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [53880] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2336), 1, - anon_sym_RBRACK, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, - anon_sym_LPAREN2, - ACTIONS(3364), 1, - anon_sym_SLASH, - ACTIONS(3366), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, - anon_sym_AMP_AMP, - ACTIONS(3370), 1, - anon_sym_PIPE, - ACTIONS(3372), 1, - anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, - anon_sym_QMARK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, + ACTIONS(2564), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [53949] = 20, + [54514] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3491), 1, + ACTIONS(3518), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54018] = 20, + [54583] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2292), 1, - anon_sym_RBRACK, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3374), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - STATE(824), 1, + ACTIONS(3520), 1, + anon_sym_COLON, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54087] = 20, + [54652] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + sym_primitive_type, + ACTIONS(53), 1, + anon_sym_struct, + ACTIONS(55), 1, + anon_sym_union, + ACTIONS(2069), 1, + sym_identifier, + ACTIONS(3392), 1, + anon_sym_enum, + STATE(1349), 1, + sym__type_specifier, + STATE(1363), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1340), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(1915), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1137), 5, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_macro_type_specifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [54705] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(3221), 1, + ACTIONS(3233), 1, anon_sym_SLASH, - ACTIONS(3231), 1, + ACTIONS(3239), 1, anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, + ACTIONS(3241), 1, anon_sym_AMP_AMP, - ACTIONS(3235), 1, + ACTIONS(3243), 1, anon_sym_PIPE, - ACTIONS(3237), 1, + ACTIONS(3245), 1, anon_sym_CARET, - ACTIONS(3239), 1, + ACTIONS(3247), 1, anon_sym_AMP, - ACTIONS(3241), 1, + ACTIONS(3257), 1, anon_sym_QMARK, - ACTIONS(3493), 1, + ACTIONS(3522), 1, anon_sym_COLON, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3231), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3223), 2, + ACTIONS(3249), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3225), 2, + ACTIONS(3251), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3227), 2, + ACTIONS(3253), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3229), 2, + ACTIONS(3255), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54156] = 20, + [54774] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3142), 1, + sym_identifier, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3495), 1, - anon_sym_COMMA, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, + ACTIONS(3146), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54225] = 20, + ACTIONS(3150), 1, + sym_primitive_type, + STATE(1570), 1, + sym__type_declarator, + STATE(2034), 1, + sym_ms_based_modifier, + STATE(1340), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3148), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1652), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [54827] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2310), 1, + ACTIONS(2320), 1, anon_sym_RBRACK, - ACTIONS(2542), 1, + ACTIONS(2560), 1, anon_sym_LBRACK, - ACTIONS(2735), 1, + ACTIONS(2747), 1, anon_sym_LPAREN2, - ACTIONS(3364), 1, + ACTIONS(3398), 1, anon_sym_SLASH, - ACTIONS(3366), 1, + ACTIONS(3410), 1, + anon_sym_AMP, + ACTIONS(3412), 1, anon_sym_PIPE_PIPE, - ACTIONS(3368), 1, + ACTIONS(3414), 1, anon_sym_AMP_AMP, - ACTIONS(3370), 1, + ACTIONS(3416), 1, anon_sym_PIPE, - ACTIONS(3372), 1, + ACTIONS(3418), 1, anon_sym_CARET, - ACTIONS(3374), 1, - anon_sym_AMP, - ACTIONS(3384), 1, + ACTIONS(3420), 1, anon_sym_QMARK, - STATE(824), 1, + STATE(829), 1, sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, + ACTIONS(2562), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(3360), 2, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3394), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3362), 2, + ACTIONS(3396), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3376), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3378), 2, + ACTIONS(3400), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3380), 2, + ACTIONS(3402), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3382), 2, + ACTIONS(3404), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [54294] = 20, + ACTIONS(3406), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [54896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3497), 1, + STATE(1340), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(2649), 6, anon_sym_COMMA, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54363] = 7, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3524), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + ACTIONS(2647), 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, + [54935] = 7, ACTIONS(3), 1, sym_comment, - STATE(1316), 1, + STATE(1356), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(3501), 2, + ACTIONS(3529), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3506), 2, + ACTIONS(3534), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(1302), 2, + STATE(1341), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3503), 3, + ACTIONS(3531), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(3499), 16, + ACTIONS(3527), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118682,12 +121867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54405] = 4, + [54977] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3509), 1, + ACTIONS(3537), 1, anon_sym_SEMI, - ACTIONS(2496), 7, + ACTIONS(2524), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -118695,7 +121880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2498), 18, + ACTIONS(2526), 18, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -118714,26 +121899,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT, anon_sym_DASH_GT, - [54441] = 8, + [55013] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3162), 1, + ACTIONS(3177), 1, anon_sym_LBRACE, - ACTIONS(3511), 1, + ACTIONS(3539), 1, anon_sym_COLON, - STATE(1085), 1, + STATE(1141), 1, sym_attribute_specifier, - STATE(1309), 1, + STATE(1347), 1, sym_enumerator_list, - ACTIONS(3157), 5, + ACTIONS(3172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(3155), 16, + ACTIONS(3170), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118750,25 +121935,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54485] = 7, + [55057] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(2560), 1, + anon_sym_LBRACK, + ACTIONS(3233), 1, + anon_sym_SLASH, + ACTIONS(3239), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3241), 1, + anon_sym_AMP_AMP, + ACTIONS(3243), 1, + anon_sym_PIPE, + ACTIONS(3245), 1, + anon_sym_CARET, + ACTIONS(3247), 1, + anon_sym_AMP, + ACTIONS(3257), 1, + anon_sym_QMARK, + STATE(829), 1, + sym_argument_list, + ACTIONS(2562), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(2564), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3229), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3231), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3249), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3251), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3253), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3255), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [55123] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(3162), 1, + ACTIONS(3177), 1, anon_sym_LBRACE, - STATE(1095), 1, + STATE(1126), 1, sym_attribute_specifier, - STATE(1307), 1, + STATE(1346), 1, sym_enumerator_list, - ACTIONS(3212), 6, + ACTIONS(3220), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3210), 16, + ACTIONS(3218), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118785,68 +122017,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54527] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(2542), 1, - anon_sym_LBRACK, - ACTIONS(3221), 1, - anon_sym_SLASH, - ACTIONS(3231), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3233), 1, - anon_sym_AMP_AMP, - ACTIONS(3235), 1, - anon_sym_PIPE, - ACTIONS(3237), 1, - anon_sym_CARET, - ACTIONS(3239), 1, - anon_sym_AMP, - ACTIONS(3241), 1, - anon_sym_QMARK, - STATE(824), 1, - sym_argument_list, - ACTIONS(2544), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(2585), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(3217), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3219), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3223), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3225), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3227), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3229), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [54593] = 5, + [55165] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1115), 1, + STATE(1112), 1, sym_attribute_specifier, - ACTIONS(3265), 6, + ACTIONS(3291), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3263), 16, + ACTIONS(3289), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118863,21 +122048,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54629] = 5, + [55201] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1101), 1, + STATE(1130), 1, sym_attribute_specifier, - ACTIONS(3278), 6, + ACTIONS(3319), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3276), 16, + ACTIONS(3317), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118894,21 +122079,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54665] = 5, + [55237] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - STATE(1096), 1, + STATE(1144), 1, sym_attribute_specifier, - ACTIONS(3309), 6, + ACTIONS(3312), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3307), 16, + ACTIONS(3310), 16, anon_sym___extension__, anon_sym___based, anon_sym_signed, @@ -118925,34 +122110,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54701] = 11, + [55273] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2362), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2871), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(1641), 1, + STATE(1679), 1, sym__abstract_declarator, - STATE(1644), 1, + STATE(1705), 1, sym_parameter_list, - STATE(1317), 2, + STATE(1351), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3513), 3, + ACTIONS(3541), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1645), 4, + STATE(1703), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3515), 8, + ACTIONS(3543), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118961,34 +122146,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54748] = 11, + [55320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3547), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3545), 21, + anon_sym___extension__, + anon_sym___based, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [55351] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2362), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2871), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(1643), 1, + STATE(1684), 1, sym__abstract_declarator, - STATE(1644), 1, + STATE(1705), 1, sym_parameter_list, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3314), 3, + ACTIONS(3549), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1645), 4, + STATE(1703), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3515), 8, + ACTIONS(3543), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -118997,34 +122210,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54795] = 11, + [55398] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2362), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2871), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(1639), 1, + STATE(1692), 1, sym__abstract_declarator, - STATE(1644), 1, + STATE(1705), 1, sym_parameter_list, - STATE(1314), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3517), 3, + ACTIONS(3308), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1645), 4, + STATE(1703), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3515), 8, + ACTIONS(3543), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -119033,25 +122246,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54842] = 3, + [55445] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3521), 2, + ACTIONS(47), 1, + anon_sym_const, + ACTIONS(2366), 1, anon_sym_LPAREN2, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(3519), 21, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(1691), 1, + sym__abstract_declarator, + STATE(1705), 1, + sym_parameter_list, + STATE(1355), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3551), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(1703), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + ACTIONS(3543), 8, anon_sym___extension__, - anon_sym___based, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -119059,36 +122282,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [54873] = 11, + [55492] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2362), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2871), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(1635), 1, + STATE(1671), 1, sym__abstract_declarator, - STATE(1644), 1, + STATE(1705), 1, sym_parameter_list, - STATE(1275), 2, + STATE(1352), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3523), 3, + ACTIONS(2881), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1645), 4, + STATE(1703), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3515), 8, + ACTIONS(3543), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -119097,34 +122318,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54920] = 11, + [55539] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(47), 1, anon_sym_const, - ACTIONS(2362), 1, + ACTIONS(2366), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(2368), 1, anon_sym_STAR, - ACTIONS(2871), 1, + ACTIONS(2887), 1, anon_sym_LBRACK, - STATE(1637), 1, + STATE(1665), 1, sym__abstract_declarator, - STATE(1644), 1, + STATE(1705), 1, sym_parameter_list, - STATE(1311), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(2865), 3, + ACTIONS(3553), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(1645), 4, + STATE(1703), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - ACTIONS(3515), 8, + ACTIONS(3543), 8, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -119133,13 +122354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [54967] = 3, + [55586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3527), 2, + ACTIONS(3557), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3525), 21, + ACTIONS(3555), 21, anon_sym___extension__, anon_sym___based, sym_ms_restrict_modifier, @@ -119161,35 +122382,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [54998] = 11, + [55617] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_const, - ACTIONS(2362), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(2364), 1, + ACTIONS(3344), 1, anon_sym_STAR, - ACTIONS(2871), 1, - anon_sym_LBRACK, - STATE(1624), 1, - sym__abstract_declarator, - STATE(1644), 1, - sym_parameter_list, - STATE(1275), 2, + STATE(1534), 1, + sym__declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3529), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(1645), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - ACTIONS(3515), 8, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + ACTIONS(47), 9, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -119197,25 +122416,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55045] = 10, + [55661] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1532), 1, + STATE(1561), 1, sym__field_declarator, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -119231,25 +122450,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55089] = 10, + [55705] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + STATE(1060), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2933), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(2937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3068), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_COLON, + ACTIONS(3065), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [55741] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1527), 1, + STATE(1552), 1, sym__field_declarator, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -119265,20 +122514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55133] = 5, + [55785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3561), 1, anon_sym_LPAREN2, - STATE(1374), 1, + STATE(1220), 1, sym_preproc_argument_list, - ACTIONS(3535), 5, + ACTIONS(3563), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3531), 15, + ACTIONS(3559), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -119294,60 +122543,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [55167] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1049), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2927), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(2931), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3068), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_COLON, - ACTIONS(3065), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55203] = 10, + [55819] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1484), 1, - sym__declarator, - STATE(1941), 1, + STATE(1549), 1, + sym__field_declarator, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, + STATE(1626), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, ACTIONS(47), 9, anon_sym___extension__, anon_sym_const, @@ -119358,28 +122577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55247] = 7, + [55863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3005), 1, + ACTIONS(3045), 1, sym_primitive_type, - ACTIONS(3537), 1, + ACTIONS(3565), 1, sym_identifier, - STATE(1321), 1, + STATE(1359), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3539), 4, + ACTIONS(3567), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2999), 6, + ACTIONS(3039), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_LBRACK, anon_sym_COLON, - ACTIONS(3001), 9, + ACTIONS(3041), 9, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -119389,25 +122608,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55285] = 10, + [55901] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1485), 1, + STATE(1531), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -119423,59 +122642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [55329] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(3320), 1, - sym_identifier, - ACTIONS(3322), 1, - anon_sym_LPAREN2, - ACTIONS(3324), 1, - anon_sym_STAR, - STATE(1534), 1, - sym__field_declarator, - STATE(2107), 1, - sym_ms_based_modifier, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(1589), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55373] = 10, + [55945] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1502), 1, + STATE(1528), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1275), 2, + STATE(1340), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -119487,50 +122672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [55417] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3541), 1, - anon_sym_COMMA, - ACTIONS(3543), 1, - anon_sym_RPAREN, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3551), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 1, - anon_sym_AMP_AMP, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - STATE(1812), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55472] = 10, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [55989] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -119555,7 +122701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1333), 7, + STATE(1369), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119563,46 +122709,152 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55515] = 16, + [56032] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3585), 1, anon_sym_COMMA, - ACTIONS(3549), 1, + ACTIONS(3587), 1, + anon_sym_RPAREN, + ACTIONS(3593), 1, anon_sym_SLASH, - ACTIONS(3551), 1, + ACTIONS(3595), 1, anon_sym_PIPE_PIPE, - ACTIONS(3553), 1, + ACTIONS(3597), 1, anon_sym_AMP_AMP, - ACTIONS(3555), 1, + ACTIONS(3599), 1, anon_sym_PIPE, - ACTIONS(3557), 1, + ACTIONS(3601), 1, anon_sym_CARET, - ACTIONS(3559), 1, + ACTIONS(3603), 1, anon_sym_AMP, + STATE(1821), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56087] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(3585), 1, + anon_sym_COMMA, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3613), 1, anon_sym_RPAREN, - STATE(1787), 1, + STATE(1841), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(3545), 2, + ACTIONS(3589), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56142] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 1, + anon_sym_COMMA, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3615), 1, + anon_sym_RPAREN, + STATE(1905), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3561), 2, + ACTIONS(3605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3563), 2, + ACTIONS(3607), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3565), 2, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [56197] = 5, + ACTIONS(3559), 1, + anon_sym_LF, + ACTIONS(3617), 1, + anon_sym_LPAREN2, + ACTIONS(3619), 1, + sym_comment, + STATE(1460), 1, + sym_preproc_argument_list, + ACTIONS(3563), 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, - ACTIONS(3567), 2, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [55570] = 10, + [56230] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -119611,9 +122863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3587), 1, + ACTIONS(3621), 1, anon_sym_RPAREN, - ACTIONS(3589), 1, + ACTIONS(3623), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -119627,7 +122879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1327), 7, + STATE(1368), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119635,7 +122887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55613] = 10, + [56273] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -119644,9 +122896,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3591), 1, + ACTIONS(3625), 1, anon_sym_RPAREN, - ACTIONS(3593), 1, + ACTIONS(3627), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -119660,7 +122912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1329), 7, + STATE(1367), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119668,97 +122920,119 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55656] = 5, - ACTIONS(3531), 1, - anon_sym_LF, - ACTIONS(3595), 1, - anon_sym_LPAREN2, - ACTIONS(3597), 1, + [56316] = 9, + ACTIONS(3), 1, sym_comment, - STATE(1431), 1, - sym_preproc_argument_list, - ACTIONS(3535), 18, + ACTIONS(3569), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3575), 1, + anon_sym_defined, + ACTIONS(3629), 1, + sym_number_literal, + ACTIONS(3577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3579), 2, 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, - [55689] = 16, + ACTIONS(3583), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1396), 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, + [56356] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_COMMA, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3551), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 1, - anon_sym_AMP_AMP, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3599), 1, - anon_sym_RPAREN, - STATE(1814), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(3545), 2, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3641), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1480), 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, + [56396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3647), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [55744] = 9, + STATE(1340), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3645), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [56428] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3611), 1, + ACTIONS(3649), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1433), 7, + STATE(1430), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119766,30 +123040,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55784] = 9, + [56468] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3615), 1, + ACTIONS(3651), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1410), 7, + STATE(1447), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119797,55 +123071,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55824] = 3, + [56508] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3619), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3617), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3569), 1, + sym_identifier, + ACTIONS(3573), 1, + anon_sym_LPAREN2, + ACTIONS(3575), 1, + anon_sym_defined, + ACTIONS(3653), 1, + sym_number_literal, + ACTIONS(3577), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3579), 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, - [55852] = 9, + ACTIONS(3583), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1408), 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, + [56548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3621), 1, + ACTIONS(3655), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1446), 7, + STATE(1479), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119853,65 +123133,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55892] = 13, + [56588] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2087), 1, - anon_sym_LPAREN2, - ACTIONS(2089), 1, - anon_sym_STAR, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(2871), 1, - anon_sym_LBRACK, - STATE(1585), 1, - sym__declarator, - STATE(1644), 1, - sym_parameter_list, - STATE(1651), 1, - sym__abstract_declarator, - STATE(1941), 1, - sym_ms_based_modifier, - ACTIONS(3623), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(1645), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [55940] = 9, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3657), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1445), 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, + [56628] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3625), 1, + ACTIONS(3659), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1437), 7, + STATE(1440), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119919,30 +123195,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [55980] = 9, + [56668] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3627), 1, + ACTIONS(3661), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1423), 7, + STATE(1472), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119950,7 +123226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56020] = 9, + [56708] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -119959,7 +123235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3629), 1, + ACTIONS(3663), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -119973,7 +123249,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1352), 7, + STATE(1403), 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, + [56748] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3665), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1443), 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, + [56788] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3667), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1441), 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, + [56828] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3669), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1444), 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, + [56868] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3671), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1474), 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, + [56908] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, + anon_sym_LPAREN2, + ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3673), 1, + sym_number_literal, + ACTIONS(3637), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(3639), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1459), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -119981,30 +123412,65 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56060] = 9, + [56948] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2099), 1, + anon_sym_LPAREN2, + ACTIONS(2101), 1, + anon_sym_STAR, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(2887), 1, + anon_sym_LBRACK, + STATE(1622), 1, + sym__declarator, + STATE(1704), 1, + sym__abstract_declarator, + STATE(1705), 1, + sym_parameter_list, + STATE(2088), 1, + sym_ms_based_modifier, + ACTIONS(3675), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(1703), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [56996] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3631), 1, + ACTIONS(3677), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1421), 7, + STATE(1448), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120012,30 +123478,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56100] = 9, + [57036] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3633), 1, + ACTIONS(3679), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1412), 7, + STATE(1450), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120043,30 +123509,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56140] = 9, + [57076] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, - anon_sym_defined, ACTIONS(3635), 1, + anon_sym_defined, + ACTIONS(3681), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1424), 7, + STATE(1453), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120074,55 +123540,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3639), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3637), 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, - [56208] = 9, + [57116] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3641), 1, + ACTIONS(3683), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1416), 7, + STATE(1426), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120130,97 +123571,57 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56248] = 14, + [57156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3551), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 1, - anon_sym_AMP_AMP, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3687), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3643), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [56298] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, + STATE(1375), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3685), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, sym_identifier, - ACTIONS(3603), 1, - anon_sym_LPAREN2, - ACTIONS(3605), 1, - anon_sym_defined, - ACTIONS(3645), 1, - sym_number_literal, - ACTIONS(3607), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3613), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1414), 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, - [56338] = 9, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [57188] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3647), 1, + ACTIONS(3689), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1409), 7, + STATE(1424), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120228,49 +123629,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56378] = 5, + [57228] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3593), 1, anon_sym_SLASH, - ACTIONS(3547), 2, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3651), 4, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(3607), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3649), 13, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3693), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3691), 7, 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, - [56410] = 3, + [57268] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3655), 5, + ACTIONS(3593), 1, anon_sym_SLASH, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3693), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3653), 15, + ACTIONS(3691), 9, 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, @@ -120278,18 +123689,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, - [56438] = 3, + [57304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3659), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3657), 15, + ACTIONS(3695), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120305,92 +123714,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56466] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3661), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1350), 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, - [56506] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3663), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1375), 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, - [56546] = 9, + [57332] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3665), 1, + ACTIONS(3699), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1383), 7, + STATE(1477), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120398,30 +123745,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56586] = 9, + [57372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3667), 1, + ACTIONS(3701), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1385), 7, + STATE(1478), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120429,16 +123776,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56626] = 5, + [57412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3671), 2, + ACTIONS(3705), 2, anon_sym_LPAREN2, anon_sym_STAR, - STATE(1396), 2, + STATE(1404), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3669), 7, + ACTIONS(3703), 7, anon_sym___based, anon_sym_signed, anon_sym_unsigned, @@ -120456,94 +123803,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Atomic, anon_sym__Noreturn, anon_sym_noreturn, - [56658] = 3, + [57444] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3675), 5, + ACTIONS(3593), 1, anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3673), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3589), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3591), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(3605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(3611), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [56686] = 9, + ACTIONS(3707), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [57494] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(3593), 1, + anon_sym_SLASH, ACTIONS(3601), 1, - sym_identifier, + anon_sym_CARET, ACTIONS(3603), 1, - anon_sym_LPAREN2, - ACTIONS(3605), 1, - anon_sym_defined, - ACTIONS(3677), 1, - sym_number_literal, - ACTIONS(3607), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3609), 2, + anon_sym_AMP, + ACTIONS(3693), 1, + anon_sym_PIPE, + ACTIONS(3589), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1401), 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, - [56726] = 9, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3691), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [57540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3711), 2, anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3679), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1386), 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, - [56766] = 9, + anon_sym_STAR, + STATE(1340), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3709), 7, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + ACTIONS(47), 9, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [57572] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -120552,7 +123909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3681), 1, + ACTIONS(3713), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -120566,7 +123923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1387), 7, + STATE(1432), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120574,16 +123931,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56806] = 3, + [57612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 5, + ACTIONS(3717), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(2470), 15, + ACTIONS(3715), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -120599,30 +123956,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [56834] = 9, + [57640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3573), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3575), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3683), 1, + ACTIONS(3719), 1, sym_number_literal, - ACTIONS(3577), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1388), 7, + STATE(1468), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120630,123 +123987,107 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [56874] = 9, + [57680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3685), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3723), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3721), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1390), 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, - [56914] = 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, + [57708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3687), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3727), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3725), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1391), 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, - [56954] = 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, + [57736] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3569), 1, - sym_identifier, - ACTIONS(3573), 1, - anon_sym_LPAREN2, - ACTIONS(3575), 1, - anon_sym_defined, - ACTIONS(3689), 1, - sym_number_literal, - ACTIONS(3577), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3579), 2, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3693), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3691), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3583), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1392), 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, - [56994] = 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [57768] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3691), 1, + ACTIONS(3729), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1403), 7, + STATE(1470), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120754,30 +124095,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57034] = 9, + [57808] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3693), 1, + ACTIONS(3731), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1428), 7, + STATE(1439), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120785,30 +124126,90 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57074] = 9, + [57848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3693), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3691), 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, + [57876] = 13, ACTIONS(3), 1, sym_comment, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, ACTIONS(3601), 1, - sym_identifier, + anon_sym_CARET, ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3691), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [57924] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + sym_identifier, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3695), 1, + ACTIONS(3733), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1402), 7, + STATE(1458), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120816,30 +124217,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57114] = 9, + [57964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3697), 1, + ACTIONS(3735), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1404), 7, + STATE(1471), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120847,30 +124248,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57154] = 9, + [58004] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3699), 1, + ACTIONS(3737), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1406), 7, + STATE(1410), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120878,30 +124279,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57194] = 9, + [58044] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3701), 1, + ACTIONS(3739), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1413), 7, + STATE(1481), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120909,30 +124310,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57234] = 9, + [58084] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3703), 1, + ACTIONS(3741), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1417), 7, + STATE(1455), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -120940,80 +124341,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3707), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3705), 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, - [57302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3651), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3649), 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, - [57330] = 9, + [58124] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3709), 1, + ACTIONS(3743), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1440), 7, + STATE(1446), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121021,7 +124372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57370] = 9, + [58164] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -121030,7 +124381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3711), 1, + ACTIONS(3745), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -121044,7 +124395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1347), 7, + STATE(1413), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121052,82 +124403,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3715), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3713), 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, - [57438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3719), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3717), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [57470] = 9, + [58204] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3721), 1, + ACTIONS(3747), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1419), 7, + STATE(1436), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121135,32 +124434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57510] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3725), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3723), 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, - [57538] = 9, + [58244] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -121169,7 +124443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3727), 1, + ACTIONS(3749), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -121183,73 +124457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1418), 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, - [57578] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3553), 1, - anon_sym_AMP_AMP, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3649), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [57626] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3601), 1, - sym_identifier, - ACTIONS(3603), 1, - anon_sym_LPAREN2, - ACTIONS(3605), 1, - anon_sym_defined, - ACTIONS(3729), 1, - sym_number_literal, - ACTIONS(3607), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(3609), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3613), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1426), 7, + STATE(1397), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121257,163 +124465,58 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57666] = 12, + [58284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3593), 1, anon_sym_SLASH, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3545), 2, + ACTIONS(3589), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3649), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57712] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3651), 1, + ACTIONS(3693), 4, anon_sym_PIPE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3649), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - [57758] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3559), 1, anon_sym_AMP, - ACTIONS(3651), 1, - anon_sym_PIPE, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3649), 5, + ACTIONS(3691), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, - [57802] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3567), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3651), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3649), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [57844] = 9, + [58318] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3731), 1, + ACTIONS(3751), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1420), 7, + STATE(1402), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121421,85 +124524,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [57884] = 9, + [58358] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(3593), 1, anon_sym_SLASH, - ACTIONS(3545), 2, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3693), 1, + anon_sym_PIPE, + ACTIONS(3589), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3591), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3563), 2, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3565), 2, + ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3567), 2, + ACTIONS(3611), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3651), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(3649), 7, + ACTIONS(3691), 5, 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, - [57924] = 7, + [58402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3549), 1, + ACTIONS(2528), 5, anon_sym_SLASH, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3651), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(3649), 9, + ACTIONS(2530), 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, - [57960] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3545), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(3651), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3649), 11, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -121509,30 +124582,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [57994] = 9, + [58430] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3569), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3573), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3733), 1, + ACTIONS(3753), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3577), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3579), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3583), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1407), 7, + STATE(1438), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121540,30 +124613,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58034] = 9, + [58470] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3735), 1, + ACTIONS(3755), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1405), 7, + STATE(1465), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121571,92 +124644,104 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58074] = 9, + [58510] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3693), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(3691), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [58552] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3737), 1, + ACTIONS(3757), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(1432), 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, - [58114] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3741), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - STATE(1275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3739), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [58146] = 5, + ACTIONS(3643), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(1464), 7, + sym__preproc_expression, + sym_preproc_parenthesized_expression, + sym_preproc_defined, + sym_preproc_unary_expression, + sym_preproc_call_expression, + sym_preproc_binary_expression, + sym_char_literal, + [58592] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3745), 2, - anon_sym_LPAREN2, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, anon_sym_STAR, - STATE(1379), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3743), 7, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(47), 9, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [58178] = 9, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3691), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [58638] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(3569), 1, @@ -121665,7 +124750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, ACTIONS(3575), 1, anon_sym_defined, - ACTIONS(3747), 1, + ACTIONS(3759), 1, sym_number_literal, ACTIONS(3577), 2, anon_sym_BANG, @@ -121679,7 +124764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1400), 7, + STATE(1414), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121687,30 +124772,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58218] = 9, + [58678] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3601), 1, + ACTIONS(3631), 1, sym_identifier, - ACTIONS(3603), 1, + ACTIONS(3633), 1, anon_sym_LPAREN2, - ACTIONS(3605), 1, + ACTIONS(3635), 1, anon_sym_defined, - ACTIONS(3749), 1, + ACTIONS(3761), 1, sym_number_literal, - ACTIONS(3607), 2, + ACTIONS(3637), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3609), 2, + ACTIONS(3639), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3613), 5, + ACTIONS(3643), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(1436), 7, + STATE(1435), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -121718,147 +124803,78 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [58258] = 14, - ACTIONS(3), 1, + [58718] = 7, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3551), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 1, - anon_sym_AMP_AMP, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3557), 1, - anon_sym_CARET, - ACTIONS(3559), 1, - anon_sym_AMP, - ACTIONS(3751), 1, - anon_sym_RPAREN, - ACTIONS(3545), 2, + ACTIONS(3691), 1, + anon_sym_LF, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3547), 2, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3765), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, + ACTIONS(3767), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [58307] = 12, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3753), 1, - anon_sym_LF, - ACTIONS(3759), 1, + anon_sym_LT, + ACTIONS(3693), 7, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [58352] = 8, - ACTIONS(3597), 1, + [58753] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3771), 1, anon_sym_LF, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(3651), 5, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, anon_sym_AMP_AMP, + ACTIONS(3777), 1, anon_sym_PIPE, + ACTIONS(3779), 1, anon_sym_CARET, + ACTIONS(3781), 1, anon_sym_AMP, - [58389] = 7, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3649), 1, - anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3773), 2, + ACTIONS(3769), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(3651), 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, - [58424] = 6, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3649), 1, + [58798] = 3, + ACTIONS(3348), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3346), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3651), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -121870,104 +124886,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58457] = 12, - ACTIONS(3597), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [58825] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3597), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3599), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3601), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3603), 1, anon_sym_AMP, - ACTIONS(3775), 1, - anon_sym_LF, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [58502] = 5, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3649), 1, - anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3785), 1, + anon_sym_RPAREN, + ACTIONS(3589), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(3757), 3, + ACTIONS(3591), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3651), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3605), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3607), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(3611), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [58533] = 12, - ACTIONS(3597), 1, + [58874] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3777), 1, + ACTIONS(3787), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58578] = 3, - ACTIONS(3597), 1, + [58919] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3617), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3619), 18, + ACTIONS(3693), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -121986,77 +124980,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58605] = 11, - ACTIONS(3597), 1, + [58946] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3763), 1, - anon_sym_PIPE, - ACTIONS(3765), 1, - anon_sym_CARET, - ACTIONS(3767), 1, - anon_sym_AMP, - ACTIONS(3651), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [58648] = 12, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3759), 1, + ACTIONS(3693), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3779), 1, - anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58693] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3637), 1, + [58991] = 3, + ACTIONS(3352), 1, anon_sym_LF, - ACTIONS(3639), 18, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3350), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122075,144 +125037,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58720] = 12, - ACTIONS(3597), 1, + [59018] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, - anon_sym_AMP, ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3789), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [58765] = 12, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_AMP_AMP, - ACTIONS(3763), 1, - anon_sym_PIPE, - ACTIONS(3765), 1, - anon_sym_CARET, - ACTIONS(3767), 1, - anon_sym_AMP, - ACTIONS(3783), 1, - anon_sym_LF, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, + ACTIONS(3783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58810] = 12, - ACTIONS(3597), 1, + [59063] = 11, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3651), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3755), 2, + ACTIONS(3693), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58855] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3785), 1, - sym_identifier, - ACTIONS(3791), 1, - sym_primitive_type, - STATE(1439), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2999), 2, - anon_sym_LPAREN2, - anon_sym_STAR, - ACTIONS(3788), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(3001), 10, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [58890] = 3, - ACTIONS(3597), 1, + [59106] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3651), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3693), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -122226,177 +125127,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [58917] = 12, - ACTIONS(3597), 1, + [59135] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3794), 1, + ACTIONS(3791), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [58962] = 14, - ACTIONS(3), 1, + [59180] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3549), 1, - anon_sym_SLASH, - ACTIONS(3551), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3553), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3555), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3557), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3559), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3796), 1, - anon_sym_RPAREN, - ACTIONS(3545), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3547), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(3561), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3563), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3565), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3567), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59011] = 10, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3649), 1, + ACTIONS(3793), 1, anon_sym_LF, - ACTIONS(3765), 1, - anon_sym_CARET, - ACTIONS(3767), 1, - anon_sym_AMP, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3651), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59052] = 12, - ACTIONS(3597), 1, + [59225] = 10, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_AMP_AMP, - ACTIONS(3763), 1, - anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3691), 1, + anon_sym_LF, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3798), 1, - anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59097] = 12, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3759), 1, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3693), 3, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3765), 1, - anon_sym_CARET, - ACTIONS(3767), 1, - anon_sym_AMP, - ACTIONS(3800), 1, - anon_sym_LF, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59142] = 3, - ACTIONS(2470), 1, - anon_sym_LF, - ACTIONS(3597), 1, + [59266] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(2468), 18, + ACTIONS(3715), 1, + anon_sym_LF, + ACTIONS(3717), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122415,70 +125248,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59169] = 12, - ACTIONS(3597), 1, + [59293] = 9, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_AMP_AMP, - ACTIONS(3763), 1, - anon_sym_PIPE, - ACTIONS(3765), 1, - anon_sym_CARET, - ACTIONS(3767), 1, - anon_sym_AMP, - ACTIONS(3802), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [59214] = 4, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3649), 1, - anon_sym_LF, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3651), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(3693), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59243] = 3, - ACTIONS(3597), 1, + [59332] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3713), 1, + ACTIONS(3795), 1, + sym_identifier, + ACTIONS(3801), 1, + sym_primitive_type, + STATE(1473), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3039), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3798), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(3041), 10, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [59367] = 3, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3725), 1, anon_sym_LF, - ACTIONS(3715), 18, + ACTIONS(3727), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122497,128 +125330,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59270] = 12, - ACTIONS(3597), 1, + [59394] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, ACTIONS(3804), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59315] = 5, - ACTIONS(3), 1, + [59439] = 3, + ACTIONS(2530), 1, + anon_sym_LF, + ACTIONS(3619), 1, sym_comment, - STATE(1438), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(2986), 2, - anon_sym_LPAREN2, + ACTIONS(2528), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(3806), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(2984), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59346] = 9, - ACTIONS(3597), 1, + 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, + [59466] = 8, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3649), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3767), 1, - anon_sym_AMP, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3651), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59385] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1964), 1, - anon_sym_STAR, - ACTIONS(3099), 1, - anon_sym_LPAREN2, - STATE(1435), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(3809), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(1951), 12, - anon_sym___extension__, - anon_sym___based, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - sym_primitive_type, - sym_identifier, - [59418] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3723), 1, + ACTIONS(3693), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [59503] = 3, + ACTIONS(3330), 1, anon_sym_LF, - ACTIONS(3725), 18, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3328), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122637,12 +125440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59445] = 3, - ACTIONS(3597), 1, + [59530] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(3695), 1, anon_sym_LF, - ACTIONS(3707), 18, + ACTIONS(3697), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122661,78 +125464,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59472] = 12, - ACTIONS(3597), 1, + [59557] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3812), 1, + ACTIONS(3806), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59517] = 12, - ACTIONS(3597), 1, + [59602] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3814), 1, + ACTIONS(3808), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59562] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3653), 1, + [59647] = 3, + ACTIONS(3334), 1, anon_sym_LF, - ACTIONS(3655), 18, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3332), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -122751,12 +125554,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [59589] = 5, + [59674] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1060), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(2994), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + ACTIONS(3810), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(2992), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [59705] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1979), 1, + anon_sym_STAR, + ACTIONS(3087), 1, + anon_sym_LPAREN2, + STATE(1469), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(3813), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(1963), 12, + anon_sym___extension__, + anon_sym___based, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + sym_primitive_type, + sym_identifier, + [59738] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1461), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(2980), 2, + ACTIONS(3028), 2, anon_sym_LPAREN2, anon_sym_STAR, ACTIONS(3816), 4, @@ -122764,7 +125620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(2978), 12, + ACTIONS(3026), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122777,17 +125633,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59620] = 3, - ACTIONS(3597), 1, + [59769] = 6, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3657), 1, + ACTIONS(3691), 1, anon_sym_LF, - ACTIONS(3659), 18, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3693), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -122799,55 +125660,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [59647] = 12, - ACTIONS(3597), 1, + [59802] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3691), 1, + anon_sym_LF, + ACTIONS(3763), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3693), 13, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, anon_sym_PIPE, - ACTIONS(3765), 1, anon_sym_CARET, - ACTIONS(3767), 1, anon_sym_AMP, - ACTIONS(3819), 1, - anon_sym_LF, - ACTIONS(3755), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(3769), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3773), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3757), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3771), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59692] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [59833] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1475), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3009), 2, + ACTIONS(3002), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3821), 4, + ACTIONS(3819), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3007), 12, + ACTIONS(3000), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122860,20 +125712,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59723] = 5, + [59864] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1060), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3068), 2, + ACTIONS(3034), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3824), 4, + ACTIONS(3822), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3065), 12, + ACTIONS(3032), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122886,53 +125738,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59754] = 12, - ACTIONS(3597), 1, + [59895] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3828), 1, + ACTIONS(3825), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3773), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59799] = 5, + [59940] = 5, ACTIONS(3), 1, sym_comment, - STATE(1444), 1, + STATE(1060), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3095), 2, + ACTIONS(2988), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3830), 4, + ACTIONS(3827), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3093), 12, + ACTIONS(2986), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122945,44 +125797,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59830] = 3, - ACTIONS(3597), 1, + [59971] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3673), 1, + ACTIONS(3773), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, + anon_sym_AMP_AMP, + ACTIONS(3777), 1, + anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_CARET, + ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3830), 1, anon_sym_LF, - ACTIONS(3675), 18, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3767), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60016] = 12, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, anon_sym_AMP_AMP, + ACTIONS(3777), 1, anon_sym_PIPE, + ACTIONS(3779), 1, anon_sym_CARET, + ACTIONS(3781), 1, anon_sym_AMP, + ACTIONS(3832), 1, + anon_sym_LF, + ACTIONS(3763), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + [60061] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3593), 1, + anon_sym_SLASH, + ACTIONS(3595), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3597), 1, + anon_sym_AMP_AMP, + ACTIONS(3599), 1, + anon_sym_PIPE, + ACTIONS(3601), 1, + anon_sym_CARET, + ACTIONS(3603), 1, + anon_sym_AMP, + ACTIONS(3834), 1, + anon_sym_RPAREN, + ACTIONS(3589), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3591), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(3605), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3607), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3609), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3611), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [59857] = 5, + [60110] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1060), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3021), 2, + ACTIONS(3068), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3833), 4, + ACTIONS(3836), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3019), 12, + ACTIONS(3065), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -122995,20 +125924,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59888] = 5, + [60141] = 12, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3773), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, + anon_sym_AMP_AMP, + ACTIONS(3777), 1, + anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_CARET, + ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3840), 1, + anon_sym_LF, + ACTIONS(3763), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60186] = 5, ACTIONS(3), 1, sym_comment, - STATE(1049), 1, + STATE(1060), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3091), 2, + ACTIONS(3012), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3836), 4, + ACTIONS(3842), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3089), 12, + ACTIONS(3010), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123021,20 +125983,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59919] = 5, + [60217] = 5, ACTIONS(3), 1, sym_comment, - STATE(1443), 1, + STATE(1467), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(3073), 2, + ACTIONS(3049), 2, anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(3839), 4, + ACTIONS(3845), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(3071), 12, + ACTIONS(3047), 12, anon_sym___extension__, anon_sym___based, anon_sym_const, @@ -123047,1031 +126009,983 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noreturn, sym_primitive_type, sym_identifier, - [59950] = 12, - ACTIONS(3597), 1, + [60248] = 12, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3759), 1, + ACTIONS(3773), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3775), 1, + anon_sym_AMP_AMP, + ACTIONS(3777), 1, + anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_CARET, + ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3848), 1, + anon_sym_LF, + ACTIONS(3763), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60293] = 12, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3773), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, + anon_sym_AMP_AMP, + ACTIONS(3777), 1, + anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_CARET, + ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3850), 1, + anon_sym_LF, + ACTIONS(3763), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60338] = 12, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3773), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, anon_sym_AMP_AMP, - ACTIONS(3763), 1, + ACTIONS(3777), 1, anon_sym_PIPE, - ACTIONS(3765), 1, + ACTIONS(3779), 1, anon_sym_CARET, - ACTIONS(3767), 1, + ACTIONS(3781), 1, anon_sym_AMP, - ACTIONS(3842), 1, + ACTIONS(3852), 1, anon_sym_LF, - ACTIONS(3755), 2, + ACTIONS(3763), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(3769), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3783), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3773), 2, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60383] = 12, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3773), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3775), 1, + anon_sym_AMP_AMP, + ACTIONS(3777), 1, + anon_sym_PIPE, + ACTIONS(3779), 1, + anon_sym_CARET, + ACTIONS(3781), 1, + anon_sym_AMP, + ACTIONS(3854), 1, + anon_sym_LF, + ACTIONS(3763), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(3769), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3757), 3, + ACTIONS(3783), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3765), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3767), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [60428] = 3, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(3721), 1, + anon_sym_LF, + ACTIONS(3723), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3771), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [59995] = 11, + anon_sym_LT_LT, + anon_sym_GT_GT, + [60455] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1728), 1, + STATE(1730), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60036] = 11, + [60496] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1703), 1, + STATE(1776), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60077] = 11, + [60537] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1721), 1, + STATE(1768), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60118] = 11, + [60578] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1697), 1, + STATE(1721), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60159] = 11, + [60619] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1709), 1, + STATE(1744), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60200] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_const, - ACTIONS(3162), 1, - anon_sym_LBRACE, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(3846), 1, - anon_sym_COLON, - STATE(1085), 1, - sym_attribute_specifier, - STATE(1309), 1, - sym_enumerator_list, - ACTIONS(3157), 11, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - [60235] = 11, + [60660] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1713), 1, + STATE(1731), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60276] = 11, + [60701] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1667), 1, + STATE(1757), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60317] = 11, + [60742] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3170), 1, + anon_sym_const, + ACTIONS(3177), 1, + anon_sym_LBRACE, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(3858), 1, + anon_sym_COLON, + STATE(1141), 1, + sym_attribute_specifier, + STATE(1347), 1, + sym_enumerator_list, + ACTIONS(3172), 11, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + [60777] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1669), 1, + STATE(1774), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60358] = 11, + [60818] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1691), 1, + STATE(1751), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60399] = 11, + [60859] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1549), 1, + STATE(1565), 1, sym__type_declarator, - STATE(1700), 1, + STATE(1733), 1, sym__type_definition_declarators, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, - anon_sym_short, - STATE(1607), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_pointer_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - [60440] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - STATE(225), 1, - sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60488] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - STATE(385), 1, - sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60536] = 10, + anon_sym_short, + STATE(1652), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_pointer_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + [60900] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1554), 1, + STATE(1655), 1, sym__type_declarator, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60574] = 15, + [60938] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3861), 1, + sym_identifier, + ACTIONS(3867), 1, anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - STATE(433), 1, - sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, + STATE(1498), 1, sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, + STATE(1546), 1, + sym_attribute_specifier, + STATE(1638), 1, + aux_sym_type_definition_repeat1, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60622] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, + ACTIONS(3863), 2, anon_sym_COMMA, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, + STATE(1497), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3865), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(153), 1, - sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, + [60978] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3861), 1, + sym_identifier, + ACTIONS(3867), 1, + anon_sym_LBRACK, + STATE(1508), 1, sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, + ACTIONS(89), 2, anon_sym_asm, anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60670] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, + STATE(1497), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3865), 7, anon_sym_COMMA, - ACTIONS(3851), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - STATE(461), 1, - sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60718] = 10, + [61012] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3136), 1, + ACTIONS(3142), 1, sym_identifier, - ACTIONS(3138), 1, + ACTIONS(3144), 1, anon_sym_LPAREN2, - ACTIONS(3140), 1, + ACTIONS(3146), 1, anon_sym_STAR, - ACTIONS(3144), 1, + ACTIONS(3150), 1, sym_primitive_type, - STATE(1602), 1, + STATE(1588), 1, sym__type_declarator, - STATE(2005), 1, + STATE(2034), 1, sym_ms_based_modifier, - ACTIONS(3142), 4, + ACTIONS(3148), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1607), 5, + STATE(1652), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_pointer_type_declarator, sym_function_type_declarator, sym_array_type_declarator, - [60756] = 12, + [61050] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3861), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3871), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1510), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3869), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3324), 1, - anon_sym_STAR, - ACTIONS(3861), 1, anon_sym_SEMI, - STATE(1511), 1, - sym__field_declarator, - STATE(1793), 1, - sym__field_declaration_declarator, - STATE(2071), 1, - sym_attribute_specifier, - STATE(2107), 1, - sym_ms_based_modifier, - STATE(1589), 5, - sym_parenthesized_field_declarator, - sym_attributed_field_declarator, - sym_pointer_field_declarator, - sym_function_field_declarator, - sym_array_field_declarator, - [60797] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, anon_sym_EQ, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - STATE(153), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60842] = 14, + [61079] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3861), 1, + sym_identifier, + ACTIONS(3871), 1, + anon_sym_LBRACK, + STATE(1546), 1, + sym_attribute_specifier, + STATE(1649), 1, + aux_sym_type_definition_repeat1, + ACTIONS(3873), 2, anon_sym_COMMA, - ACTIONS(3853), 1, anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - STATE(385), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, + ACTIONS(3875), 2, anon_sym_asm, anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [60887] = 12, + STATE(1511), 2, + sym_preproc_call_expression, + aux_sym_function_declarator_repeat1, + ACTIONS(3869), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [61116] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - ACTIONS(3865), 1, + ACTIONS(3877), 1, anon_sym_SEMI, - STATE(1511), 1, + STATE(1540), 1, sym__field_declarator, - STATE(1780), 1, + STATE(1887), 1, sym__field_declaration_declarator, - STATE(1964), 1, - sym_attribute_specifier, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1589), 5, + STATE(2197), 1, + sym_attribute_specifier, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [60928] = 11, + [61157] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, + anon_sym_LPAREN2, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(825), 1, + sym__old_style_function_declarator, + STATE(1575), 1, + sym_function_declarator, + STATE(1580), 1, + sym__declarator, + STATE(1675), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1860), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61200] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3869), 1, + ACTIONS(3883), 1, aux_sym_preproc_if_token2, - ACTIONS(3871), 1, + ACTIONS(3885), 1, aux_sym_preproc_else_token1, - ACTIONS(3873), 1, + ACTIONS(3887), 1, aux_sym_preproc_elif_token1, - STATE(1517), 1, + STATE(1558), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1528), 1, + STATE(1560), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1599), 1, + STATE(1637), 1, sym_enumerator, - ACTIONS(3875), 2, + ACTIONS(3889), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2122), 3, + STATE(2205), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - STATE(2123), 3, + STATE(2207), 3, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, sym_preproc_elifdef_in_enumerator_list_no_comma, - [60967] = 14, + [61239] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - ACTIONS(3863), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, anon_sym_LPAREN2, - STATE(433), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61012] = 12, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(846), 1, + sym__old_style_function_declarator, + STATE(1572), 1, + sym__declarator, + STATE(1575), 1, + sym_function_declarator, + STATE(1664), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1815), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61282] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - ACTIONS(3877), 1, + ACTIONS(3891), 1, anon_sym_SEMI, - STATE(1511), 1, + STATE(1540), 1, sym__field_declarator, - STATE(1790), 1, + STATE(1830), 1, sym__field_declaration_declarator, - STATE(2106), 1, + STATE(2118), 1, sym_attribute_specifier, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [61053] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - STATE(461), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61098] = 14, + [61323] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, - anon_sym_LBRACE, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - ACTIONS(3863), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, anon_sym_LPAREN2, - STATE(225), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61143] = 12, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(848), 1, + sym__old_style_function_declarator, + STATE(1575), 1, + sym_function_declarator, + STATE(1576), 1, + sym__declarator, + STATE(1690), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1786), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61366] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(33), 1, anon_sym___attribute__, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - ACTIONS(3879), 1, + ACTIONS(3893), 1, anon_sym_SEMI, - STATE(1511), 1, + STATE(1540), 1, sym__field_declarator, - STATE(1781), 1, + STATE(1834), 1, sym__field_declaration_declarator, - STATE(2018), 1, + STATE(2106), 1, sym_attribute_specifier, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [61184] = 11, + [61407] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(817), 1, - sym__old_style_function_declarator, - STATE(1459), 1, - sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(2090), 1, - sym__declaration_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61222] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3879), 1, sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(816), 1, + STATE(851), 1, sym__old_style_function_declarator, - STATE(1461), 1, + STATE(1573), 1, sym__declarator, - STATE(1758), 1, + STATE(1575), 1, + sym_function_declarator, + STATE(1670), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1881), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1979), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61260] = 11, + [61450] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(822), 1, - sym__old_style_function_declarator, - STATE(1463), 1, - sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1937), 1, - sym__declaration_declarator, - STATE(1941), 1, + ACTIONS(3895), 1, + anon_sym_SEMI, + STATE(1540), 1, + sym__field_declarator, + STATE(1888), 1, + sym__field_declaration_declarator, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61298] = 5, + STATE(2175), 1, + sym_attribute_specifier, + STATE(1626), 5, + sym_parenthesized_field_declarator, + sym_attributed_field_declarator, + sym_pointer_field_declarator, + sym_function_field_declarator, + sym_array_field_declarator, + [61491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3886), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3861), 1, + sym_identifier, + ACTIONS(3871), 3, anon_sym_LBRACK, - STATE(1478), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3881), 10, + anon_sym_asm, + anon_sym___asm__, + STATE(1511), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3869), 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, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [61324] = 11, + [61520] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(808), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(822), 1, sym__old_style_function_declarator, - STATE(1458), 1, + STATE(1571), 1, sym__declarator, - STATE(1758), 1, + STATE(1575), 1, + sym_function_declarator, + STATE(1668), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1853), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1969), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61362] = 7, + [61563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3897), 1, + sym_identifier, + ACTIONS(3902), 1, anon_sym___attribute__, - ACTIONS(3890), 1, + ACTIONS(3905), 3, anon_sym_LBRACK, - STATE(1482), 1, - sym_gnu_asm_expression, - ACTIONS(3859), 2, anon_sym_asm, anon_sym___asm__, - STATE(1496), 2, + STATE(1510), 3, + sym_preproc_call_expression, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3888), 7, + aux_sym_function_declarator_repeat1, + ACTIONS(3900), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124079,377 +126993,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [61392] = 11, + [61592] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(3861), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3909), 3, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + STATE(1510), 3, + sym_preproc_call_expression, + sym_attribute_specifier, + aux_sym_function_declarator_repeat1, + ACTIONS(3907), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + [61621] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(803), 1, - sym__old_style_function_declarator, - STATE(1462), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1593), 1, sym__declarator, - STATE(1758), 1, + STATE(1690), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1786), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(2029), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, + sym_array_declarator, + [61661] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, + anon_sym_LPAREN2, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, sym_function_declarator, + STATE(1640), 1, + sym__declarator, + STATE(1664), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1815), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, sym_array_declarator, - [61430] = 5, + [61701] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(3894), 1, - anon_sym_LBRACK, - STATE(1489), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3892), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61455] = 7, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, + sym__declarator, + STATE(1675), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1860), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, + ACTIONS(3913), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3916), 1, anon_sym_LBRACK, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1507), 2, + STATE(1515), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3896), 7, + ACTIONS(3911), 10, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, anon_sym_asm, anon_sym___asm__, - [61484] = 7, + [61767] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3898), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61513] = 7, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, + sym__declarator, + STATE(1656), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1870), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61807] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(3342), 1, anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3900), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61542] = 10, + ACTIONS(3344), 1, + anon_sym_STAR, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1598), 1, + sym__declarator, + STATE(1670), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1881), 1, + sym_init_declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1584), 4, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_array_declarator, + [61847] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1472), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1937), 1, + STATE(1681), 1, sym__declaration_declarator, - STATE(1941), 1, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1907), 1, + sym_init_declarator, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61577] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(3853), 1, - anon_sym_SEMI, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - STATE(1480), 1, - sym_parameter_list, - STATE(1818), 1, - sym_gnu_asm_expression, - STATE(1824), 1, - aux_sym__declaration_declarator_repeat1, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [61616] = 10, + [61887] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1487), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, sym__declarator, - STATE(1758), 1, + STATE(1668), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1853), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1969), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(3904), 1, - anon_sym_LBRACK, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3902), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [61676] = 10, + [61927] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1487), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, sym__declarator, - STATE(1758), 1, + STATE(1690), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1786), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1979), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61711] = 10, + [61967] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1473), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1601), 1, sym__declarator, - STATE(1758), 1, + STATE(1664), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1815), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1969), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61746] = 10, + [62007] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1487), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1586), 1, sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1930), 1, + STATE(1675), 1, sym__declaration_declarator, - STATE(1941), 1, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1860), 1, + sym_init_declarator, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61781] = 10, + [62047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1466), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, sym__declarator, - STATE(1758), 1, + STATE(1670), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1881), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(2029), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61816] = 10, + [62087] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1470), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1591), 1, sym__declarator, - STATE(1758), 1, + STATE(1668), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1853), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1979), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61851] = 10, + [62127] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1487), 1, + ACTIONS(3879), 1, + sym_identifier, + STATE(1575), 1, + sym_function_declarator, + STATE(1640), 1, sym__declarator, - STATE(1758), 1, + STATE(1696), 1, + sym__declaration_declarator, + STATE(1778), 1, + sym__function_declaration_declarator, + STATE(1954), 1, sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1984), 1, - sym__declaration_declarator, - STATE(1543), 5, + STATE(1584), 4, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, - sym_function_declarator, sym_array_declarator, - [61886] = 5, + [62167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3918), 5, anon_sym___attribute__, - ACTIONS(3894), 1, anon_sym_LBRACK, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3892), 9, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3920), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [62188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(2892), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124457,142 +127436,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_COLON, + [62209] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3922), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [61911] = 9, + [62238] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3906), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(3908), 1, + ACTIONS(3930), 1, aux_sym_preproc_if_token1, - ACTIONS(3912), 1, + ACTIONS(3934), 1, anon_sym_RBRACE, - ACTIONS(3910), 2, + ACTIONS(3932), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1874), 2, + STATE(1916), 2, sym_preproc_call, sym_enumerator, - STATE(2105), 2, + STATE(2282), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1531), 3, + STATE(1535), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [61944] = 10, + [62271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2861), 5, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_asm, + anon_sym___asm__, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(2854), 8, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1467), 1, - sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(2090), 1, - sym__declaration_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [61979] = 10, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COLON, + [62292] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1487), 1, - sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1937), 1, - sym__declaration_declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62014] = 10, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3936), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3561), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1487), 1, - sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(2029), 1, - sym__declaration_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62049] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3916), 1, + STATE(1220), 1, + sym_preproc_argument_list, + ACTIONS(3938), 5, anon_sym___attribute__, - ACTIONS(3919), 1, anon_sym_LBRACK, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(3914), 9, + anon_sym_asm, + anon_sym___asm__, + sym_identifier, + ACTIONS(3940), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [62074] = 7, + [62346] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - STATE(1480), 1, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1495), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3921), 7, + ACTIONS(3942), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -124600,112 +127565,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62103] = 10, + [62375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1487), 1, - sym__declarator, - STATE(1758), 1, - sym_init_declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(2090), 1, - sym__declaration_declarator, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62138] = 9, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3944), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [62404] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(3906), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(3908), 1, + ACTIONS(3930), 1, aux_sym_preproc_if_token1, - ACTIONS(3923), 1, + ACTIONS(3946), 1, anon_sym_RBRACE, - ACTIONS(3910), 2, + ACTIONS(3932), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(1917), 2, + STATE(1969), 2, sym_preproc_call, sym_enumerator, - STATE(2025), 2, + STATE(2111), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(1497), 3, + STATE(1563), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [62171] = 9, + [62437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(828), 1, + STATE(841), 1, sym__old_style_function_declarator, - STATE(1559), 1, + STATE(1592), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62203] = 9, + [62469] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(810), 1, + STATE(844), 1, sym__old_style_function_declarator, - STATE(1555), 1, + STATE(1597), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62235] = 5, + [62501] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3927), 1, + ACTIONS(3950), 1, anon_sym_LBRACK, - STATE(1478), 2, + STATE(1515), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3925), 8, + ACTIONS(3948), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -124714,633 +127676,592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [62259] = 9, + [62525] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(797), 1, + STATE(838), 1, sym__old_style_function_declarator, - STATE(1564), 1, + STATE(1600), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62291] = 9, + [62557] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3952), 1, + anon_sym_COMMA, + ACTIONS(3956), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + anon_sym_COLON, + STATE(1613), 1, + sym_parameter_list, + STATE(1752), 1, + sym_bitfield_clause, + STATE(1754), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(3954), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(1564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [62593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(829), 1, + STATE(834), 1, sym__old_style_function_declarator, - STATE(1560), 1, + STATE(1587), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 1, - anon_sym_LBRACK, - ACTIONS(2883), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [62343] = 11, + [62625] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3929), 1, - anon_sym_COMMA, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1594), 1, - sym_parameter_list, - STATE(1672), 1, - aux_sym__field_declaration_declarator_repeat1, - STATE(1677), 1, - sym_bitfield_clause, - ACTIONS(3931), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1550), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [62379] = 9, + ACTIONS(3344), 1, + anon_sym_STAR, + STATE(826), 1, + sym__old_style_function_declarator, + STATE(1596), 1, + sym__declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [62657] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1513), 1, + STATE(1636), 1, sym__declarator, - STATE(1853), 1, - sym_init_declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62411] = 10, + [62686] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3857), 1, - anon_sym_EQ, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - STATE(1480), 1, + ACTIONS(3956), 1, + anon_sym_LBRACK, + STATE(1613), 1, sym_parameter_list, - STATE(1881), 1, - sym_gnu_asm_expression, - ACTIONS(3859), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(3937), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(1507), 2, + STATE(1564), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [62445] = 9, + ACTIONS(3960), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [62713] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(804), 1, - sym__old_style_function_declarator, - STATE(1551), 1, + STATE(1617), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62477] = 3, + [62742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2857), 1, + ACTIONS(3964), 1, + anon_sym___attribute__, + ACTIONS(3938), 2, anon_sym_LBRACK, - ACTIONS(2849), 11, + sym_identifier, + ACTIONS(3962), 2, 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, + ACTIONS(3967), 2, anon_sym_asm, anon_sym___asm__, - [62497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3941), 1, - anon_sym_LBRACK, - ACTIONS(3939), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3940), 4, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_COLON, - anon_sym_asm, - anon_sym___asm__, - [62517] = 9, + [62767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3885), 1, + aux_sym_preproc_else_token1, + ACTIONS(3969), 1, sym_identifier, - ACTIONS(3943), 1, + ACTIONS(3971), 1, aux_sym_preproc_if_token2, - ACTIONS(3945), 1, - aux_sym_preproc_else_token1, - ACTIONS(3947), 1, + ACTIONS(3973), 1, aux_sym_preproc_elif_token1, - STATE(1590), 1, + STATE(1606), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1623), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2150), 1, + STATE(1693), 1, sym_enumerator, - ACTIONS(3949), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(2149), 3, + STATE(2188), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + STATE(2248), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [62548] = 8, + [62800] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(3885), 1, + aux_sym_preproc_else_token1, + ACTIONS(3969), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3973), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3975), 1, + aux_sym_preproc_if_token2, + STATE(1607), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(1608), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(1693), 1, + sym_enumerator, + STATE(2195), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + STATE(2297), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [62833] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1581), 1, - sym__declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [62577] = 8, + ACTIONS(3956), 1, + anon_sym_LBRACK, + STATE(1613), 1, + sym_parameter_list, + STATE(1564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3977), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [62860] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1598), 1, + STATE(1654), 1, sym__field_declarator, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [62606] = 9, + [62889] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(3945), 1, + ACTIONS(3979), 1, + aux_sym_preproc_if_token2, + ACTIONS(3981), 1, aux_sym_preproc_else_token1, - ACTIONS(3947), 1, + ACTIONS(3983), 1, aux_sym_preproc_elif_token1, - ACTIONS(3951), 1, - aux_sym_preproc_if_token2, - STATE(1517), 1, + STATE(1558), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2150), 1, + STATE(2267), 1, sym_enumerator, - ACTIONS(3949), 2, + ACTIONS(3985), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(2122), 3, + STATE(2205), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [62637] = 8, + [62920] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3956), 1, + anon_sym_LBRACK, + STATE(1613), 1, + sym_parameter_list, + STATE(1564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3987), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + [62947] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1595), 1, + STATE(1609), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62666] = 7, + [62976] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(2103), 1, + anon_sym___based, + ACTIONS(2879), 1, + sym_identifier, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, - anon_sym_LBRACK, - STATE(1594), 1, - sym_parameter_list, - STATE(1550), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3953), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - [62693] = 8, + ACTIONS(3344), 1, + anon_sym_STAR, + STATE(1632), 1, + sym__declarator, + STATE(2088), 1, + sym_ms_based_modifier, + STATE(1575), 5, + sym_parenthesized_declarator, + sym_attributed_declarator, + sym_pointer_declarator, + sym_function_declarator, + sym_array_declarator, + [63005] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1569), 1, + STATE(1624), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62722] = 8, + [63034] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3956), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + anon_sym_COLON, + STATE(1613), 1, + sym_parameter_list, + STATE(1837), 1, + sym_bitfield_clause, + STATE(1564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(3989), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [63065] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(3320), 1, + ACTIONS(3336), 1, sym_identifier, - ACTIONS(3322), 1, + ACTIONS(3338), 1, anon_sym_LPAREN2, - ACTIONS(3324), 1, + ACTIONS(3340), 1, anon_sym_STAR, - STATE(1526), 1, + STATE(1556), 1, sym__field_declarator, - STATE(2107), 1, + STATE(2119), 1, sym_ms_based_modifier, - STATE(1589), 5, + STATE(1626), 5, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, sym_function_field_declarator, sym_array_field_declarator, - [62751] = 8, + [63094] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3981), 1, + aux_sym_preproc_else_token1, + ACTIONS(3983), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3991), 1, + aux_sym_preproc_if_token2, + STATE(1610), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2267), 1, + sym_enumerator, + ACTIONS(3985), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(2268), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [63125] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2091), 1, + ACTIONS(2103), 1, anon_sym___based, - ACTIONS(2863), 1, + ACTIONS(2879), 1, sym_identifier, - ACTIONS(3316), 1, + ACTIONS(3342), 1, anon_sym_LPAREN2, - ACTIONS(3318), 1, + ACTIONS(3344), 1, anon_sym_STAR, - STATE(1582), 1, + STATE(1615), 1, sym__declarator, - STATE(1941), 1, + STATE(2088), 1, sym_ms_based_modifier, - STATE(1543), 5, + STATE(1575), 5, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, sym_function_declarator, sym_array_declarator, - [62780] = 9, + [63154] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(3933), 1, - anon_sym_LBRACK, - ACTIONS(3935), 1, - anon_sym_COLON, - STATE(1594), 1, - sym_parameter_list, - STATE(1798), 1, - sym_bitfield_clause, - STATE(1550), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3955), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [62811] = 7, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3993), 1, + aux_sym_preproc_if_token2, + ACTIONS(3995), 1, + aux_sym_preproc_else_token1, + ACTIONS(3997), 1, + aux_sym_preproc_elif_token1, + ACTIONS(3999), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(1611), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2263), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + [63183] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3956), 1, anon_sym_LBRACK, - STATE(1594), 1, + STATE(1613), 1, sym_parameter_list, - STATE(1550), 2, + STATE(1564), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3957), 5, + ACTIONS(4001), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62838] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3867), 1, - sym_identifier, - ACTIONS(3959), 1, - aux_sym_preproc_if_token2, - ACTIONS(3961), 1, - aux_sym_preproc_else_token1, - ACTIONS(3963), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3965), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(1596), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2129), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - [62867] = 10, + [63210] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(3885), 1, aux_sym_preproc_else_token1, - ACTIONS(3967), 1, - sym_identifier, ACTIONS(3969), 1, - aux_sym_preproc_if_token2, - ACTIONS(3971), 1, + sym_identifier, + ACTIONS(3973), 1, aux_sym_preproc_elif_token1, - STATE(1568), 1, + ACTIONS(4003), 1, + aux_sym_preproc_if_token2, + STATE(1628), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1593), 1, + STATE(1629), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1661), 1, + STATE(1693), 1, sym_enumerator, - STATE(2144), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(2146), 2, + STATE(2117), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [62900] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(3971), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3973), 1, - aux_sym_preproc_if_token2, - STATE(1586), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1597), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1661), 1, - sym_enumerator, - STATE(2186), 2, + STATE(2125), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - STATE(2188), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [62933] = 8, + [63243] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3975), 1, + ACTIONS(4005), 1, sym_identifier, - ACTIONS(3978), 1, + ACTIONS(4008), 1, aux_sym_preproc_if_token1, - ACTIONS(3984), 1, + ACTIONS(4014), 1, sym_preproc_directive, - ACTIONS(3987), 1, + ACTIONS(4017), 1, anon_sym_RBRACE, - ACTIONS(3981), 2, + ACTIONS(4011), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(2125), 2, + STATE(2216), 2, sym_preproc_call, sym_enumerator, - STATE(1531), 3, + STATE(1563), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [62962] = 7, + [63272] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(4021), 1, anon_sym_LBRACK, - STATE(1594), 1, - sym_parameter_list, - STATE(1550), 2, + STATE(1515), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3989), 5, + ACTIONS(4019), 6, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - [62989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1578), 1, - sym__declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63018] = 7, + [63294] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(4023), 1, + anon_sym_COMMA, + ACTIONS(4027), 1, anon_sym_LBRACK, - STATE(1594), 1, + STATE(1651), 1, sym_parameter_list, - STATE(1550), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(3991), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(1712), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4025), 2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - [63045] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(3971), 1, - aux_sym_preproc_elif_token1, - ACTIONS(3993), 1, - aux_sym_preproc_if_token2, - STATE(1567), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(1583), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1661), 1, - sym_enumerator, - STATE(2202), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - STATE(2203), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63078] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2091), 1, - anon_sym___based, - ACTIONS(2863), 1, - sym_identifier, - ACTIONS(3316), 1, - anon_sym_LPAREN2, - ACTIONS(3318), 1, - anon_sym_STAR, - STATE(1613), 1, - sym__declarator, - STATE(1941), 1, - sym_ms_based_modifier, - STATE(1543), 5, - sym_parenthesized_declarator, - sym_attributed_declarator, - sym_pointer_declarator, - sym_function_declarator, - sym_array_declarator, - [63107] = 6, + STATE(1595), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - STATE(1685), 1, + STATE(1760), 1, sym_gnu_asm_output_operand, - STATE(2139), 1, + STATE(2255), 1, sym_string_literal, - ACTIONS(3995), 2, + ACTIONS(4029), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(95), 5, @@ -125349,31 +128270,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63131] = 7, + [63348] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(4027), 1, anon_sym_LBRACK, - STATE(1601), 1, + STATE(1651), 1, sym_parameter_list, - STATE(1563), 2, + STATE(1595), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(3999), 4, + ACTIONS(4033), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63157] = 3, + [63374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4005), 1, + ACTIONS(4037), 1, + anon_sym_LBRACK, + ACTIONS(4035), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [63392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4041), 1, anon_sym_LBRACK, - ACTIONS(4003), 9, + ACTIONS(4039), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125383,65 +128319,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63175] = 7, + [63410] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(4027), 1, anon_sym_LBRACK, - STATE(1601), 1, + STATE(1651), 1, sym_parameter_list, - STATE(1563), 2, + STATE(1595), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4007), 4, + ACTIONS(4043), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63201] = 3, + [63436] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4009), 9, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4045), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(447), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1494), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63468] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, anon_sym_LBRACE, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [63219] = 7, + STATE(162), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1494), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63500] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1601), 1, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(487), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1494), 1, sym_parameter_list, - STATE(1563), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4013), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - [63245] = 3, + [63532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4017), 1, + ACTIONS(4051), 1, anon_sym_LBRACK, - ACTIONS(4015), 9, + ACTIONS(4049), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125451,12 +128419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63263] = 3, + [63550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4021), 1, + ACTIONS(4055), 1, anon_sym_LBRACK, - ACTIONS(4019), 9, + ACTIONS(4053), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125466,12 +128434,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63281] = 3, + [63568] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(214), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1494), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4025), 1, + ACTIONS(4059), 1, anon_sym_LBRACK, - ACTIONS(4023), 9, + ACTIONS(4057), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125481,12 +128471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63299] = 3, + [63618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4029), 1, + ACTIONS(4063), 1, anon_sym_LBRACK, - ACTIONS(4027), 9, + ACTIONS(4061), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -125496,109 +128486,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [63317] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4033), 1, - anon_sym_LBRACK, - STATE(1733), 1, - sym_gnu_asm_input_operand, - STATE(2178), 1, - sym_string_literal, - ACTIONS(4031), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63341] = 7, + [63636] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(4027), 1, anon_sym_LBRACK, - STATE(1601), 1, + STATE(1651), 1, sym_parameter_list, - STATE(1563), 2, + STATE(1595), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4035), 4, + ACTIONS(4065), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym___attribute__, - [63367] = 9, + [63662] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4037), 1, - anon_sym_COMMA, - STATE(1601), 1, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(428), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1494), 1, sym_parameter_list, - STATE(1719), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4039), 2, - anon_sym_SEMI, - anon_sym___attribute__, - STATE(1563), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63397] = 5, + [63694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4043), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - STATE(1478), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(4041), 6, - anon_sym_COMMA, + STATE(1726), 1, + sym_gnu_asm_input_operand, + STATE(2194), 1, + sym_string_literal, + ACTIONS(4067), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - [63419] = 9, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [63718] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, - anon_sym_LBRACE, - ACTIONS(3851), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3855), 1, + ACTIONS(4027), 1, anon_sym_LBRACK, - STATE(446), 1, - sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1651), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1595), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63448] = 5, + ACTIONS(4071), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + [63744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4073), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1789), 2, + STATE(1827), 2, sym__string, sym_concatenated_string, ACTIONS(95), 5, @@ -125607,224 +128580,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63469] = 5, + [63765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4047), 1, + ACTIONS(4055), 1, + anon_sym_LBRACK, + ACTIONS(4053), 4, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(4075), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [63784] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 1, sym_identifier, - ACTIONS(4051), 1, + ACTIONS(4081), 1, sym_system_lib_string, - STATE(2075), 2, + STATE(2113), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4049), 5, + ACTIONS(4079), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63490] = 7, + [63805] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1601), 1, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(428), 1, + sym_compound_statement, + STATE(1494), 1, sym_parameter_list, - STATE(1563), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4053), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [63515] = 9, + [63834] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3851), 1, - anon_sym_LPAREN2, - ACTIONS(3855), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(149), 1, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + STATE(223), 1, sym_compound_statement, - STATE(1160), 1, + STATE(1189), 1, sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1495), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63544] = 5, + [63863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, - sym_identifier, - STATE(792), 1, - sym_string_literal, - STATE(1792), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63565] = 5, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(4027), 1, + anon_sym_LBRACK, + STATE(1651), 1, + sym_parameter_list, + STATE(1595), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4083), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [63888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4085), 1, sym_identifier, - STATE(792), 1, + ACTIONS(4087), 1, + sym_system_lib_string, + STATE(2084), 2, + sym_preproc_call_expression, sym_string_literal, - STATE(1799), 2, - sym__string, - sym_concatenated_string, - ACTIONS(95), 5, + ACTIONS(4079), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63586] = 5, + [63909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4055), 1, + ACTIONS(4089), 1, sym_identifier, - ACTIONS(4057), 1, + ACTIONS(4091), 1, sym_system_lib_string, - STATE(2099), 2, + STATE(2124), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4049), 5, + ACTIONS(4079), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63607] = 9, + [63930] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(3851), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3855), 1, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(447), 1, + sym_compound_statement, + STATE(1494), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [63959] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(129), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(471), 1, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + STATE(141), 1, sym_compound_statement, - STATE(1160), 1, + STATE(1189), 1, sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1495), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63636] = 9, + [63988] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, + ACTIONS(201), 1, anon_sym_LBRACE, - ACTIONS(3851), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3855), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(398), 1, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(214), 1, sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1494), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63665] = 5, + [64017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4059), 1, + ACTIONS(4093), 1, sym_identifier, - ACTIONS(4061), 1, + ACTIONS(4095), 1, sym_system_lib_string, - STATE(1942), 2, + STATE(2180), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4049), 5, + ACTIONS(4079), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63686] = 5, + [64038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4063), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4099), 1, + anon_sym_LBRACK, + STATE(1515), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(4097), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + [64059] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + STATE(478), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64088] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + STATE(483), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64117] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(41), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(487), 1, + sym_compound_statement, + STATE(1494), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64146] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 1, sym_identifier, - ACTIONS(4065), 1, - sym_system_lib_string, - STATE(2000), 2, - sym_preproc_call_expression, + STATE(816), 1, sym_string_literal, - ACTIONS(4049), 5, + STATE(1868), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63707] = 5, + [64167] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4069), 1, + ACTIONS(551), 1, + anon_sym_LBRACE, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(1478), 2, + ACTIONS(4045), 1, + anon_sym_LPAREN2, + STATE(473), 1, + sym_compound_statement, + STATE(1189), 1, + sym__old_style_parameter_list, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(4067), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - [63728] = 9, + [64196] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3851), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3855), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - STATE(222), 1, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(162), 1, sym_compound_statement, - STATE(1160), 1, - sym__old_style_parameter_list, - STATE(1480), 1, + STATE(1494), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63757] = 5, + [64225] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4045), 1, + ACTIONS(4073), 1, sym_identifier, - STATE(792), 1, + STATE(816), 1, sym_string_literal, - STATE(1773), 2, + STATE(1871), 2, sym__string, sym_concatenated_string, ACTIONS(95), 5, @@ -125833,172 +128925,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63778] = 5, + [64246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4071), 1, + ACTIONS(4101), 1, sym_identifier, - ACTIONS(4073), 1, + ACTIONS(4103), 1, sym_system_lib_string, - STATE(2042), 2, + STATE(2156), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(4049), 5, + ACTIONS(4079), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4073), 1, + sym_identifier, + STATE(816), 1, + sym_string_literal, + STATE(1891), 2, + sym__string, + sym_concatenated_string, + ACTIONS(95), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [63799] = 7, + [64288] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 1, + sym_identifier, + ACTIONS(3995), 1, + aux_sym_preproc_else_token1, + ACTIONS(4105), 1, + aux_sym_preproc_if_token2, + ACTIONS(4107), 1, + aux_sym_preproc_elif_token1, + STATE(1629), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2117), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64312] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 1, + sym_identifier, + ACTIONS(3995), 1, + aux_sym_preproc_else_token1, + ACTIONS(4107), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4109), 1, + aux_sym_preproc_if_token2, + STATE(1682), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2179), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, + ACTIONS(3969), 1, sym_identifier, - ACTIONS(4075), 1, - aux_sym_preproc_if_token2, - ACTIONS(4077), 1, + ACTIONS(3995), 1, + aux_sym_preproc_else_token1, + ACTIONS(4107), 1, aux_sym_preproc_elif_token1, - STATE(1642), 2, + ACTIONS(4111), 1, + aux_sym_preproc_if_token2, + STATE(1682), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2221), 2, + STATE(2127), 2, sym_preproc_else_in_enumerator_list_no_comma, sym_preproc_elif_in_enumerator_list_no_comma, - [63823] = 8, + [64360] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(3945), 1, + ACTIONS(3981), 1, aux_sym_preproc_else_token1, - ACTIONS(4079), 1, + ACTIONS(4113), 1, aux_sym_preproc_if_token2, - ACTIONS(4081), 1, + ACTIONS(4115), 1, aux_sym_preproc_elif_token1, - STATE(1638), 1, + STATE(1680), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, + STATE(2128), 1, sym_enumerator, - STATE(2181), 2, + STATE(2132), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [63849] = 8, + [64386] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - STATE(471), 1, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(473), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1495), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [63875] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1704), 1, - sym_string_literal, - ACTIONS(4083), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63893] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3997), 1, - anon_sym_LBRACK, - STATE(1794), 1, - sym_gnu_asm_output_operand, - STATE(2139), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [63913] = 3, + [64412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_LBRACK, - ACTIONS(4085), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [63929] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4091), 1, + ACTIONS(4117), 1, + sym_identifier, + ACTIONS(4122), 1, aux_sym_preproc_elif_token1, - ACTIONS(4093), 1, - anon_sym_EQ, - ACTIONS(4089), 6, - anon_sym_COMMA, + STATE(1610), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2267), 1, + sym_enumerator, + ACTIONS(4120), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - sym_identifier, - [63947] = 8, + [64434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(4124), 1, sym_identifier, - ACTIONS(3945), 1, - aux_sym_preproc_else_token1, - ACTIONS(4081), 1, + ACTIONS(4129), 1, aux_sym_preproc_elif_token1, - ACTIONS(4095), 1, - aux_sym_preproc_if_token2, - STATE(1568), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, + STATE(1611), 2, sym_enumerator, - STATE(2144), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [63973] = 7, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4127), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [64454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(4077), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4097), 1, - aux_sym_preproc_if_token2, - STATE(1586), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2188), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [63997] = 3, + ACTIONS(4133), 1, + anon_sym_LBRACK, + ACTIONS(4131), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4101), 1, + ACTIONS(4137), 1, anon_sym_LBRACK, - ACTIONS(4099), 7, + ACTIONS(4135), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126006,12 +129101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64013] = 3, + [64486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4105), 1, + ACTIONS(4141), 1, anon_sym_LBRACK, - ACTIONS(4103), 7, + ACTIONS(4139), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126019,32 +129114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64029] = 8, + [64502] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(201), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - STATE(222), 1, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(141), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1495), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64055] = 5, + [64528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4033), 1, + ACTIONS(4031), 1, anon_sym_LBRACK, - STATE(1819), 1, - sym_gnu_asm_input_operand, - STATE(2178), 1, + STATE(1859), 1, + sym_gnu_asm_output_operand, + STATE(2255), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126052,148 +129147,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64075] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3945), 1, - aux_sym_preproc_else_token1, - ACTIONS(3973), 1, - aux_sym_preproc_if_token2, - ACTIONS(4081), 1, - aux_sym_preproc_elif_token1, - STATE(1597), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, - sym_enumerator, - STATE(2186), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64101] = 8, + [64548] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(553), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - STATE(446), 1, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(483), 1, sym_compound_statement, - STATE(1480), 1, + STATE(1495), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64127] = 8, + [64574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(3855), 1, + ACTIONS(4145), 1, anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(4143), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(149), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64153] = 8, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_COLON, + [64590] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1772), 1, + sym_string_literal, + ACTIONS(4147), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3969), 1, sym_identifier, - ACTIONS(3945), 1, + ACTIONS(3995), 1, aux_sym_preproc_else_token1, - ACTIONS(4081), 1, - aux_sym_preproc_elif_token1, ACTIONS(4107), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4149), 1, aux_sym_preproc_if_token2, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, + STATE(1606), 2, sym_enumerator, - STATE(2223), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64179] = 7, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2188), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64632] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(4077), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4109), 1, + ACTIONS(3971), 1, aux_sym_preproc_if_token2, - STATE(1567), 2, + ACTIONS(3981), 1, + aux_sym_preproc_else_token1, + ACTIONS(4115), 1, + aux_sym_preproc_elif_token1, + STATE(1623), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2128), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2203), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64203] = 7, + STATE(2248), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64658] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, - anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - STATE(1480), 1, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(1495), 1, sym_parameter_list, - ACTIONS(4111), 2, + ACTIONS(4151), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(1507), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64227] = 7, + [64682] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(4077), 1, + ACTIONS(3981), 1, + aux_sym_preproc_else_token1, + ACTIONS(4115), 1, aux_sym_preproc_elif_token1, - ACTIONS(4113), 1, + ACTIONS(4153), 1, aux_sym_preproc_if_token2, - STATE(1642), 2, + STATE(1680), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2128), 1, sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2207), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64251] = 3, + STATE(2172), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4117), 1, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(499), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4115), 7, + STATE(478), 1, + sym_compound_statement, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4159), 1, + anon_sym_EQ, + ACTIONS(4155), 6, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_COLON, - [64267] = 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [64752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4121), 1, + ACTIONS(4163), 1, anon_sym_LBRACK, - ACTIONS(4119), 7, + ACTIONS(4161), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126201,12 +129307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64283] = 3, + [64768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4125), 1, + ACTIONS(4167), 1, anon_sym_LBRACK, - ACTIONS(4123), 7, + ACTIONS(4165), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126214,46 +129320,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64299] = 6, + [64784] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(4132), 1, + ACTIONS(3981), 1, + aux_sym_preproc_else_token1, + ACTIONS(4115), 1, aux_sym_preproc_elif_token1, - STATE(1590), 1, + ACTIONS(4169), 1, + aux_sym_preproc_if_token2, + STATE(1680), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2150), 1, + STATE(2128), 1, sym_enumerator, - ACTIONS(4130), 4, - aux_sym_preproc_if_token2, + STATE(2083), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64810] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3969), 1, + sym_identifier, + ACTIONS(3995), 1, aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [64321] = 8, + ACTIONS(4107), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4171), 1, + aux_sym_preproc_if_token2, + STATE(1682), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(2076), 2, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + [64834] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(3945), 1, + ACTIONS(3981), 1, aux_sym_preproc_else_token1, - ACTIONS(3993), 1, + ACTIONS(4003), 1, aux_sym_preproc_if_token2, - ACTIONS(4081), 1, + ACTIONS(4115), 1, + aux_sym_preproc_elif_token1, + STATE(1628), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2128), 1, + sym_enumerator, + STATE(2125), 2, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + [64860] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3981), 1, + aux_sym_preproc_else_token1, + ACTIONS(4115), 1, aux_sym_preproc_elif_token1, - STATE(1583), 1, + ACTIONS(4173), 1, + aux_sym_preproc_if_token2, + STATE(1608), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, + STATE(2128), 1, sym_enumerator, - STATE(2202), 2, + STATE(2297), 2, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, - [64347] = 3, + [64886] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(201), 1, + anon_sym_LBRACE, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3926), 1, + anon_sym_LBRACK, + STATE(223), 1, + sym_compound_statement, + STATE(1495), 1, + sym_parameter_list, + STATE(1538), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [64912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(4177), 1, anon_sym_LBRACK, - ACTIONS(4134), 7, + ACTIONS(4175), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126261,29 +129422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64363] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3961), 1, - aux_sym_preproc_else_token1, - ACTIONS(3967), 1, - sym_identifier, - ACTIONS(4077), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4138), 1, - aux_sym_preproc_if_token2, - STATE(1642), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(2159), 2, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - [64387] = 3, + [64928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(4181), 1, anon_sym_LBRACK, - ACTIONS(4140), 7, + ACTIONS(4179), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -126291,344 +129435,537 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_COLON, - [64403] = 8, + [64944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(499), 1, - anon_sym_LBRACE, - ACTIONS(3855), 1, + ACTIONS(4069), 1, anon_sym_LBRACK, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - STATE(398), 1, - sym_compound_statement, - STATE(1480), 1, - sym_parameter_list, - STATE(1507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [64429] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4144), 1, - sym_identifier, - ACTIONS(4149), 1, - aux_sym_preproc_elif_token1, - STATE(1596), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4147), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [64449] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(3945), 1, - aux_sym_preproc_else_token1, - ACTIONS(4081), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4151), 1, - aux_sym_preproc_if_token2, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, - sym_enumerator, - STATE(2205), 2, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - [64475] = 7, + STATE(1844), 1, + sym_gnu_asm_input_operand, + STATE(2194), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [64964] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(3933), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4153), 1, + ACTIONS(4183), 1, anon_sym_RPAREN, - STATE(1594), 1, + STATE(1495), 1, sym_parameter_list, - STATE(1550), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64498] = 4, + [64987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, + ACTIONS(4187), 1, anon_sym_COMMA, - ACTIONS(4159), 1, + ACTIONS(4189), 1, aux_sym_preproc_elif_token1, - ACTIONS(4155), 5, + ACTIONS(4185), 5, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [64515] = 8, + [65004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2819), 1, - anon_sym_LBRACE, - ACTIONS(4161), 1, - sym_identifier, - STATE(1055), 1, - sym_field_declaration_list, - STATE(1655), 1, + STATE(1646), 2, sym_attribute_specifier, - STATE(1739), 1, - sym_ms_declspec_modifier, - [64540] = 3, + aux_sym_type_definition_repeat1, + ACTIONS(3873), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [65021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4165), 1, + ACTIONS(4193), 1, anon_sym_LBRACK, - ACTIONS(4163), 6, + ACTIONS(4191), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64555] = 7, + [65036] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4001), 1, + ACTIONS(3926), 1, anon_sym_LBRACK, - ACTIONS(4167), 1, - anon_sym_RPAREN, - STATE(1601), 1, + ACTIONS(4047), 1, + anon_sym_EQ, + STATE(1494), 1, sym_parameter_list, - STATE(1563), 2, + STATE(1538), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64578] = 3, + [65059] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4171), 1, + ACTIONS(2053), 1, + anon_sym_LBRACK, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4197), 1, + anon_sym_DOT, + STATE(1644), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [65078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4201), 1, anon_sym_LBRACK, - ACTIONS(4169), 6, + ACTIONS(4199), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64593] = 3, + [65093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4175), 1, + ACTIONS(4205), 1, anon_sym_LBRACK, - ACTIONS(4173), 6, + ACTIONS(4203), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64608] = 3, + [65108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_LBRACK, + ACTIONS(4210), 1, + anon_sym_EQ, + ACTIONS(4212), 1, + anon_sym_DOT, + STATE(1644), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [65127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4179), 1, + ACTIONS(4217), 1, anon_sym_LBRACK, - ACTIONS(4177), 6, + ACTIONS(4215), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64623] = 3, + [65142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4183), 1, + ACTIONS(4221), 1, + anon_sym___attribute__, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4219), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [65159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4226), 1, anon_sym_LBRACK, - ACTIONS(4181), 6, + ACTIONS(4224), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64638] = 3, + [65174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4230), 1, anon_sym_LBRACK, - ACTIONS(4185), 6, + ACTIONS(4228), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64653] = 5, + [65189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4189), 1, - anon_sym_LBRACK, - ACTIONS(4192), 1, - anon_sym_EQ, - ACTIONS(4194), 1, - anon_sym_DOT, - STATE(1608), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [64672] = 3, + ACTIONS(3856), 1, + anon_sym___attribute__, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(4232), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [65206] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(33), 1, + anon_sym___attribute__, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2849), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_identifier, + STATE(1103), 1, + sym_field_declaration_list, + STATE(1694), 1, + sym_attribute_specifier, + STATE(1836), 1, + sym_ms_declspec_modifier, + [65231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4199), 1, + ACTIONS(4238), 1, anon_sym_LBRACK, - ACTIONS(4197), 6, + ACTIONS(4236), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64687] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2041), 1, - anon_sym_LBRACK, - ACTIONS(4201), 1, - anon_sym_EQ, - ACTIONS(4203), 1, - anon_sym_DOT, - STATE(1608), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [64706] = 3, + [65246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4207), 1, + ACTIONS(4242), 1, anon_sym_LBRACK, - ACTIONS(4205), 6, + ACTIONS(4240), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64721] = 3, + [65261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4211), 1, + ACTIONS(4246), 1, anon_sym_LBRACK, - ACTIONS(4209), 6, + ACTIONS(4244), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [64736] = 7, + [65276] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(3855), 1, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(3956), 1, anon_sym_LBRACK, - ACTIONS(3863), 1, + ACTIONS(4248), 1, + anon_sym_RPAREN, + STATE(1613), 1, + sym_parameter_list, + STATE(1564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [65299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4213), 1, + ACTIONS(4027), 1, + anon_sym_LBRACK, + ACTIONS(4250), 1, anon_sym_RPAREN, - STATE(1480), 1, + STATE(1651), 1, sym_parameter_list, - STATE(1507), 2, + STATE(1595), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [64759] = 4, + [65322] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4254), 1, + anon_sym_SEMI, + STATE(1865), 1, + aux_sym_declaration_repeat1, + STATE(1866), 1, + sym_gnu_asm_expression, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65342] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4258), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4260), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [65356] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(1790), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4262), 1, + anon_sym_EQ, + ACTIONS(4155), 5, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + sym_identifier, + [65384] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4264), 1, + anon_sym_LPAREN2, + STATE(1662), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(4266), 3, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [65400] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4268), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4270), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [65414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4215), 1, + ACTIONS(4272), 1, anon_sym_LPAREN2, - STATE(1617), 2, + STATE(1678), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4217), 3, + ACTIONS(4266), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64775] = 3, + [65430] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2011), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65444] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4274), 1, + anon_sym_SEMI, + STATE(1806), 1, + sym_gnu_asm_expression, + STATE(1807), 1, + aux_sym_declaration_repeat1, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(4278), 1, + anon_sym_LBRACK, + STATE(1711), 1, + sym_parameter_list, + ACTIONS(4276), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4219), 2, + ACTIONS(4280), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4221), 4, + ACTIONS(4282), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64789] = 4, + [65496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4223), 1, + ACTIONS(4284), 1, anon_sym_LPAREN2, - STATE(1634), 2, + STATE(1669), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4217), 3, + ACTIONS(4266), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64805] = 4, + [65512] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4286), 1, + anon_sym_SEMI, + STATE(1851), 1, + aux_sym_declaration_repeat1, + STATE(1852), 1, + sym_gnu_asm_expression, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4225), 1, + ACTIONS(4288), 1, anon_sym_LPAREN2, - STATE(1634), 2, + STATE(1678), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4217), 3, + ACTIONS(4266), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64821] = 3, + [65548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 1, - anon_sym_EQ, - ACTIONS(4089), 5, + ACTIONS(4252), 1, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(4290), 1, + anon_sym_SEMI, + STATE(1895), 1, + sym_gnu_asm_expression, + STATE(1898), 1, + aux_sym_declaration_repeat1, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(4278), 1, + anon_sym_LBRACK, + STATE(1711), 1, + sym_parameter_list, + ACTIONS(4292), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4280), 2, + anon_sym_RBRACE, sym_identifier, - [64835] = 3, + ACTIONS(4282), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [65600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4229), 2, + ACTIONS(4017), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4231), 4, + ACTIONS(4294), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64849] = 3, + [65614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4122), 1, + aux_sym_preproc_elif_token1, + ACTIONS(4120), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [65628] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4296), 1, + anon_sym_SEMI, + STATE(1872), 1, + sym_gnu_asm_expression, + STATE(1873), 1, + aux_sym_declaration_repeat1, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65648] = 3, ACTIONS(3), 1, sym_comment, - STATE(2212), 1, + STATE(799), 1, sym_string_literal, ACTIONS(95), 5, anon_sym_L_DQUOTE, @@ -126636,5856 +129973,6083 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [64863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4229), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4231), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64877] = 3, + [65662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4233), 2, + ACTIONS(4298), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4235), 4, + ACTIONS(4300), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64891] = 4, + [65676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4237), 1, + ACTIONS(4302), 1, anon_sym_LPAREN2, - STATE(1616), 2, + STATE(1678), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4217), 3, + ACTIONS(4304), 3, anon_sym_inline, anon_sym_volatile, anon_sym_goto, - [64907] = 5, + [65692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4241), 1, + ACTIONS(4278), 1, anon_sym_LBRACK, - STATE(1654), 1, + STATE(1711), 1, sym_parameter_list, - ACTIONS(4239), 3, + ACTIONS(4307), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [64925] = 3, + [65710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4243), 2, - anon_sym_RBRACE, + ACTIONS(4117), 1, sym_identifier, - ACTIONS(4245), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [64939] = 3, + STATE(1680), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2128), 1, + sym_enumerator, + ACTIONS(4120), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [65728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4309), 1, + anon_sym_SEMI, + STATE(1896), 1, + aux_sym_declaration_repeat1, + STATE(1899), 1, + sym_gnu_asm_expression, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4311), 1, + sym_identifier, + STATE(1682), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(4127), 3, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + [65764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4247), 2, + ACTIONS(4314), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4249), 4, + ACTIONS(4316), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64953] = 3, + [65778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(4278), 1, + anon_sym_LBRACK, + STATE(1711), 1, + sym_parameter_list, + ACTIONS(4318), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 2, + ACTIONS(4320), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4253), 4, + ACTIONS(4322), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64967] = 3, + [65810] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2016), 1, + sym_string_literal, + ACTIONS(95), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [65824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 2, + ACTIONS(4324), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4255), 4, + ACTIONS(4326), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [64981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4132), 1, - aux_sym_preproc_elif_token1, - ACTIONS(4130), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [64995] = 3, + [65838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4257), 2, + ACTIONS(4258), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4259), 4, + ACTIONS(4260), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65009] = 3, + [65852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4261), 2, + ACTIONS(4328), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(4263), 4, + ACTIONS(4330), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [65023] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2214), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65037] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(1755), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65051] = 4, + [65866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4265), 1, - anon_sym_LPAREN2, - STATE(1634), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(4267), 3, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65067] = 5, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4332), 1, + anon_sym_SEMI, + STATE(1857), 1, + aux_sym_declaration_repeat1, + STATE(1858), 1, + sym_gnu_asm_expression, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + [65886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4241), 1, + ACTIONS(4278), 1, anon_sym_LBRACK, - STATE(1654), 1, + STATE(1711), 1, sym_parameter_list, - ACTIONS(4270), 3, + ACTIONS(4334), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [65085] = 3, + [65904] = 5, ACTIONS(3), 1, sym_comment, - STATE(770), 1, - sym_string_literal, - ACTIONS(95), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [65099] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4241), 1, + ACTIONS(4278), 1, anon_sym_LBRACK, - STATE(1654), 1, + STATE(1711), 1, sym_parameter_list, - ACTIONS(4272), 3, + ACTIONS(4336), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [65117] = 5, + [65922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4127), 1, - sym_identifier, - STATE(1638), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2168), 1, - sym_enumerator, - ACTIONS(4130), 3, + ACTIONS(4338), 1, + anon_sym_COMMA, + ACTIONS(4185), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [65135] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(4241), 1, - anon_sym_LBRACK, - STATE(1654), 1, - sym_parameter_list, - ACTIONS(4274), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [65153] = 3, + sym_identifier, + [65935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4243), 2, - anon_sym_RBRACE, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2849), 1, + anon_sym_LBRACE, + ACTIONS(4340), 1, sym_identifier, - ACTIONS(4245), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [65167] = 5, + STATE(1078), 1, + sym_field_declaration_list, + STATE(1820), 1, + sym_ms_declspec_modifier, + [65954] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(4241), 1, - anon_sym_LBRACK, - STATE(1654), 1, - sym_parameter_list, - ACTIONS(4276), 3, + ACTIONS(4342), 5, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [65185] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4278), 1, - sym_identifier, - STATE(1642), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(4147), 3, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [65201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3863), 1, anon_sym_LPAREN2, - ACTIONS(4241), 1, anon_sym_LBRACK, - STATE(1654), 1, - sym_parameter_list, - ACTIONS(4281), 3, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_COLON, - [65219] = 2, + [65965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4283), 5, + STATE(1919), 1, + sym_gnu_asm_expression, + ACTIONS(4256), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(4344), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [65230] = 2, + anon_sym_SEMI, + [65980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4285), 5, + ACTIONS(4346), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65241] = 2, + [65991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4287), 5, + ACTIONS(4348), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65252] = 2, + [66002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4289), 5, + ACTIONS(4350), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65263] = 2, + [66013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4291), 5, + ACTIONS(4352), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65274] = 2, + [66024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4293), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_COLON, - [65285] = 6, + ACTIONS(37), 1, + anon_sym___declspec, + ACTIONS(2849), 1, + anon_sym_LBRACE, + ACTIONS(4354), 1, + sym_identifier, + STATE(1054), 1, + sym_field_declaration_list, + STATE(1842), 1, + sym_ms_declspec_modifier, + [66043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4295), 1, + ACTIONS(4356), 1, aux_sym_preproc_if_token2, - STATE(1599), 1, + STATE(1637), 1, sym_enumerator, - STATE(1707), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(1708), 1, + STATE(1734), 1, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [65304] = 5, + STATE(1784), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + [66062] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [66073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3924), 1, anon_sym_LPAREN2, - ACTIONS(4241), 1, + ACTIONS(4278), 1, anon_sym_LBRACK, - STATE(1654), 1, + STATE(1711), 1, sym_parameter_list, - ACTIONS(4111), 2, + ACTIONS(4151), 2, anon_sym_COMMA, anon_sym_RPAREN, - [65321] = 6, + [66090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2819), 1, - anon_sym_LBRACE, - ACTIONS(4297), 1, - sym_identifier, - STATE(1077), 1, - sym_field_declaration_list, - STATE(1771), 1, - sym_ms_declspec_modifier, - [65340] = 2, + ACTIONS(4360), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_COLON, + [66101] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4299), 5, + ACTIONS(4362), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65351] = 2, + [66112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4301), 5, + ACTIONS(4364), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65362] = 6, + [66123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym___declspec, - ACTIONS(2819), 1, - anon_sym_LBRACE, - ACTIONS(4303), 1, - sym_identifier, - STATE(1076), 1, - sym_field_declaration_list, - STATE(1743), 1, - sym_ms_declspec_modifier, - [65381] = 2, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + ACTIONS(4368), 1, + anon_sym_COLON_COLON, + STATE(1988), 1, + sym_argument_list, + ACTIONS(4366), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [66140] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4305), 5, + ACTIONS(4370), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65392] = 2, + [66151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4307), 5, + ACTIONS(4372), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65403] = 2, + [66162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4309), 5, + ACTIONS(4374), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_LBRACK, anon_sym_COLON, - [65414] = 5, + [66173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - ACTIONS(4313), 1, - anon_sym_COLON_COLON, - STATE(1855), 1, - sym_argument_list, - ACTIONS(4311), 2, + ACTIONS(4023), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [65431] = 2, + STATE(1729), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4376), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66187] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 4, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + [66197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 5, + ACTIONS(4380), 1, anon_sym_COMMA, + STATE(1714), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4383), 2, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_COLON, - [65442] = 3, + [66211] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4385), 1, + anon_sym_DQUOTE, + ACTIONS(4387), 1, + aux_sym_string_literal_token1, + ACTIONS(4389), 1, + sym_escape_sequence, + STATE(1718), 1, + aux_sym_string_literal_repeat1, + [66227] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 1, - anon_sym_COMMA, - ACTIONS(4155), 4, + ACTIONS(4391), 1, + anon_sym___except, + ACTIONS(4393), 1, + anon_sym___finally, + STATE(309), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4395), 1, + anon_sym_SEMI, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66255] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4397), 1, + anon_sym_DQUOTE, + ACTIONS(4399), 1, + aux_sym_string_literal_token1, + ACTIONS(4402), 1, + sym_escape_sequence, + STATE(1718), 1, + aux_sym_string_literal_repeat1, + [66271] = 4, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4405), 1, + anon_sym_SQUOTE, + STATE(1719), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4407), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4120), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, sym_identifier, - [65455] = 4, + [66295] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4410), 1, + anon_sym_SEMI, + STATE(1736), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66309] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4387), 1, + aux_sym_string_literal_token1, + ACTIONS(4389), 1, + sym_escape_sequence, + ACTIONS(4412), 1, + anon_sym_DQUOTE, + STATE(1718), 1, + aux_sym_string_literal_repeat1, + [66325] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4414), 1, + anon_sym___except, + ACTIONS(4416), 1, + anon_sym___finally, + STATE(248), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66339] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4418), 1, + anon_sym_SEMI, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66353] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DQUOTE, + ACTIONS(4422), 1, + aux_sym_string_literal_token1, + ACTIONS(4424), 1, + sym_escape_sequence, + STATE(1755), 1, + aux_sym_string_literal_repeat1, + [66369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4426), 1, anon_sym_COMMA, - STATE(1662), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4322), 2, + STATE(1775), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4428), 2, anon_sym_RPAREN, anon_sym_COLON, - [65469] = 4, + [66383] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4430), 1, + anon_sym___except, + ACTIONS(4432), 1, + anon_sym___finally, + STATE(348), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66397] = 4, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4434), 1, + anon_sym_SQUOTE, + STATE(1719), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4436), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [66411] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4438), 1, + anon_sym_COMMA, + STATE(1729), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(4441), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4324), 1, + ACTIONS(4443), 1, anon_sym_SEMI, - STATE(1501), 2, + STATE(1766), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65483] = 2, + [66439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4326), 4, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - [65493] = 5, - ACTIONS(3597), 1, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4445), 1, + anon_sym_SEMI, + STATE(1745), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66453] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4447), 1, + anon_sym___except, + ACTIONS(4449), 1, + anon_sym___finally, + STATE(194), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66467] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4451), 1, + anon_sym_SEMI, + STATE(1753), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66481] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(4453), 1, + aux_sym_preproc_if_token2, + STATE(1611), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [66495] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + anon_sym_COMMA, + STATE(1714), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4457), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66509] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4459), 1, + anon_sym_SEMI, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66523] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4461), 1, + aux_sym_preproc_include_token2, + ACTIONS(4463), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + sym_preproc_arg, + STATE(1993), 1, + sym_preproc_params, + [66539] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4328), 1, + ACTIONS(4467), 1, anon_sym_DQUOTE, - ACTIONS(4330), 1, + ACTIONS(4469), 1, aux_sym_string_literal_token1, - ACTIONS(4333), 1, + ACTIONS(4471), 1, sym_escape_sequence, - STATE(1665), 1, + STATE(1722), 1, aux_sym_string_literal_repeat1, - [65509] = 4, - ACTIONS(3597), 1, + [66555] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + STATE(1937), 1, + sym_argument_list, + ACTIONS(4473), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [66569] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4475), 1, anon_sym_SQUOTE, - STATE(1666), 1, + STATE(1719), 1, aux_sym_char_literal_repeat1, - ACTIONS(4338), 2, + ACTIONS(4436), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65523] = 4, + [66583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4341), 1, + ACTIONS(4477), 1, anon_sym_SEMI, - STATE(1702), 2, + STATE(1646), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65537] = 4, + [66597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4479), 1, anon_sym_COMMA, - STATE(1668), 1, + STATE(1742), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4482), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [66611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 1, + anon_sym___except, + ACTIONS(4486), 1, + anon_sym___finally, + STATE(348), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [66625] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4488), 1, + anon_sym_SEMI, + STATE(1759), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4490), 1, + anon_sym_SEMI, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66653] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_COMMA, + STATE(1773), 1, aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4346), 2, + ACTIONS(4494), 2, anon_sym_RPAREN, anon_sym_COLON, - [65551] = 4, + [66667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4496), 1, + anon_sym_COMMA, + STATE(1747), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4499), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66681] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + anon_sym_COMMA, + STATE(1747), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4501), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66695] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4503), 1, + anon_sym_DQUOTE, + ACTIONS(4505), 1, + aux_sym_string_literal_token1, + ACTIONS(4507), 1, + sym_escape_sequence, + STATE(1715), 1, + aux_sym_string_literal_repeat1, + [66711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4348), 1, + ACTIONS(4509), 1, anon_sym_SEMI, - STATE(1720), 2, + STATE(1646), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65565] = 5, - ACTIONS(3597), 1, + [66725] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4350), 1, - aux_sym_preproc_include_token2, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4354), 1, - sym_preproc_arg, - STATE(1906), 1, - sym_preproc_params, - [65581] = 4, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4511), 1, + anon_sym_SEMI, + STATE(1741), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3952), 1, + anon_sym_COMMA, + STATE(1748), 1, + aux_sym__field_declaration_declarator_repeat1, + ACTIONS(4513), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [66753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4356), 1, + ACTIONS(4515), 1, anon_sym_SEMI, - STATE(1501), 2, + STATE(1646), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65595] = 4, + [66767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3952), 1, anon_sym_COMMA, - STATE(1725), 1, + STATE(1747), 1, aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4358), 2, + ACTIONS(4517), 2, anon_sym_SEMI, anon_sym___attribute__, - [65609] = 5, - ACTIONS(3597), 1, + [66781] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4360), 1, - anon_sym_DQUOTE, - ACTIONS(4362), 1, + ACTIONS(4387), 1, aux_sym_string_literal_token1, - ACTIONS(4364), 1, + ACTIONS(4389), 1, sym_escape_sequence, - STATE(1694), 1, - aux_sym_string_literal_repeat1, - [65625] = 5, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4366), 1, + ACTIONS(4519), 1, anon_sym_DQUOTE, - ACTIONS(4368), 1, - aux_sym_string_literal_token1, - ACTIONS(4370), 1, - sym_escape_sequence, - STATE(1665), 1, + STATE(1718), 1, aux_sym_string_literal_repeat1, - [65641] = 5, - ACTIONS(3597), 1, + [66797] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4372), 1, + ACTIONS(4521), 1, anon_sym_DQUOTE, - ACTIONS(4374), 1, + ACTIONS(4523), 1, aux_sym_string_literal_token1, - ACTIONS(4376), 1, + ACTIONS(4525), 1, sym_escape_sequence, - STATE(1686), 1, + STATE(1782), 1, aux_sym_string_literal_repeat1, - [65657] = 5, - ACTIONS(3597), 1, + [66813] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4378), 1, - aux_sym_preproc_include_token2, - ACTIONS(4380), 1, - sym_preproc_arg, - STATE(1856), 1, - sym_preproc_params, - [65673] = 4, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4527), 1, + anon_sym_SEMI, + STATE(1717), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(4529), 1, anon_sym_COMMA, - STATE(1724), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4382), 2, - anon_sym_SEMI, + ACTIONS(4531), 1, + anon_sym_RPAREN, + STATE(1798), 1, + aux_sym__old_style_parameter_list_repeat1, + STATE(1813), 1, + aux_sym_parameter_list_repeat1, + [66843] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, anon_sym___attribute__, - [65687] = 4, + ACTIONS(4533), 1, + anon_sym_SEMI, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4455), 1, anon_sym_COMMA, - STATE(1678), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4387), 2, + STATE(1735), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(4535), 2, anon_sym_RPAREN, anon_sym_COLON, - [65701] = 5, - ACTIONS(3597), 1, + [66871] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4463), 1, anon_sym_LPAREN, - ACTIONS(4389), 1, + ACTIONS(4537), 1, aux_sym_preproc_include_token2, - ACTIONS(4391), 1, + ACTIONS(4539), 1, sym_preproc_arg, - STATE(1861), 1, + STATE(1911), 1, sym_preproc_params, - [65717] = 5, - ACTIONS(3597), 1, + [66887] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4463), 1, anon_sym_LPAREN, - ACTIONS(4393), 1, + ACTIONS(4541), 1, aux_sym_preproc_include_token2, - ACTIONS(4395), 1, + ACTIONS(4543), 1, sym_preproc_arg, - STATE(1832), 1, + STATE(1989), 1, sym_preproc_params, - [65733] = 4, - ACTIONS(3597), 1, + [66903] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4397), 1, + ACTIONS(4545), 1, anon_sym_SQUOTE, - STATE(1666), 1, + STATE(1719), 1, aux_sym_char_literal_repeat1, - ACTIONS(4399), 2, + ACTIONS(4436), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65747] = 4, + [66917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4401), 1, + ACTIONS(4547), 1, anon_sym_SEMI, - STATE(1501), 2, + STATE(1646), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65761] = 4, + [66931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4403), 1, - anon_sym_COMMA, - STATE(1683), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4406), 2, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(4549), 1, + aux_sym_preproc_if_token2, + STATE(1734), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [66945] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4551), 1, anon_sym_SEMI, + STATE(1646), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66959] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(4356), 1, + aux_sym_preproc_if_token2, + STATE(1784), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2267), 1, + sym_enumerator, + [66975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, anon_sym___attribute__, - [65775] = 4, + ACTIONS(4553), 1, + anon_sym_SEMI, + STATE(1724), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [66989] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_LPAREN, + ACTIONS(4555), 1, + aux_sym_preproc_include_token2, + ACTIONS(4557), 1, + sym_preproc_arg, + STATE(1995), 1, + sym_preproc_params, + [67005] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_LPAREN, + ACTIONS(4559), 1, + aux_sym_preproc_include_token2, + ACTIONS(4561), 1, + sym_preproc_arg, + STATE(1912), 1, + sym_preproc_params, + [67021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4408), 1, + ACTIONS(4563), 1, anon_sym___except, - ACTIONS(4410), 1, + ACTIONS(4565), 1, anon_sym___finally, - STATE(309), 2, + STATE(116), 2, sym_seh_except_clause, sym_seh_finally_clause, - [65789] = 4, + [67035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, + ACTIONS(4492), 1, anon_sym_COMMA, - STATE(1731), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4414), 2, + STATE(1746), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4567), 2, anon_sym_RPAREN, anon_sym_COLON, - [65803] = 5, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4368), 1, - aux_sym_string_literal_token1, - ACTIONS(4370), 1, - sym_escape_sequence, - ACTIONS(4416), 1, - anon_sym_DQUOTE, - STATE(1665), 1, - aux_sym_string_literal_repeat1, - [65819] = 4, + [67049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4418), 1, - anon_sym___except, - ACTIONS(4420), 1, - anon_sym___finally, - STATE(325), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [65833] = 5, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4422), 1, - aux_sym_preproc_include_token2, - ACTIONS(4424), 1, - sym_preproc_arg, - STATE(1837), 1, - sym_preproc_params, - [65849] = 5, - ACTIONS(3597), 1, + ACTIONS(4569), 1, + anon_sym_COMMA, + STATE(1773), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(4572), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [67063] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, - anon_sym_DQUOTE, - ACTIONS(4428), 1, - aux_sym_string_literal_token1, - ACTIONS(4430), 1, - sym_escape_sequence, - STATE(1699), 1, - aux_sym_string_literal_repeat1, - [65865] = 5, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4574), 1, + anon_sym_SEMI, + STATE(1764), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [67077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_LPAREN2, - ACTIONS(4241), 1, - anon_sym_LBRACK, - ACTIONS(4432), 1, + ACTIONS(4426), 1, + anon_sym_COMMA, + STATE(1742), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(4576), 2, anon_sym_RPAREN, - STATE(1654), 1, - sym_parameter_list, - [65881] = 4, + anon_sym_COLON, + [67091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4434), 1, + ACTIONS(4578), 1, anon_sym_SEMI, - STATE(1730), 2, + STATE(1750), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [65895] = 5, - ACTIONS(3597), 1, + [67105] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4463), 1, anon_sym_LPAREN, - ACTIONS(4436), 1, + ACTIONS(4580), 1, aux_sym_preproc_include_token2, - ACTIONS(4438), 1, + ACTIONS(4582), 1, sym_preproc_arg, - STATE(1924), 1, + STATE(2005), 1, sym_preproc_params, - [65911] = 4, - ACTIONS(3597), 1, + [67121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4584), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_asm, + anon_sym___asm__, + [67131] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_LPAREN, + ACTIONS(4586), 1, + aux_sym_preproc_include_token2, + ACTIONS(4588), 1, + sym_preproc_arg, + STATE(1992), 1, + sym_preproc_params, + [67147] = 5, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4463), 1, + anon_sym_LPAREN, + ACTIONS(4590), 1, + aux_sym_preproc_include_token2, + ACTIONS(4592), 1, + sym_preproc_arg, + STATE(2007), 1, + sym_preproc_params, + [67163] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4440), 1, + ACTIONS(4594), 1, anon_sym_SQUOTE, - STATE(1666), 1, + STATE(1719), 1, aux_sym_char_literal_repeat1, - ACTIONS(4399), 2, + ACTIONS(4436), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [65925] = 5, - ACTIONS(3597), 1, + [67177] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4368), 1, + ACTIONS(4387), 1, aux_sym_string_literal_token1, - ACTIONS(4370), 1, + ACTIONS(4389), 1, sym_escape_sequence, - ACTIONS(4442), 1, + ACTIONS(4596), 1, anon_sym_DQUOTE, - STATE(1665), 1, + STATE(1718), 1, aux_sym_string_literal_repeat1, - [65941] = 5, + [67193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - anon_sym_COMMA, - ACTIONS(4446), 1, + ACTIONS(3924), 1, + anon_sym_LPAREN2, + ACTIONS(4278), 1, + anon_sym_LBRACK, + ACTIONS(4598), 1, anon_sym_RPAREN, - STATE(1741), 1, - aux_sym__old_style_parameter_list_repeat1, - STATE(1820), 1, - aux_sym_parameter_list_repeat1, - [65957] = 5, - ACTIONS(3597), 1, + STATE(1711), 1, + sym_parameter_list, + [67209] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(4600), 1, + aux_sym_preproc_if_token2, + STATE(1610), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(2267), 1, + sym_enumerator, + [67225] = 5, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4352), 1, + ACTIONS(4463), 1, anon_sym_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4602), 1, aux_sym_preproc_include_token2, - ACTIONS(4450), 1, + ACTIONS(4604), 1, sym_preproc_arg, - STATE(1850), 1, + STATE(1934), 1, sym_preproc_params, - [65973] = 4, + [67241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4452), 1, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4606), 1, anon_sym_SEMI, - STATE(1726), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [65987] = 4, - ACTIONS(3597), 1, + STATE(1856), 1, + aux_sym_declaration_repeat1, + [67254] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4454), 1, - anon_sym_SQUOTE, - STATE(1666), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4399), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66001] = 5, - ACTIONS(3597), 1, + ACTIONS(3380), 1, + anon_sym_COMMA, + ACTIONS(3382), 1, + anon_sym_RBRACE, + STATE(1897), 1, + aux_sym_initializer_list_repeat1, + [67267] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4368), 1, - aux_sym_string_literal_token1, - ACTIONS(4370), 1, - sym_escape_sequence, - ACTIONS(4456), 1, - anon_sym_DQUOTE, - STATE(1665), 1, - aux_sym_string_literal_repeat1, - [66017] = 4, + ACTIONS(4608), 1, + aux_sym_preproc_include_token2, + ACTIONS(4610), 1, + anon_sym_LPAREN2, + STATE(2186), 1, + sym_preproc_argument_list, + [67280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4458), 1, - anon_sym_SEMI, - STATE(1715), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66031] = 4, + ACTIONS(2065), 1, + anon_sym_RBRACE, + ACTIONS(4612), 1, + anon_sym_COMMA, + STATE(1826), 1, + aux_sym_initializer_list_repeat1, + [67293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4614), 3, anon_sym_COMMA, - STATE(1678), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4462), 2, anon_sym_RPAREN, anon_sym_COLON, - [66045] = 4, + [67302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4464), 1, - anon_sym_SEMI, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66059] = 4, + ACTIONS(4616), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [67311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4466), 1, - anon_sym_SEMI, - STATE(1682), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66073] = 4, + ACTIONS(4618), 1, + anon_sym_COMMA, + ACTIONS(4621), 1, + anon_sym_RPAREN, + STATE(1792), 1, + aux_sym_parameter_list_repeat1, + [67324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_COMMA, - STATE(1705), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4470), 2, + ACTIONS(4623), 1, anon_sym_RPAREN, + ACTIONS(4625), 1, anon_sym_COLON, - [66087] = 4, + STATE(1884), 1, + sym_gnu_asm_clobber_list, + [67337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4627), 1, anon_sym_COMMA, - STATE(1668), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(4472), 2, + ACTIONS(4630), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66101] = 4, + STATE(1794), 1, + aux_sym_preproc_params_repeat1, + [67350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4474), 1, - anon_sym___except, - ACTIONS(4476), 1, - anon_sym___finally, - STATE(194), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66115] = 5, + ACTIONS(3707), 1, + anon_sym_RPAREN, + ACTIONS(4632), 1, + anon_sym_COMMA, + STATE(1795), 1, + aux_sym_preproc_argument_list_repeat1, + [67363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, - sym_identifier, - ACTIONS(4478), 1, - aux_sym_preproc_if_token2, - STATE(1590), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2150), 1, - sym_enumerator, - [66131] = 4, + ACTIONS(3458), 1, + anon_sym_RPAREN, + ACTIONS(4635), 1, + anon_sym_COMMA, + STATE(1796), 1, + aux_sym_argument_list_repeat1, + [67376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, - sym_identifier, - ACTIONS(4480), 1, - aux_sym_preproc_if_token2, - STATE(1596), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [66145] = 4, + ACTIONS(3364), 1, + anon_sym_COMMA, + ACTIONS(4638), 1, + anon_sym_RPAREN, + STATE(1796), 1, + aux_sym_argument_list_repeat1, + [67389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4482), 1, - anon_sym_SEMI, - STATE(1729), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66159] = 5, - ACTIONS(3597), 1, + ACTIONS(4640), 1, + anon_sym_COMMA, + ACTIONS(4642), 1, + anon_sym_RPAREN, + STATE(1816), 1, + aux_sym__old_style_parameter_list_repeat1, + [67402] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4484), 1, - aux_sym_preproc_include_token2, - ACTIONS(4486), 1, - sym_preproc_arg, - STATE(1876), 1, - sym_preproc_params, - [66175] = 4, + ACTIONS(4644), 1, + anon_sym_COMMA, + ACTIONS(4646), 1, + anon_sym_RBRACK_RBRACK, + STATE(1832), 1, + aux_sym_attribute_declaration_repeat1, + [67415] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4488), 1, - anon_sym___except, - ACTIONS(4490), 1, - anon_sym___finally, - STATE(103), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66189] = 5, - ACTIONS(3597), 1, + ACTIONS(2095), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4648), 1, + sym_identifier, + STATE(1908), 1, + sym_variadic_parameter, + [67428] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_LPAREN, - ACTIONS(4492), 1, - aux_sym_preproc_include_token2, - ACTIONS(4494), 1, - sym_preproc_arg, - STATE(1870), 1, - sym_preproc_params, - [66205] = 4, + ACTIONS(4650), 1, + anon_sym_RPAREN, + ACTIONS(4652), 1, + anon_sym_COLON, + STATE(1793), 1, + sym_gnu_asm_input_operand_list, + [67441] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4496), 1, - anon_sym_SEMI, - STATE(1723), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66219] = 5, + ACTIONS(4625), 1, + anon_sym_COLON, + ACTIONS(4654), 1, + anon_sym_RPAREN, + STATE(1812), 1, + sym_gnu_asm_clobber_list, + [67454] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3906), 1, + ACTIONS(3177), 1, + anon_sym_LBRACE, + ACTIONS(4656), 1, sym_identifier, - ACTIONS(4295), 1, - aux_sym_preproc_if_token2, - STATE(1707), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(2150), 1, - sym_enumerator, - [66235] = 4, + STATE(1208), 1, + sym_enumerator_list, + [67467] = 3, + ACTIONS(3619), 1, + sym_comment, + STATE(1728), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4658), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [67478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4498), 1, + ACTIONS(4644), 1, + anon_sym_COMMA, + ACTIONS(4660), 1, + anon_sym_RBRACK_RBRACK, + STATE(1799), 1, + aux_sym_attribute_declaration_repeat1, + [67491] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4662), 1, anon_sym_SEMI, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66249] = 4, + STATE(1838), 1, + aux_sym_declaration_repeat1, + [67504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - STATE(1857), 1, - sym_argument_list, - ACTIONS(4500), 2, + ACTIONS(4252), 1, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [66263] = 4, + ACTIONS(4664), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [67517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3867), 1, - sym_identifier, - ACTIONS(4502), 1, - aux_sym_preproc_if_token2, - STATE(1708), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [66277] = 4, - ACTIONS(3597), 1, + ACTIONS(4666), 1, + anon_sym_EQ, + ACTIONS(4155), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [67528] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4504), 1, - anon_sym_SQUOTE, - STATE(1666), 1, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4668), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [67541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3360), 1, + anon_sym_COMMA, + ACTIONS(3362), 1, + anon_sym_RBRACE, + STATE(1789), 1, + aux_sym_initializer_list_repeat1, + [67554] = 3, + ACTIONS(3619), 1, + sym_comment, + STATE(1740), 1, aux_sym_char_literal_repeat1, - ACTIONS(4399), 2, + ACTIONS(4670), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [66291] = 4, + [67565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, + ACTIONS(4672), 1, + anon_sym_RPAREN, + ACTIONS(4674), 1, + anon_sym_COLON, + STATE(2165), 1, + sym_gnu_asm_goto_list, + [67578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4676), 1, anon_sym_COMMA, - STATE(1683), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(4506), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [66305] = 4, + ACTIONS(4678), 1, + anon_sym_RPAREN, + STATE(1792), 1, + aux_sym_parameter_list_repeat1, + [67591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4508), 1, + ACTIONS(4680), 1, + anon_sym_COMMA, + ACTIONS(4683), 1, anon_sym_SEMI, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66319] = 4, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [67604] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4510), 1, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, anon_sym_SEMI, - STATE(1663), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66333] = 2, + STATE(1809), 1, + aux_sym_declaration_repeat1, + [67617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4130), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, + ACTIONS(4687), 1, + anon_sym_COMMA, + ACTIONS(4690), 1, + anon_sym_RPAREN, + STATE(1816), 1, + aux_sym__old_style_parameter_list_repeat1, + [67630] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4692), 1, + anon_sym_COMMA, + ACTIONS(4694), 1, + anon_sym_RPAREN, + STATE(1794), 1, + aux_sym_preproc_params_repeat1, + [67643] = 3, + ACTIONS(3619), 1, + sym_comment, + STATE(1781), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4696), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [67654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4698), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [67663] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2849), 1, + anon_sym_LBRACE, + ACTIONS(4700), 1, sym_identifier, - [66343] = 4, + STATE(1075), 1, + sym_field_declaration_list, + [67676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4512), 1, - anon_sym_SEMI, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66357] = 4, + ACTIONS(3585), 1, + anon_sym_COMMA, + ACTIONS(4702), 1, + anon_sym_RPAREN, + STATE(1795), 1, + aux_sym_preproc_argument_list_repeat1, + [67689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4704), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [67698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3929), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - STATE(1725), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4514), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [66371] = 4, + ACTIONS(3378), 1, + anon_sym_RPAREN, + STATE(1796), 1, + aux_sym_argument_list_repeat1, + [67711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(1725), 1, - aux_sym__field_declaration_declarator_repeat1, - ACTIONS(4519), 2, + ACTIONS(4706), 1, anon_sym_SEMI, - anon_sym___attribute__, - [66385] = 4, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [67724] = 4, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4610), 1, + anon_sym_LPAREN2, + ACTIONS(4708), 1, + aux_sym_preproc_include_token2, + STATE(2186), 1, + sym_preproc_argument_list, + [67737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4521), 1, - anon_sym_SEMI, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66399] = 4, + ACTIONS(3468), 1, + anon_sym_RBRACE, + ACTIONS(4710), 1, + anon_sym_COMMA, + STATE(1826), 1, + aux_sym_initializer_list_repeat1, + [67750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, - anon_sym___except, - ACTIONS(4525), 1, - anon_sym___finally, - STATE(297), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66413] = 4, + ACTIONS(4713), 1, + anon_sym_RPAREN, + ACTIONS(4715), 1, + anon_sym_COLON, + STATE(1801), 1, + sym_gnu_asm_output_operand_list, + [67763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4527), 1, - anon_sym_SEMI, - STATE(1671), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66427] = 4, + ACTIONS(4717), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RPAREN, + STATE(1882), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [67776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4529), 1, - anon_sym_SEMI, - STATE(1501), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66441] = 4, + ACTIONS(4652), 1, + anon_sym_COLON, + ACTIONS(4721), 1, + anon_sym_RPAREN, + STATE(1802), 1, + sym_gnu_asm_input_operand_list, + [67789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, + ACTIONS(3856), 1, anon_sym___attribute__, - ACTIONS(4531), 1, + ACTIONS(4723), 1, anon_sym_SEMI, - STATE(1501), 2, + STATE(2223), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [66455] = 4, + [67802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4412), 1, + ACTIONS(4644), 1, anon_sym_COMMA, - STATE(1662), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(4533), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 1, - anon_sym___except, - ACTIONS(4537), 1, - anon_sym___finally, - STATE(325), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [66483] = 4, + ACTIONS(4725), 1, + anon_sym_RBRACK_RBRACK, + STATE(1839), 1, + aux_sym_attribute_declaration_repeat1, + [67815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4727), 1, anon_sym_COMMA, - STATE(1701), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(4539), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [66497] = 5, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4541), 1, - anon_sym_DQUOTE, - ACTIONS(4543), 1, - aux_sym_string_literal_token1, - ACTIONS(4545), 1, - sym_escape_sequence, - STATE(1674), 1, - aux_sym_string_literal_repeat1, - [66513] = 4, + ACTIONS(4730), 1, + anon_sym_RBRACK_RBRACK, + STATE(1832), 1, + aux_sym_attribute_declaration_repeat1, + [67828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4547), 1, + ACTIONS(3354), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, anon_sym_RPAREN, - ACTIONS(4549), 1, - anon_sym_COLON, - STATE(1817), 1, - sym_gnu_asm_clobber_list, - [66526] = 4, + STATE(1840), 1, + aux_sym_generic_expression_repeat1, + [67841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, - anon_sym_COMMA, - ACTIONS(4551), 1, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4734), 1, anon_sym_SEMI, - STATE(1811), 1, - aux_sym__declaration_declarator_repeat1, - [66539] = 4, + STATE(2059), 1, + sym_attribute_specifier, + [67854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2083), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4553), 1, + ACTIONS(3177), 1, + anon_sym_LBRACE, + ACTIONS(4736), 1, sym_identifier, - STATE(1854), 1, - sym_variadic_parameter, - [66552] = 3, - ACTIONS(3597), 1, - sym_comment, - STATE(1698), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4555), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66563] = 4, + STATE(1348), 1, + sym_enumerator_list, + [67867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2819), 1, + ACTIONS(2849), 1, anon_sym_LBRACE, - ACTIONS(4557), 1, + ACTIONS(4738), 1, sym_identifier, - STATE(1076), 1, + STATE(1078), 1, sym_field_declaration_list, - [66576] = 4, + [67880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4740), 3, anon_sym_COMMA, - ACTIONS(4561), 1, - anon_sym_RPAREN, - STATE(1759), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66589] = 4, + anon_sym_SEMI, + anon_sym___attribute__, + [67889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4565), 1, - anon_sym_RPAREN, - STATE(1784), 1, - aux_sym__old_style_parameter_list_repeat1, - [66602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4567), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [66611] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2819), 1, - anon_sym_LBRACE, - ACTIONS(4569), 1, - sym_identifier, - STATE(1043), 1, - sym_field_declaration_list, - [66624] = 4, + ACTIONS(4742), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [67902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 1, + ACTIONS(4644), 1, anon_sym_COMMA, - ACTIONS(4573), 1, + ACTIONS(4744), 1, anon_sym_RBRACK_RBRACK, - STATE(1765), 1, + STATE(1832), 1, aux_sym_attribute_declaration_repeat1, - [66637] = 4, + [67915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4575), 1, + ACTIONS(4746), 1, anon_sym_COMMA, - ACTIONS(4578), 1, + ACTIONS(4749), 1, anon_sym_RPAREN, - STATE(1745), 1, + STATE(1840), 1, aux_sym_generic_expression_repeat1, - [66650] = 3, - ACTIONS(3597), 1, - sym_comment, - STATE(1681), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4580), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [66661] = 4, + [67928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(3585), 1, anon_sym_COMMA, - ACTIONS(4584), 1, + ACTIONS(4751), 1, anon_sym_RPAREN, - STATE(1822), 1, - aux_sym_preproc_params_repeat1, - [66674] = 4, + STATE(1795), 1, + aux_sym_preproc_argument_list_repeat1, + [67941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 1, - anon_sym_COMMA, - ACTIONS(4586), 1, - anon_sym_RBRACK_RBRACK, - STATE(1785), 1, - aux_sym_attribute_declaration_repeat1, - [66687] = 4, + ACTIONS(2849), 1, + anon_sym_LBRACE, + ACTIONS(4753), 1, + sym_identifier, + STATE(1082), 1, + sym_field_declaration_list, + [67954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 1, - anon_sym_COMMA, - ACTIONS(4588), 1, - anon_sym_RBRACK_RBRACK, - STATE(1783), 1, - aux_sym_attribute_declaration_repeat1, - [66700] = 4, - ACTIONS(3597), 1, + ACTIONS(3177), 1, + anon_sym_LBRACE, + ACTIONS(4755), 1, + sym_identifier, + STATE(1348), 1, + sym_enumerator_list, + [67967] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4590), 1, - aux_sym_preproc_include_token2, - ACTIONS(4592), 1, - anon_sym_LPAREN2, - STATE(1959), 1, - sym_preproc_argument_list, - [66713] = 4, - ACTIONS(3597), 1, + ACTIONS(4757), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [67976] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4610), 1, anon_sym_LPAREN2, - ACTIONS(4594), 1, + ACTIONS(4759), 1, aux_sym_preproc_include_token2, - STATE(1959), 1, + STATE(2186), 1, sym_preproc_argument_list, - [66726] = 4, - ACTIONS(3), 1, + [67989] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(4596), 1, - anon_sym_RPAREN, - STATE(1757), 1, - aux_sym_argument_list_repeat1, - [66739] = 4, + STATE(1763), 1, + aux_sym_char_literal_repeat1, + ACTIONS(4761), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [68000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4763), 3, anon_sym_COMMA, - ACTIONS(4600), 1, anon_sym_RPAREN, - STATE(1820), 1, - aux_sym_parameter_list_repeat1, - [66752] = 2, + anon_sym_COLON, + [68009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4602), 3, + ACTIONS(4676), 1, anon_sym_COMMA, + ACTIONS(4765), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66761] = 2, + STATE(1813), 1, + aux_sym_parameter_list_repeat1, + [68022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4604), 3, + ACTIONS(4252), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66770] = 3, + ACTIONS(4767), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4606), 1, - anon_sym_EQ, - ACTIONS(4089), 2, + ACTIONS(4252), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [66781] = 4, + ACTIONS(4769), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 1, - anon_sym_RPAREN, - ACTIONS(4608), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(1757), 1, - aux_sym_argument_list_repeat1, - [66794] = 4, + ACTIONS(4771), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(3853), 1, + ACTIONS(4773), 1, anon_sym_SEMI, - STATE(1736), 1, - aux_sym__declaration_declarator_repeat1, - [66807] = 4, + STATE(1849), 1, + aux_sym_declaration_repeat1, + [68074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4611), 1, - anon_sym_RPAREN, - STATE(1767), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66820] = 2, + ACTIONS(4775), 1, + anon_sym_SEMI, + STATE(1850), 1, + aux_sym_declaration_repeat1, + [68087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 3, + ACTIONS(4644), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [66829] = 4, + ACTIONS(4777), 1, + anon_sym_RBRACK_RBRACK, + STATE(1867), 1, + aux_sym_attribute_declaration_repeat1, + [68100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3643), 1, - anon_sym_RPAREN, - ACTIONS(4615), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(1761), 1, - aux_sym_preproc_argument_list_repeat1, - [66842] = 4, + ACTIONS(4779), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4618), 1, - anon_sym_RBRACK_RBRACK, - STATE(1749), 1, - aux_sym_attribute_declaration_repeat1, - [66855] = 4, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4592), 1, - anon_sym_LPAREN2, - ACTIONS(4620), 1, - aux_sym_preproc_include_token2, - STATE(1959), 1, - sym_preproc_argument_list, - [66868] = 4, + ACTIONS(4781), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4622), 1, - anon_sym_RPAREN, - STATE(1745), 1, - aux_sym_generic_expression_repeat1, - [66881] = 4, + ACTIONS(4783), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4624), 1, - anon_sym_RBRACK_RBRACK, - STATE(1783), 1, - aux_sym_attribute_declaration_repeat1, - [66894] = 4, + ACTIONS(4785), 1, + anon_sym_SEMI, + STATE(1855), 1, + aux_sym_declaration_repeat1, + [68152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, + ACTIONS(4787), 3, anon_sym_COMMA, - ACTIONS(4629), 1, anon_sym_RPAREN, - STATE(1766), 1, - aux_sym_preproc_params_repeat1, - [66907] = 4, + anon_sym_COLON, + [68161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4631), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4634), 1, - anon_sym_RPAREN, - STATE(1767), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [66920] = 4, + ACTIONS(4789), 1, + anon_sym_SEMI, + STATE(1874), 1, + aux_sym_declaration_repeat1, + [68174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4639), 1, - anon_sym_RPAREN, - STATE(1768), 1, - aux_sym_parameter_list_repeat1, - [66933] = 2, + ACTIONS(4791), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4641), 3, + ACTIONS(4692), 1, anon_sym_COMMA, + ACTIONS(4793), 1, anon_sym_RPAREN, - anon_sym_COLON, - [66942] = 2, + STATE(1817), 1, + aux_sym_preproc_params_repeat1, + [68200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 3, + ACTIONS(4795), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66951] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2819), 1, - anon_sym_LBRACE, - ACTIONS(4645), 1, - sym_identifier, - STATE(1066), 1, - sym_field_declaration_list, - [66964] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3162), 1, - anon_sym_LBRACE, - ACTIONS(4647), 1, - sym_identifier, - STATE(1308), 1, - sym_enumerator_list, - [66977] = 4, + [68209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 1, - anon_sym_RPAREN, - ACTIONS(4651), 1, - anon_sym_COLON, - STATE(1797), 1, - sym_gnu_asm_output_operand_list, - [66990] = 2, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4797), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4653), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [66999] = 4, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4799), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2053), 1, - anon_sym_RBRACE, - ACTIONS(4655), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - [67012] = 4, + ACTIONS(4801), 1, + anon_sym_SEMI, + STATE(1861), 1, + aux_sym_declaration_repeat1, + [68248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(4644), 1, anon_sym_COMMA, - ACTIONS(3350), 1, - anon_sym_RPAREN, - STATE(1807), 1, - aux_sym_argument_list_repeat1, - [67025] = 4, + ACTIONS(4803), 1, + anon_sym_RBRACK_RBRACK, + STATE(1832), 1, + aux_sym_attribute_declaration_repeat1, + [68261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(4715), 1, anon_sym_COLON, - ACTIONS(4657), 1, - anon_sym_RPAREN, - STATE(1795), 1, - sym_gnu_asm_clobber_list, - [67038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 1, + ACTIONS(4805), 1, anon_sym_RPAREN, - ACTIONS(4659), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [67049] = 4, + STATE(1829), 1, + sym_gnu_asm_output_operand_list, + [68274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, + ACTIONS(4807), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(4665), 1, anon_sym_COLON, - STATE(1796), 1, - sym_gnu_asm_input_operand_list, - [67062] = 4, + [68283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4667), 1, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4809), 1, anon_sym_SEMI, - STATE(1956), 1, - sym_attribute_specifier, - [67075] = 4, + STATE(1864), 1, + aux_sym_declaration_repeat1, + [68296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4669), 1, - anon_sym_SEMI, - STATE(2012), 1, - sym_attribute_specifier, - [67088] = 4, + ACTIONS(4715), 1, + anon_sym_COLON, + ACTIONS(4811), 1, + anon_sym_RPAREN, + STATE(1889), 1, + sym_gnu_asm_output_operand_list, + [68309] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 1, - anon_sym_LBRACE, - ACTIONS(4671), 1, - sym_identifier, - STATE(1308), 1, - sym_enumerator_list, - [67101] = 4, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4813), 1, + anon_sym_SEMI, + STATE(1893), 1, + aux_sym_declaration_repeat1, + [68322] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4673), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4676), 1, - anon_sym_RBRACK_RBRACK, - STATE(1783), 1, - aux_sym_attribute_declaration_repeat1, - [67114] = 4, + ACTIONS(4815), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68335] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4681), 1, - anon_sym_RPAREN, - STATE(1784), 1, - aux_sym__old_style_parameter_list_repeat1, - [67127] = 4, + ACTIONS(4817), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4571), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(4683), 1, - anon_sym_RBRACK_RBRACK, - STATE(1783), 1, - aux_sym_attribute_declaration_repeat1, - [67140] = 4, - ACTIONS(3597), 1, + ACTIONS(3366), 1, + anon_sym_RPAREN, + STATE(1900), 1, + aux_sym_argument_list_repeat1, + [68361] = 4, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4610), 1, anon_sym_LPAREN2, - ACTIONS(4685), 1, + ACTIONS(4819), 1, aux_sym_preproc_include_token2, - STATE(1959), 1, + STATE(2186), 1, sym_preproc_argument_list, - [67153] = 4, + [68374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(4821), 1, anon_sym_COMMA, - ACTIONS(4687), 1, + ACTIONS(4824), 1, anon_sym_RPAREN, - STATE(1761), 1, - aux_sym_preproc_argument_list_repeat1, - [67166] = 4, + STATE(1877), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [68387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4689), 1, + ACTIONS(3354), 1, + anon_sym_COMMA, + ACTIONS(4826), 1, anon_sym_RPAREN, - ACTIONS(4691), 1, + STATE(1840), 1, + aux_sym_generic_expression_repeat1, + [68400] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, anon_sym_COLON, - STATE(2185), 1, + ACTIONS(4828), 1, + anon_sym_RPAREN, + STATE(2109), 1, sym_gnu_asm_goto_list, - [67179] = 4, + [68413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, - anon_sym_COLON, - ACTIONS(4693), 1, + ACTIONS(4830), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(1791), 1, - sym_gnu_asm_output_operand_list, - [67192] = 4, + anon_sym_COLON, + [68422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4695), 1, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4832), 1, anon_sym_SEMI, - STATE(2130), 1, - sym_attribute_specifier, - [67205] = 4, + STATE(1906), 1, + aux_sym_declaration_repeat1, + [68435] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - anon_sym_COLON, - ACTIONS(4697), 1, + ACTIONS(4717), 1, + anon_sym_COMMA, + ACTIONS(4834), 1, anon_sym_RPAREN, - STATE(1777), 1, - sym_gnu_asm_input_operand_list, - [67218] = 4, + STATE(1877), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [68448] = 4, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4610), 1, + anon_sym_LPAREN2, + ACTIONS(4836), 1, + aux_sym_preproc_include_token2, + STATE(2186), 1, + sym_preproc_argument_list, + [68461] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(4674), 1, anon_sym_COLON, - ACTIONS(4699), 1, + ACTIONS(4838), 1, anon_sym_RPAREN, - STATE(1779), 1, - sym_gnu_asm_output_operand_list, - [67231] = 4, + STATE(2164), 1, + sym_gnu_asm_goto_list, + [68474] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym___attribute__, - ACTIONS(4701), 1, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4840), 1, anon_sym_SEMI, - STATE(2065), 1, - sym_attribute_specifier, - [67244] = 2, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 3, - anon_sym_COMMA, + ACTIONS(4844), 1, anon_sym_RPAREN, - anon_sym_COLON, - [67253] = 4, + ACTIONS(4842), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [68498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4705), 1, - anon_sym_RPAREN, - STATE(2197), 1, - sym_gnu_asm_goto_list, - [67266] = 4, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4846), 1, + anon_sym_SEMI, + STATE(2160), 1, + sym_attribute_specifier, + [68511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, - anon_sym_COLON, - ACTIONS(4707), 1, - anon_sym_RPAREN, - STATE(1788), 1, - sym_gnu_asm_clobber_list, - [67279] = 4, + ACTIONS(3856), 1, + anon_sym___attribute__, + ACTIONS(4848), 1, + anon_sym_SEMI, + STATE(2275), 1, + sym_attribute_specifier, + [68524] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, + ACTIONS(4652), 1, anon_sym_COLON, - ACTIONS(4709), 1, + ACTIONS(4850), 1, anon_sym_RPAREN, - STATE(1735), 1, + STATE(1903), 1, sym_gnu_asm_input_operand_list, - [67292] = 2, + [68537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4711), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [67301] = 4, + ACTIONS(4625), 1, + anon_sym_COLON, + ACTIONS(4852), 1, + anon_sym_RPAREN, + STATE(1879), 1, + sym_gnu_asm_clobber_list, + [68550] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(4715), 1, anon_sym_COLON, - ACTIONS(4713), 1, + ACTIONS(4854), 1, anon_sym_RPAREN, - STATE(1826), 1, + STATE(1902), 1, sym_gnu_asm_output_operand_list, - [67314] = 3, - ACTIONS(3597), 1, - sym_comment, - STATE(1718), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4715), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67325] = 4, + [68563] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, - anon_sym_COMMA, - ACTIONS(3342), 1, + ACTIONS(4674), 1, + anon_sym_COLON, + ACTIONS(4856), 1, anon_sym_RPAREN, - STATE(1804), 1, - aux_sym_argument_list_repeat1, - [67338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3162), 1, - anon_sym_LBRACE, - ACTIONS(4717), 1, - sym_identifier, - STATE(1169), 1, - sym_enumerator_list, - [67351] = 4, + STATE(2147), 1, + sym_gnu_asm_goto_list, + [68576] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4719), 1, + ACTIONS(4858), 1, anon_sym_SEMI, - STATE(1811), 1, - aux_sym__declaration_declarator_repeat1, - [67364] = 4, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(3328), 1, - anon_sym_RPAREN, - STATE(1757), 1, - aux_sym_argument_list_repeat1, - [67377] = 4, + ACTIONS(4860), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3344), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(3346), 1, - anon_sym_RBRACE, - STATE(1775), 1, - aux_sym_initializer_list_repeat1, - [67390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4721), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [67399] = 4, + ACTIONS(4862), 1, + anon_sym_SEMI, + STATE(1824), 1, + aux_sym_declaration_repeat1, + [68615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(3334), 1, - anon_sym_RPAREN, - STATE(1757), 1, - aux_sym_argument_list_repeat1, - [67412] = 4, + ACTIONS(4864), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 1, + ACTIONS(2063), 1, + anon_sym_RBRACE, + ACTIONS(4866), 1, anon_sym_COMMA, - ACTIONS(4723), 1, - anon_sym_RPAREN, - STATE(1745), 1, - aux_sym_generic_expression_repeat1, - [67425] = 4, + STATE(1826), 1, + aux_sym_initializer_list_repeat1, + [68641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4725), 1, - anon_sym_RPAREN, - STATE(2056), 1, - sym_gnu_asm_goto_list, - [67438] = 3, - ACTIONS(3597), 1, - sym_comment, - STATE(1693), 1, - aux_sym_char_literal_repeat1, - ACTIONS(4727), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [67449] = 4, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4868), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68654] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4729), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4732), 1, + ACTIONS(4870), 1, anon_sym_SEMI, - STATE(1811), 1, - aux_sym__declaration_declarator_repeat1, - [67462] = 4, + STATE(1885), 1, + aux_sym_declaration_repeat1, + [68667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(3374), 1, anon_sym_RPAREN, - STATE(1761), 1, - aux_sym_preproc_argument_list_repeat1, - [67475] = 4, + STATE(1796), 1, + aux_sym_argument_list_repeat1, + [68680] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 1, - anon_sym_RBRACE, - ACTIONS(4736), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - [67488] = 4, + ACTIONS(4872), 1, + anon_sym_RPAREN, + STATE(1796), 1, + aux_sym_argument_list_repeat1, + [68693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3541), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, + ACTIONS(4652), 1, + anon_sym_COLON, + ACTIONS(4874), 1, anon_sym_RPAREN, - STATE(1761), 1, - aux_sym_preproc_argument_list_repeat1, - [67501] = 4, + STATE(1890), 1, + sym_gnu_asm_input_operand_list, + [68706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4549), 1, + ACTIONS(4625), 1, anon_sym_COLON, - ACTIONS(4741), 1, + ACTIONS(4876), 1, anon_sym_RPAREN, - STATE(1809), 1, + STATE(1892), 1, sym_gnu_asm_clobber_list, - [67514] = 4, + [68719] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3330), 1, + ACTIONS(3364), 1, anon_sym_COMMA, - ACTIONS(3332), 1, - anon_sym_RBRACE, + ACTIONS(3372), 1, + anon_sym_RPAREN, STATE(1823), 1, - aux_sym_initializer_list_repeat1, - [67527] = 4, + aux_sym_argument_list_repeat1, + [68732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3585), 1, + anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_RPAREN, + STATE(1795), 1, + aux_sym_preproc_argument_list_repeat1, + [68745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4691), 1, - anon_sym_COLON, - ACTIONS(4743), 1, - anon_sym_RPAREN, - STATE(2058), 1, - sym_gnu_asm_goto_list, - [67540] = 4, + ACTIONS(4252), 1, + anon_sym_COMMA, + ACTIONS(4880), 1, + anon_sym_SEMI, + STATE(1814), 1, + aux_sym_declaration_repeat1, + [68758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(4252), 1, anon_sym_COMMA, - ACTIONS(4745), 1, + ACTIONS(4882), 1, anon_sym_SEMI, - STATE(1803), 1, - aux_sym__declaration_declarator_repeat1, - [67553] = 2, + STATE(1894), 1, + aux_sym_declaration_repeat1, + [68771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4747), 3, + ACTIONS(4690), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - [67562] = 4, + [68779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4884), 2, anon_sym_COMMA, - ACTIONS(4749), 1, anon_sym_RPAREN, - STATE(1768), 1, - aux_sym_parameter_list_repeat1, - [67575] = 4, - ACTIONS(3597), 1, + [68787] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4592), 1, - anon_sym_LPAREN2, - ACTIONS(4751), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_compound_statement, + [68797] = 3, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4886), 1, aux_sym_preproc_include_token2, - STATE(1959), 1, - sym_preproc_argument_list, - [67588] = 4, + ACTIONS(4888), 1, + sym_preproc_arg, + [68807] = 3, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4890), 1, + aux_sym_preproc_include_token2, + ACTIONS(4892), 1, + sym_preproc_arg, + [68817] = 3, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4894), 1, + aux_sym_preproc_include_token2, + ACTIONS(4896), 1, + sym_preproc_arg, + [68827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4621), 2, anon_sym_COMMA, - ACTIONS(4753), 1, anon_sym_RPAREN, - STATE(1766), 1, - aux_sym_preproc_params_repeat1, - [67601] = 4, + [68835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2049), 1, - anon_sym_RBRACE, - ACTIONS(4755), 1, + ACTIONS(4630), 2, anon_sym_COMMA, - STATE(1813), 1, - aux_sym_initializer_list_repeat1, - [67614] = 4, + anon_sym_RPAREN, + [68843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3849), 1, + ACTIONS(3946), 1, + anon_sym_RBRACE, + ACTIONS(4898), 1, anon_sym_COMMA, - ACTIONS(4551), 1, - anon_sym_SEMI, - STATE(1811), 1, - aux_sym__declaration_declarator_repeat1, - [67627] = 4, + [68853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 1, + ACTIONS(3458), 2, anon_sym_COMMA, - ACTIONS(4757), 1, anon_sym_RPAREN, - STATE(1757), 1, - aux_sym_argument_list_repeat1, - [67640] = 4, + [68861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4665), 1, - anon_sym_COLON, - ACTIONS(4759), 1, - anon_sym_RPAREN, - STATE(1815), 1, - sym_gnu_asm_input_operand_list, - [67653] = 3, + ACTIONS(4900), 1, + sym_identifier, + STATE(1831), 1, + sym_attribute, + [68871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(440), 1, - sym_parenthesized_expression, - [67663] = 3, + ACTIONS(4902), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [68879] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, anon_sym_LBRACE, - STATE(121), 1, + STATE(126), 1, sym_compound_statement, - [67673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(381), 1, - sym_parenthesized_expression, - [67683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4763), 1, - sym_identifier, - STATE(1744), 1, - sym_attribute, - [67693] = 3, + [68889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(422), 1, + STATE(388), 1, sym_parenthesized_expression, - [67703] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4765), 1, - aux_sym_preproc_include_token2, - ACTIONS(4767), 1, - sym_preproc_arg, - [67713] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4769), 1, - aux_sym_preproc_include_token2, - ACTIONS(4771), 1, - sym_preproc_arg, - [67723] = 3, + [68899] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(239), 1, + STATE(1727), 1, sym_compound_statement, - [67733] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4773), 1, - aux_sym_preproc_include_token2, - ACTIONS(4775), 1, - sym_preproc_arg, - [67743] = 3, + [68909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1684), 1, - sym_compound_statement, - [67753] = 3, - ACTIONS(3597), 1, + ACTIONS(4906), 1, + anon_sym_LPAREN2, + STATE(1979), 1, + sym_parenthesized_expression, + [68919] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4777), 1, - aux_sym_preproc_include_token2, - ACTIONS(4779), 1, - sym_preproc_arg, - [67763] = 2, + ACTIONS(4904), 1, + anon_sym_LPAREN2, + STATE(415), 1, + sym_parenthesized_expression, + [68929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4781), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [67771] = 3, - ACTIONS(3597), 1, + ACTIONS(4906), 1, + anon_sym_LPAREN2, + STATE(1999), 1, + sym_parenthesized_expression, + [68939] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(4908), 1, aux_sym_preproc_include_token2, - ACTIONS(4785), 1, + ACTIONS(4910), 1, sym_preproc_arg, - [67781] = 3, + [68949] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(201), 1, anon_sym_LBRACE, - STATE(196), 1, + STATE(171), 1, sym_compound_statement, - [67791] = 3, + [68959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(1840), 1, + STATE(2002), 1, sym_parenthesized_expression, - [67801] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67809] = 2, + [68969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67817] = 2, + ACTIONS(4906), 1, + anon_sym_LPAREN2, + STATE(2021), 1, + sym_parenthesized_expression, + [68979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3448), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [67825] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1716), 1, + sym_compound_statement, + [68989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(1834), 1, + STATE(1980), 1, sym_parenthesized_expression, - [67835] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4789), 1, - aux_sym_preproc_include_token2, - ACTIONS(4791), 1, - sym_preproc_arg, - [67845] = 3, + [68999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(367), 1, + STATE(1948), 1, sym_parenthesized_expression, - [67855] = 3, + [69009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(378), 1, + STATE(2187), 1, sym_parenthesized_expression, - [67865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(278), 1, - sym_compound_statement, - [67875] = 3, - ACTIONS(3597), 1, + [69019] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4793), 1, + ACTIONS(4912), 1, aux_sym_preproc_include_token2, - ACTIONS(4795), 1, + ACTIONS(4914), 1, sym_preproc_arg, - [67885] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4797), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67893] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3432), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67901] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3937), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [67909] = 2, + [69029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4681), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [67917] = 2, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(378), 1, + sym_compound_statement, + [69039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4800), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [67925] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4802), 1, - aux_sym_preproc_include_token2, - ACTIONS(4804), 1, - sym_preproc_arg, - [67935] = 2, + ACTIONS(129), 1, + anon_sym_LBRACE, + STATE(109), 1, + sym_compound_statement, + [69049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4806), 2, + ACTIONS(4916), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [67943] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4808), 1, - aux_sym_preproc_include_token2, - ACTIONS(4810), 1, - sym_preproc_arg, - [67953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4763), 1, - sym_identifier, - STATE(1880), 1, - sym_attribute, - [67963] = 3, + [69057] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(1732), 1, sym_compound_statement, - [67973] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4812), 1, - aux_sym_preproc_include_token2, - ACTIONS(4814), 1, - sym_preproc_arg, - [67983] = 3, + [69067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(421), 1, + STATE(439), 1, sym_parenthesized_expression, - [67993] = 3, + [69077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(240), 1, - sym_compound_statement, - [68003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4816), 1, - sym_identifier, - ACTIONS(4818), 1, - anon_sym_RPAREN, - [68013] = 3, + ACTIONS(4906), 1, + anon_sym_LPAREN2, + STATE(1927), 1, + sym_parenthesized_expression, + [69087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_compound_statement, - [68023] = 3, + ACTIONS(4904), 1, + anon_sym_LPAREN2, + STATE(440), 1, + sym_parenthesized_expression, + [69097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, - anon_sym_LBRACE, - STATE(239), 1, - sym_compound_statement, - [68033] = 3, + ACTIONS(4906), 1, + anon_sym_LPAREN2, + STATE(1977), 1, + sym_parenthesized_expression, + [69107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4820), 1, - sym_identifier, - ACTIONS(4822), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - [68043] = 3, + STATE(2105), 1, + sym_parenthesized_expression, + [69117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(318), 1, + STATE(1771), 1, sym_compound_statement, - [68053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(449), 1, - sym_parenthesized_expression, - [68063] = 3, - ACTIONS(3597), 1, + [69127] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4824), 1, + ACTIONS(4918), 1, aux_sym_preproc_include_token2, - ACTIONS(4826), 1, + ACTIONS(4920), 1, sym_preproc_arg, - [68073] = 3, + [69137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 1, + ACTIONS(4922), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(1748), 1, - sym_attribute, - [68083] = 3, + [69145] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(279), 1, sym_compound_statement, - [68093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN2, - STATE(1863), 1, - sym_parenthesized_expression, - [68103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - ACTIONS(4830), 1, - anon_sym_RBRACE, - [68113] = 3, + [69155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(129), 1, anon_sym_LBRACE, - STATE(238), 1, + STATE(108), 1, sym_compound_statement, - [68123] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4832), 1, - aux_sym_preproc_include_token2, - ACTIONS(4834), 1, - sym_preproc_arg, - [68133] = 3, + [69165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(1866), 1, + STATE(379), 1, sym_parenthesized_expression, - [68143] = 3, + [69175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(1925), 1, + STATE(1920), 1, sym_parenthesized_expression, - [68153] = 3, + [69185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 1, + sym_identifier, + ACTIONS(4926), 1, + anon_sym_RPAREN, + [69195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(448), 1, + STATE(399), 1, sym_parenthesized_expression, - [68163] = 2, + [69205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4900), 1, + sym_identifier, + STATE(1805), 1, + sym_attribute, + [69215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 2, + ACTIONS(4344), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [68171] = 2, + anon_sym_SEMI, + [69223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4836), 2, + ACTIONS(3474), 2, anon_sym_COMMA, anon_sym_SEMI, - [68179] = 3, + [69231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1687), 1, - sym_compound_statement, - [68189] = 3, - ACTIONS(3597), 1, + ACTIONS(3478), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69239] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4838), 1, + ACTIONS(4928), 1, + sym_identifier, + ACTIONS(4930), 1, + anon_sym_LPAREN2, + [69249] = 3, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4932), 1, aux_sym_preproc_include_token2, - ACTIONS(4840), 1, + ACTIONS(4934), 1, sym_preproc_arg, - [68199] = 3, + [69259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(164), 1, - sym_compound_statement, - [68209] = 3, + ACTIONS(3468), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(287), 1, - sym_compound_statement, - [68219] = 3, - ACTIONS(3597), 1, + ACTIONS(3462), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [69275] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4842), 1, - aux_sym_preproc_include_token2, - ACTIONS(4844), 1, - sym_preproc_arg, - [68229] = 2, + ACTIONS(4904), 1, + anon_sym_LPAREN2, + STATE(466), 1, + sym_parenthesized_expression, + [69285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 2, + ACTIONS(4936), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - [68237] = 3, + [69293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(1849), 1, + STATE(1910), 1, sym_parenthesized_expression, - [68247] = 3, + [69303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(2558), 1, + anon_sym_LPAREN2, + STATE(2048), 1, + sym_argument_list, + [69313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(41), 1, anon_sym_LBRACE, - STATE(107), 1, + STATE(265), 1, sym_compound_statement, - [68257] = 3, + [69323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(1889), 1, + STATE(2204), 1, sym_parenthesized_expression, - [68267] = 3, + [69333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(363), 1, + STATE(457), 1, sym_parenthesized_expression, - [68277] = 3, + [69343] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(41), 1, anon_sym_LBRACE, - STATE(1727), 1, + STATE(1743), 1, sym_compound_statement, - [68287] = 3, + [69353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(201), 1, - anon_sym_LBRACE, - STATE(191), 1, - sym_compound_statement, - [68297] = 3, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4846), 1, - aux_sym_preproc_include_token2, - ACTIONS(4848), 1, - sym_preproc_arg, - [68307] = 3, + ACTIONS(4898), 1, + anon_sym_COMMA, + ACTIONS(4938), 1, + anon_sym_RBRACE, + [69363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(499), 1, anon_sym_LBRACE, - STATE(119), 1, + STATE(279), 1, sym_compound_statement, - [68317] = 3, + [69373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(365), 1, - sym_parenthesized_expression, - [68327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(2017), 1, + STATE(1935), 1, sym_parenthesized_expression, - [68337] = 2, + [69383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4850), 2, + ACTIONS(4940), 2, anon_sym_COMMA, anon_sym_RPAREN, - [68345] = 3, - ACTIONS(3597), 1, + [69391] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(4943), 1, aux_sym_preproc_include_token2, - ACTIONS(4854), 1, + ACTIONS(4945), 1, sym_preproc_arg, - [68355] = 2, + [69401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 2, - anon_sym_COMMA, + ACTIONS(3370), 2, anon_sym_RPAREN, - [68363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN2, - STATE(451), 1, - sym_parenthesized_expression, - [68373] = 3, - ACTIONS(3597), 1, + anon_sym_SEMI, + [69409] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4856), 1, + ACTIONS(4947), 1, aux_sym_preproc_include_token2, - ACTIONS(4858), 1, + ACTIONS(4949), 1, sym_preproc_arg, - [68383] = 2, + [69419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68391] = 3, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(1723), 1, + sym_compound_statement, + [69429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(312), 1, + sym_compound_statement, + [69439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(1865), 1, + STATE(408), 1, sym_parenthesized_expression, - [68401] = 3, + [69449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4860), 1, - sym_identifier, - ACTIONS(4862), 1, - anon_sym_LPAREN2, - [68411] = 3, - ACTIONS(3597), 1, + ACTIONS(41), 1, + anon_sym_LBRACE, + STATE(280), 1, + sym_compound_statement, + [69459] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4864), 1, - aux_sym_preproc_include_token2, - ACTIONS(4866), 1, - sym_preproc_arg, - [68421] = 3, + ACTIONS(551), 1, + anon_sym_LBRACE, + STATE(287), 1, + sym_compound_statement, + [69469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(1921), 1, + STATE(404), 1, sym_parenthesized_expression, - [68431] = 3, + [69479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4900), 1, + sym_identifier, + STATE(1996), 1, + sym_attribute, + [69489] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, anon_sym_LPAREN2, - STATE(1884), 1, + STATE(384), 1, sym_parenthesized_expression, - [68441] = 2, + [69499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68449] = 3, + ACTIONS(4951), 1, + sym_identifier, + ACTIONS(4953), 1, + anon_sym_LPAREN2, + [69509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(1953), 1, + STATE(2006), 1, sym_parenthesized_expression, - [68459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1732), 1, - sym_compound_statement, - [68469] = 3, + [69519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_LBRACE, - STATE(1711), 1, - sym_compound_statement, - [68479] = 3, + ACTIONS(4904), 1, + anon_sym_LPAREN2, + STATE(385), 1, + sym_parenthesized_expression, + [69529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4763), 1, + ACTIONS(4900), 1, sym_identifier, - STATE(1762), 1, + STATE(1854), 1, sym_attribute, - [68489] = 3, + [69539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN2, - STATE(2070), 1, - sym_parenthesized_expression, - [68499] = 3, - ACTIONS(3597), 1, + ACTIONS(4955), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [69547] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(4957), 1, aux_sym_preproc_include_token2, - ACTIONS(4870), 1, + ACTIONS(4959), 1, sym_preproc_arg, - [68509] = 3, + [69557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(2558), 1, anon_sym_LPAREN2, - STATE(370), 1, - sym_parenthesized_expression, - [68519] = 3, - ACTIONS(3), 1, + STATE(2074), 1, + sym_argument_list, + [69567] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3912), 1, - anon_sym_RBRACE, - ACTIONS(4828), 1, - anon_sym_COMMA, - [68529] = 3, - ACTIONS(3), 1, + ACTIONS(4961), 1, + aux_sym_preproc_include_token2, + ACTIONS(4963), 1, + sym_preproc_arg, + [69577] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN2, - STATE(1895), 1, - sym_parenthesized_expression, - [68539] = 3, - ACTIONS(3597), 1, + ACTIONS(4965), 1, + aux_sym_preproc_include_token2, + ACTIONS(4967), 1, + sym_preproc_arg, + [69587] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4969), 1, aux_sym_preproc_include_token2, - ACTIONS(4874), 1, + ACTIONS(4971), 1, sym_preproc_arg, - [68549] = 3, - ACTIONS(3), 1, + [69597] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN2, - STATE(1960), 1, - sym_parenthesized_expression, - [68559] = 3, - ACTIONS(3), 1, + ACTIONS(4973), 1, + aux_sym_preproc_include_token2, + ACTIONS(4975), 1, + sym_preproc_arg, + [69607] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_LBRACE, - STATE(295), 1, - sym_compound_statement, - [68569] = 3, + ACTIONS(4977), 1, + aux_sym_preproc_include_token2, + ACTIONS(4979), 1, + sym_preproc_arg, + [69617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LPAREN2, - STATE(2110), 1, - sym_parenthesized_expression, - [68579] = 3, - ACTIONS(3), 1, + ACTIONS(4730), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [69625] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(2540), 1, - anon_sym_LPAREN2, - STATE(2055), 1, - sym_argument_list, - [68589] = 3, - ACTIONS(3597), 1, + ACTIONS(4981), 1, + aux_sym_preproc_include_token2, + ACTIONS(4983), 1, + sym_preproc_arg, + [69635] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4876), 1, + ACTIONS(4985), 1, aux_sym_preproc_include_token2, - ACTIONS(4878), 1, + ACTIONS(4987), 1, sym_preproc_arg, - [68599] = 3, + [69645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(551), 1, anon_sym_LBRACE, - STATE(339), 1, + STATE(346), 1, sym_compound_statement, - [68609] = 3, + [69655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2540), 1, + ACTIONS(4906), 1, anon_sym_LPAREN2, - STATE(2007), 1, - sym_argument_list, - [68619] = 2, + STATE(2134), 1, + sym_parenthesized_expression, + [69665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [68627] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3673), 1, - aux_sym_preproc_include_token2, - [68634] = 2, + ACTIONS(551), 1, + anon_sym_LBRACE, + STATE(318), 1, + sym_compound_statement, + [69675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, - anon_sym_SEMI, - [68641] = 2, - ACTIONS(3), 1, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(193), 1, + sym_compound_statement, + [69685] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4884), 1, - anon_sym_SEMI, - [68648] = 2, - ACTIONS(3597), 1, + ACTIONS(4989), 1, + aux_sym_preproc_include_token2, + ACTIONS(4991), 1, + sym_preproc_arg, + [69695] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4886), 1, + ACTIONS(4993), 1, aux_sym_preproc_include_token2, - [68655] = 2, - ACTIONS(3), 1, + ACTIONS(4995), 1, + sym_preproc_arg, + [69705] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3388), 1, - anon_sym_SEMI, - [68662] = 2, + ACTIONS(4997), 1, + aux_sym_preproc_include_token2, + ACTIONS(4999), 1, + sym_preproc_arg, + [69715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, - aux_sym_preproc_if_token2, - [68669] = 2, - ACTIONS(3), 1, + ACTIONS(499), 1, + anon_sym_LBRACE, + STATE(365), 1, + sym_compound_statement, + [69725] = 3, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4890), 1, - aux_sym_preproc_if_token2, - [68676] = 2, + ACTIONS(5001), 1, + aux_sym_preproc_include_token2, + ACTIONS(5003), 1, + sym_preproc_arg, + [69735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3406), 1, - anon_sym_SEMI, - [68683] = 2, + ACTIONS(201), 1, + anon_sym_LBRACE, + STATE(209), 1, + sym_compound_statement, + [69745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4892), 1, - anon_sym_SEMI, - [68690] = 2, + ACTIONS(5005), 1, + anon_sym_RBRACE, + [69752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4894), 1, - anon_sym_SEMI, - [68697] = 2, + ACTIONS(5007), 1, + sym_identifier, + [69759] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4896), 1, - anon_sym_RPAREN, - [68704] = 2, + ACTIONS(5009), 1, + anon_sym_LPAREN2, + [69766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4898), 1, - anon_sym_RPAREN, - [68711] = 2, - ACTIONS(3597), 1, + ACTIONS(5011), 1, + aux_sym_preproc_if_token2, + [69773] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4900), 1, + ACTIONS(5013), 1, aux_sym_preproc_include_token2, - [68718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - anon_sym_STAR, - [68725] = 2, - ACTIONS(3597), 1, + [69780] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(5015), 1, aux_sym_preproc_include_token2, - [68732] = 2, + [69787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - anon_sym_SEMI, - [68739] = 2, - ACTIONS(3597), 1, + ACTIONS(5017), 1, + aux_sym_preproc_if_token2, + [69794] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - aux_sym_preproc_include_token2, - [68746] = 2, + ACTIONS(5019), 1, + anon_sym_LPAREN2, + [69801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4908), 1, + ACTIONS(5021), 1, aux_sym_preproc_if_token2, - [68753] = 2, + [69808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_SEMI, - [68760] = 2, + ACTIONS(5023), 1, + sym_identifier, + [69815] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(5025), 1, + aux_sym_preproc_include_token2, + [69822] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4912), 1, - aux_sym_preproc_if_token2, - [68767] = 2, + ACTIONS(5027), 1, + anon_sym_RPAREN, + [69829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_COLON, - [68774] = 2, + ACTIONS(5029), 1, + anon_sym_SEMI, + [69836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, - sym_identifier, - [68781] = 2, + ACTIONS(5031), 1, + anon_sym_COMMA, + [69843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(5033), 1, aux_sym_preproc_if_token2, - [68788] = 2, + [69850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(5035), 1, aux_sym_preproc_if_token2, - [68795] = 2, + [69857] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - aux_sym_preproc_if_token2, - [68802] = 2, + ACTIONS(5037), 1, + anon_sym_RPAREN, + [69864] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, + ACTIONS(5039), 1, anon_sym_SEMI, - [68809] = 2, + [69871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4926), 1, - anon_sym_while, - [68816] = 2, + ACTIONS(3466), 1, + anon_sym_SEMI, + [69878] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - aux_sym_preproc_if_token2, - [68823] = 2, + ACTIONS(5041), 1, + anon_sym_COLON, + [69885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 1, + ACTIONS(3422), 1, anon_sym_SEMI, - [68830] = 2, + [69892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4932), 1, + ACTIONS(5043), 1, aux_sym_preproc_if_token2, - [68837] = 2, + [69899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 1, - aux_sym_preproc_if_token2, - [68844] = 2, - ACTIONS(3597), 1, + ACTIONS(5045), 1, + anon_sym_SEMI, + [69906] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(3705), 1, + ACTIONS(5047), 1, aux_sym_preproc_include_token2, - [68851] = 2, + [69913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_SEMI, - [68858] = 2, + ACTIONS(5049), 1, + anon_sym_RPAREN, + [69920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, - anon_sym_COLON, - [68865] = 2, + ACTIONS(5051), 1, + anon_sym_STAR, + [69927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, + ACTIONS(3460), 1, anon_sym_SEMI, - [68872] = 2, + [69934] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(5053), 1, + aux_sym_preproc_include_token2, + [69941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 1, - anon_sym_SEMI, - [68879] = 2, + ACTIONS(5055), 1, + anon_sym_RPAREN, + [69948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5057), 1, + anon_sym_RPAREN, + [69955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4942), 1, + ACTIONS(3424), 1, anon_sym_SEMI, - [68886] = 2, - ACTIONS(3597), 1, + [69962] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4944), 1, - aux_sym_preproc_include_token2, - [68893] = 2, - ACTIONS(3597), 1, + ACTIONS(5059), 1, + aux_sym_preproc_if_token2, + [69969] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4946), 1, + ACTIONS(5061), 1, aux_sym_preproc_include_token2, - [68900] = 2, + [69976] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4948), 1, - anon_sym_RPAREN, - [68907] = 2, + ACTIONS(5063), 1, + aux_sym_preproc_if_token2, + [69983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4950), 1, + ACTIONS(5065), 1, aux_sym_preproc_if_token2, - [68914] = 2, + [69990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4952), 1, - anon_sym_SEMI, - [68921] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4954), 1, - aux_sym_preproc_include_token2, - [68928] = 2, + ACTIONS(5067), 1, + aux_sym_preproc_if_token2, + [69997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4956), 1, - aux_sym_preproc_if_token2, - [68935] = 2, + ACTIONS(5069), 1, + anon_sym_RPAREN, + [70004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4958), 1, + ACTIONS(5071), 1, anon_sym_RPAREN, - [68942] = 2, - ACTIONS(3597), 1, + [70011] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(5073), 1, aux_sym_preproc_include_token2, - [68949] = 2, - ACTIONS(3597), 1, + [70018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5075), 1, + anon_sym_RPAREN, + [70025] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5077), 1, + aux_sym_preproc_if_token2, + [70032] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(5079), 1, aux_sym_preproc_include_token2, - [68956] = 2, + [70039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4964), 1, - sym_identifier, - [68963] = 2, + ACTIONS(5081), 1, + sym_primitive_type, + [70046] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4966), 1, + ACTIONS(5083), 1, anon_sym_RPAREN, - [68970] = 2, + [70053] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(5085), 1, aux_sym_preproc_if_token2, - [68977] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4970), 1, - aux_sym_preproc_include_token2, - [68984] = 2, + [70060] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 1, - anon_sym_SEMI, - [68991] = 2, - ACTIONS(3597), 1, + ACTIONS(5087), 1, + sym_identifier, + [70067] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4974), 1, - aux_sym_preproc_include_token2, - [68998] = 2, - ACTIONS(3597), 1, + ACTIONS(5089), 1, + aux_sym_preproc_if_token2, + [70074] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4976), 1, + ACTIONS(5091), 1, aux_sym_preproc_include_token2, - [69005] = 2, + [70081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 1, - anon_sym_RPAREN, - [69012] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4980), 1, - aux_sym_preproc_include_token2, - [69019] = 2, + ACTIONS(5093), 1, + sym_identifier, + [70088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_SEMI, - [69026] = 2, + ACTIONS(5095), 1, + anon_sym_RPAREN, + [70095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, + ACTIONS(5097), 1, anon_sym_SEMI, - [69033] = 2, - ACTIONS(3597), 1, + [70102] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(5099), 1, aux_sym_preproc_include_token2, - [69040] = 2, - ACTIONS(3597), 1, + [70109] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4988), 1, + ACTIONS(5101), 1, aux_sym_preproc_include_token2, - [69047] = 2, + [70116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3420), 1, - anon_sym_SEMI, - [69054] = 2, - ACTIONS(3597), 1, + ACTIONS(5103), 1, + aux_sym_preproc_if_token2, + [70123] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4990), 1, + ACTIONS(5105), 1, aux_sym_preproc_include_token2, - [69061] = 2, + [70130] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3410), 1, - anon_sym_SEMI, - [69068] = 2, + ACTIONS(5107), 1, + anon_sym_RPAREN, + [70137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, - anon_sym_SEMI, - [69075] = 2, - ACTIONS(3597), 1, + ACTIONS(5109), 1, + anon_sym_RPAREN, + [70144] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5111), 1, aux_sym_preproc_include_token2, - [69082] = 2, - ACTIONS(3597), 1, + [70151] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5113), 1, aux_sym_preproc_include_token2, - [69089] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 1, - anon_sym_RPAREN, - [69096] = 2, - ACTIONS(3597), 1, + [70158] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5000), 1, + ACTIONS(5115), 1, aux_sym_preproc_include_token2, - [69103] = 2, - ACTIONS(3597), 1, + [70165] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5002), 1, + ACTIONS(5117), 1, aux_sym_preproc_include_token2, - [69110] = 2, + [70172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 1, - sym_identifier, - [69117] = 2, + ACTIONS(3434), 1, + anon_sym_RPAREN, + [70179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, + ACTIONS(5119), 1, sym_identifier, - [69124] = 2, + [70186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 1, + ACTIONS(5121), 1, sym_identifier, - [69131] = 2, - ACTIONS(3597), 1, + [70193] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(5123), 1, aux_sym_preproc_include_token2, - [69138] = 2, + [70200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, - aux_sym_preproc_if_token2, - [69145] = 2, + ACTIONS(5125), 1, + anon_sym_STAR, + [70207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 1, - anon_sym_SEMI, - [69152] = 2, + ACTIONS(5127), 1, + anon_sym_RPAREN, + [70214] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - anon_sym_SEMI, - [69159] = 2, + ACTIONS(5129), 1, + aux_sym_preproc_if_token2, + [70221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, + ACTIONS(5131), 1, anon_sym_COLON, - [69166] = 2, + [70228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5018), 1, - anon_sym_STAR, - [69173] = 2, + ACTIONS(5133), 1, + anon_sym_SEMI, + [70235] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - sym_identifier, - [69180] = 2, + ACTIONS(3390), 1, + anon_sym_SEMI, + [70242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 1, - anon_sym_RPAREN, - [69187] = 2, + ACTIONS(5135), 1, + sym_identifier, + [70249] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5024), 1, + ACTIONS(5137), 1, aux_sym_preproc_if_token2, - [69194] = 2, + [70256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - aux_sym_preproc_if_token2, - [69201] = 2, + ACTIONS(5139), 1, + anon_sym_while, + [70263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 1, - sym_identifier, - [69208] = 2, + ACTIONS(5141), 1, + aux_sym_preproc_if_token2, + [70270] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4759), 1, + aux_sym_preproc_include_token2, + [70277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, - aux_sym_preproc_if_token2, - [69215] = 2, + ACTIONS(5143), 1, + anon_sym_SEMI, + [70284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 1, + ACTIONS(5145), 1, anon_sym_SEMI, - [69222] = 2, + [70291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5147), 1, anon_sym_RPAREN, - [69229] = 2, + [70298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 1, - anon_sym_COMMA, - [69236] = 2, + ACTIONS(5149), 1, + anon_sym_STAR, + [70305] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, - aux_sym_preproc_if_token2, - [69243] = 2, + ACTIONS(5151), 1, + anon_sym_SEMI, + [70312] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 1, - anon_sym_RPAREN, - [69250] = 2, + ACTIONS(5153), 1, + anon_sym_COLON, + [70319] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 1, + ACTIONS(5155), 1, anon_sym_SEMI, - [69257] = 2, + [70326] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(3440), 1, anon_sym_SEMI, - [69264] = 2, + [70333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 1, - aux_sym_preproc_if_token2, - [69271] = 2, + ACTIONS(5157), 1, + anon_sym_RPAREN, + [70340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - sym_identifier, - [69278] = 2, + ACTIONS(3476), 1, + anon_sym_RPAREN, + [70347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 1, - aux_sym_preproc_if_token2, - [69285] = 2, - ACTIONS(3597), 1, + ACTIONS(5159), 1, + anon_sym_SEMI, + [70354] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5052), 1, + ACTIONS(5161), 1, + anon_sym_RBRACK, + [70361] = 2, + ACTIONS(2424), 1, aux_sym_preproc_include_token2, - [69292] = 2, - ACTIONS(3), 1, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5054), 1, - anon_sym_RPAREN, - [69299] = 2, + [70368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5056), 1, + ACTIONS(5163), 1, anon_sym_RPAREN, - [69306] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3912), 1, - anon_sym_RBRACE, - [69313] = 2, + [70375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5058), 1, + ACTIONS(5165), 1, aux_sym_preproc_if_token2, - [69320] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(5060), 1, - aux_sym_preproc_include_token2, - [69327] = 2, + [70382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5062), 1, - sym_primitive_type, - [69334] = 2, + ACTIONS(5167), 1, + aux_sym_preproc_if_token2, + [70389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, - anon_sym_SEMI, - [69341] = 2, + ACTIONS(5169), 1, + aux_sym_preproc_if_token2, + [70396] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 1, - anon_sym_SEMI, - [69348] = 2, + ACTIONS(5171), 1, + aux_sym_preproc_if_token2, + [70403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3396), 1, - anon_sym_SEMI, - [69355] = 2, - ACTIONS(3), 1, + ACTIONS(5173), 1, + anon_sym_RPAREN, + [70410] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5068), 1, - sym_identifier, - [69362] = 2, + ACTIONS(5175), 1, + aux_sym_preproc_include_token2, + [70417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3412), 1, + ACTIONS(5177), 1, anon_sym_SEMI, - [69369] = 2, + [70424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 1, + ACTIONS(5179), 1, anon_sym_SEMI, - [69376] = 2, + [70431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 1, + ACTIONS(5181), 1, anon_sym_SEMI, - [69383] = 2, + [70438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5072), 1, + ACTIONS(5183), 1, anon_sym_RPAREN, - [69390] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5074), 1, - anon_sym_SEMI, - [69397] = 2, + [70445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3418), 1, + ACTIONS(5185), 1, anon_sym_RPAREN, - [69404] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5076), 1, - sym_identifier, - [69411] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(5078), 1, - aux_sym_preproc_include_token2, - [69418] = 2, + [70452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5080), 1, - sym_identifier, - [69425] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(4590), 1, - aux_sym_preproc_include_token2, - [69432] = 2, + ACTIONS(3388), 1, + anon_sym_SEMI, + [70459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5082), 1, - anon_sym_SEMI, - [69439] = 2, + ACTIONS(4938), 1, + anon_sym_RBRACE, + [70466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, + ACTIONS(5187), 1, anon_sym_SEMI, - [69446] = 2, - ACTIONS(3), 1, + [70473] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5086), 1, - anon_sym_COLON, - [69453] = 2, + ACTIONS(4819), 1, + aux_sym_preproc_include_token2, + [70480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5088), 1, + ACTIONS(5189), 1, sym_identifier, - [69460] = 2, + [70487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 1, - anon_sym_RPAREN, - [69467] = 2, + ACTIONS(5191), 1, + sym_identifier, + [70494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5092), 1, - anon_sym_RPAREN, - [69474] = 2, + ACTIONS(5193), 1, + aux_sym_preproc_if_token2, + [70501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_RPAREN, - [69481] = 2, + ACTIONS(5195), 1, + aux_sym_preproc_if_token2, + [70508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(5197), 1, anon_sym_SEMI, - [69488] = 2, + [70515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, - anon_sym_RPAREN, - [69495] = 2, + ACTIONS(5199), 1, + anon_sym_STAR, + [70522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, - anon_sym_RPAREN, - [69502] = 2, + ACTIONS(5201), 1, + sym_identifier, + [70529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5100), 1, + ACTIONS(5203), 1, aux_sym_preproc_if_token2, - [69509] = 2, + [70536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5102), 1, + ACTIONS(5205), 1, anon_sym_RPAREN, - [69516] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5104), 1, - anon_sym_STAR, - [69523] = 2, + [70543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5106), 1, + ACTIONS(5207), 1, anon_sym_RPAREN, - [69530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5108), 1, - sym_identifier, - [69537] = 2, - ACTIONS(3), 1, + [70550] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5110), 1, - anon_sym_RPAREN, - [69544] = 2, + ACTIONS(4836), 1, + aux_sym_preproc_include_token2, + [70557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 1, + ACTIONS(5209), 1, aux_sym_preproc_if_token2, - [69551] = 2, + [70564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5211), 1, aux_sym_preproc_if_token2, - [69558] = 2, + [70571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5213), 1, aux_sym_preproc_if_token2, - [69565] = 2, + [70578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_RPAREN, - [69572] = 2, + ACTIONS(4338), 1, + anon_sym_COMMA, + [70585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 1, - anon_sym_RPAREN, - [69579] = 2, + ACTIONS(5215), 1, + anon_sym_SEMI, + [70592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3424), 1, - anon_sym_RPAREN, - [69586] = 2, + ACTIONS(5217), 1, + anon_sym_RBRACE, + [70599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5122), 1, - anon_sym_SEMI, - [69593] = 2, + ACTIONS(5219), 1, + sym_identifier, + [70606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(5221), 1, aux_sym_preproc_if_token2, - [69600] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(5126), 1, - aux_sym_preproc_include_token2, - [69607] = 2, + [70613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3332), 1, + ACTIONS(5223), 1, anon_sym_RBRACE, - [69614] = 2, + [70620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, - aux_sym_preproc_if_token2, - [69621] = 2, + ACTIONS(5225), 1, + anon_sym_SEMI, + [70627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, + ACTIONS(3426), 1, anon_sym_SEMI, - [69628] = 2, + [70634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(3428), 1, anon_sym_SEMI, - [69635] = 2, + [70641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - aux_sym_preproc_if_token2, - [69642] = 2, + ACTIONS(5227), 1, + sym_identifier, + [70648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, - aux_sym_preproc_if_token2, - [69649] = 2, + ACTIONS(5229), 1, + anon_sym_RPAREN, + [70655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(3454), 1, anon_sym_RPAREN, - [69656] = 2, - ACTIONS(3597), 1, + [70662] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4685), 1, - aux_sym_preproc_include_token2, - [69663] = 2, - ACTIONS(3597), 1, + ACTIONS(5231), 1, + anon_sym_COLON, + [70669] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5233), 1, + anon_sym_SEMI, + [70676] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5140), 1, + ACTIONS(5235), 1, aux_sym_preproc_include_token2, - [69670] = 2, + [70683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_RPAREN, - [69677] = 2, + ACTIONS(5237), 1, + anon_sym_COLON, + [70690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, - anon_sym_RPAREN, - [69684] = 2, + ACTIONS(5239), 1, + anon_sym_SEMI, + [70697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5146), 1, + ACTIONS(5241), 1, anon_sym_RPAREN, - [69691] = 2, + [70704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, + ACTIONS(5243), 1, sym_identifier, - [69698] = 2, + [70711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 1, - sym_identifier, - [69705] = 2, + ACTIONS(5245), 1, + anon_sym_RPAREN, + [70718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, - sym_primitive_type, - [69712] = 2, + ACTIONS(5247), 1, + aux_sym_preproc_if_token2, + [70725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5154), 1, + ACTIONS(5249), 1, aux_sym_preproc_if_token2, - [69719] = 2, - ACTIONS(3597), 1, + [70732] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 1, - aux_sym_preproc_include_token2, - [69726] = 2, + ACTIONS(5251), 1, + aux_sym_preproc_if_token2, + [70739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5158), 1, + ACTIONS(5253), 1, sym_identifier, - [69733] = 2, - ACTIONS(3597), 1, + [70746] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5255), 1, + aux_sym_preproc_if_token2, + [70753] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5160), 1, + ACTIONS(5257), 1, aux_sym_preproc_include_token2, - [69740] = 2, - ACTIONS(3), 1, + [70760] = 2, + ACTIONS(3330), 1, + aux_sym_preproc_include_token2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5162), 1, - anon_sym_RPAREN, - [69747] = 2, + [70767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_RPAREN, - [69754] = 2, + ACTIONS(5259), 1, + sym_identifier, + [70774] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4708), 1, + aux_sym_preproc_include_token2, + [70781] = 2, + ACTIONS(3348), 1, + aux_sym_preproc_include_token2, + ACTIONS(3619), 1, + sym_comment, + [70788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, + ACTIONS(5261), 1, sym_identifier, - [69761] = 2, + [70795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5168), 1, - anon_sym_SEMI, - [69768] = 2, + ACTIONS(5263), 1, + aux_sym_preproc_if_token2, + [70802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 1, + ACTIONS(5265), 1, anon_sym_SEMI, - [69775] = 2, + [70809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(5267), 1, anon_sym_SEMI, - [69782] = 2, + [70816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(5269), 1, aux_sym_preproc_if_token2, - [69789] = 2, + [70823] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, - anon_sym_SEMI, - [69796] = 2, + ACTIONS(5271), 1, + sym_identifier, + [70830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - anon_sym_SEMI, - [69803] = 2, + ACTIONS(5273), 1, + anon_sym_RPAREN, + [70837] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5275), 1, + anon_sym_RPAREN, + [70844] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 1, + ACTIONS(5277), 1, sym_identifier, - [69810] = 2, + [70851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3430), 1, - anon_sym_RPAREN, - [69817] = 2, - ACTIONS(3597), 1, + ACTIONS(5279), 1, + anon_sym_COLON, + [70858] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, - aux_sym_preproc_include_token2, - [69824] = 2, - ACTIONS(3597), 1, + ACTIONS(5281), 1, + aux_sym_preproc_if_token2, + [70865] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4620), 1, + ACTIONS(5283), 1, aux_sym_preproc_include_token2, - [69831] = 2, + [70872] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(5285), 1, sym_identifier, - [69838] = 2, + [70879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 1, - anon_sym_SEMI, - [69845] = 2, + ACTIONS(5287), 1, + sym_primitive_type, + [70886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, - anon_sym_RPAREN, - [69852] = 2, + ACTIONS(5289), 1, + aux_sym_preproc_if_token2, + [70893] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5291), 1, + aux_sym_preproc_if_token2, + [70900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 1, + ACTIONS(5293), 1, + sym_identifier, + [70907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5295), 1, anon_sym_SEMI, - [69859] = 2, + [70914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, - anon_sym_COLON, - [69866] = 2, + ACTIONS(5297), 1, + anon_sym_RPAREN, + [70921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4830), 1, - anon_sym_RBRACE, - [69873] = 2, + ACTIONS(5299), 1, + aux_sym_preproc_if_token2, + [70928] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(5301), 1, + aux_sym_preproc_include_token2, + [70935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, - anon_sym_SEMI, - [69880] = 2, + ACTIONS(5303), 1, + aux_sym_preproc_if_token2, + [70942] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(4608), 1, + aux_sym_preproc_include_token2, + [70949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, - anon_sym_STAR, - [69887] = 2, + ACTIONS(3362), 1, + anon_sym_RBRACE, + [70956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(5305), 1, sym_identifier, - [69894] = 2, + [70963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 1, + ACTIONS(5307), 1, sym_identifier, - [69901] = 2, - ACTIONS(3), 1, + [70970] = 2, + ACTIONS(2420), 1, + aux_sym_preproc_include_token2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5198), 1, - anon_sym_SEMI, - [69908] = 2, + [70977] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 1, - anon_sym_SEMI, - [69915] = 2, + ACTIONS(5309), 1, + sym_identifier, + [70984] = 2, + ACTIONS(3334), 1, + aux_sym_preproc_include_token2, + ACTIONS(3619), 1, + sym_comment, + [70991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3436), 1, + ACTIONS(5311), 1, anon_sym_SEMI, - [69922] = 2, + [70998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, + ACTIONS(5313), 1, aux_sym_preproc_if_token2, - [69929] = 2, - ACTIONS(3597), 1, - sym_comment, - ACTIONS(3637), 1, - aux_sym_preproc_include_token2, - [69936] = 2, + [71005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5202), 1, - aux_sym_preproc_if_token2, - [69943] = 2, + ACTIONS(5315), 1, + anon_sym_RPAREN, + [71012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(5317), 1, sym_identifier, - [69950] = 2, - ACTIONS(3), 1, + [71019] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5206), 1, - aux_sym_preproc_if_token2, - [69957] = 2, + ACTIONS(5319), 1, + aux_sym_preproc_include_token2, + [71026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5208), 1, + ACTIONS(5321), 1, ts_builtin_sym_end, - [69964] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3346), 1, - anon_sym_RBRACE, - [69971] = 2, + [71033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5210), 1, - sym_identifier, - [69978] = 2, + ACTIONS(3472), 1, + anon_sym_RPAREN, + [71040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5212), 1, - sym_identifier, - [69985] = 2, + ACTIONS(5323), 1, + anon_sym_LPAREN2, + [71047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(5325), 1, aux_sym_preproc_if_token2, - [69992] = 2, + [71054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5216), 1, + ACTIONS(5327), 1, aux_sym_preproc_if_token2, - [69999] = 2, + [71061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5218), 1, - sym_identifier, - [70006] = 2, - ACTIONS(3), 1, + ACTIONS(5329), 1, + anon_sym_SEMI, + [71068] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(4828), 1, - anon_sym_COMMA, - [70013] = 2, + ACTIONS(5331), 1, + aux_sym_preproc_include_token2, + [71075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5220), 1, + ACTIONS(5333), 1, sym_identifier, - [70020] = 2, + [71082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5222), 1, + ACTIONS(5335), 1, sym_identifier, - [70027] = 2, + [71089] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5337), 1, + anon_sym_SEMI, + [71096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5224), 1, + ACTIONS(5339), 1, anon_sym_RPAREN, - [70034] = 2, + [71103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5226), 1, - aux_sym_preproc_if_token2, - [70041] = 2, + ACTIONS(5341), 1, + sym_identifier, + [71110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5228), 1, + ACTIONS(5343), 1, anon_sym_SEMI, - [70048] = 2, + [71117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3452), 1, - anon_sym_RPAREN, - [70055] = 2, + ACTIONS(5345), 1, + aux_sym_preproc_if_token2, + [71124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, - anon_sym_RPAREN, - [70062] = 2, + ACTIONS(5347), 1, + anon_sym_RBRACK, + [71131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3404), 1, - anon_sym_SEMI, - [70069] = 2, + ACTIONS(5349), 1, + aux_sym_preproc_if_token2, + [71138] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5351), 1, sym_identifier, - [70076] = 2, + [71145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5353), 1, sym_identifier, - [70083] = 2, + [71152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5355), 1, anon_sym_RPAREN, - [70090] = 2, + [71159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_COLON, - [70097] = 2, + ACTIONS(3442), 1, + anon_sym_RPAREN, + [71166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5238), 1, - sym_identifier, - [70104] = 2, + ACTIONS(3386), 1, + anon_sym_SEMI, + [71173] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5240), 1, - anon_sym_LPAREN2, - [70111] = 2, + ACTIONS(3452), 1, + anon_sym_RPAREN, + [71180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5242), 1, + ACTIONS(5357), 1, sym_identifier, - [70118] = 2, - ACTIONS(3597), 1, + [71187] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(3617), 1, - aux_sym_preproc_include_token2, - [70125] = 2, + ACTIONS(5359), 1, + sym_identifier, + [71194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5244), 1, - aux_sym_preproc_if_token2, - [70132] = 2, + ACTIONS(4898), 1, + anon_sym_COMMA, + [71201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5246), 1, - aux_sym_preproc_if_token2, - [70139] = 2, + ACTIONS(3456), 1, + anon_sym_RPAREN, + [71208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5248), 1, + ACTIONS(5361), 1, aux_sym_preproc_if_token2, - [70146] = 2, + [71215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(5363), 1, anon_sym_LPAREN2, - [70153] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5252), 1, - aux_sym_preproc_if_token2, - [70160] = 2, + [71222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, - anon_sym_RBRACE, - [70167] = 2, + ACTIONS(5365), 1, + sym_identifier, + [71229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 1, - sym_identifier, - [70174] = 2, + ACTIONS(5367), 1, + aux_sym_preproc_if_token2, + [71236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 1, + ACTIONS(5369), 1, aux_sym_preproc_if_token2, - [70181] = 2, + [71243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4157), 1, - anon_sym_COMMA, - [70188] = 2, + ACTIONS(5371), 1, + anon_sym_SEMI, + [71250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 1, - anon_sym_RBRACE, - [70195] = 2, + ACTIONS(5373), 1, + aux_sym_preproc_if_token2, + [71257] = 2, + ACTIONS(3619), 1, + sym_comment, + ACTIONS(5375), 1, + aux_sym_preproc_include_token2, + [71264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(5377), 1, sym_identifier, - [70202] = 2, + [71271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 1, + ACTIONS(5379), 1, anon_sym_LPAREN2, - [70209] = 2, + [71278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5266), 1, + ACTIONS(5381), 1, anon_sym_LPAREN2, - [70216] = 2, + [71285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, + ACTIONS(5383), 1, sym_identifier, - [70223] = 2, + [71292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 1, + ACTIONS(5385), 1, sym_identifier, - [70230] = 2, + [71299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, + ACTIONS(5387), 1, sym_identifier, - [70237] = 2, + [71306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(5389), 1, sym_identifier, - [70244] = 2, + [71313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 1, + ACTIONS(5391), 1, aux_sym_preproc_if_token2, - [70251] = 2, + [71320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5278), 1, + ACTIONS(5393), 1, sym_identifier, - [70258] = 2, + [71327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 1, + ACTIONS(5395), 1, anon_sym_SEMI, - [70265] = 2, + [71334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5282), 1, + ACTIONS(5397), 1, anon_sym_SEMI, - [70272] = 2, + [71341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5284), 1, - aux_sym_preproc_if_token2, - [70279] = 2, + ACTIONS(3470), 1, + anon_sym_RPAREN, + [71348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 1, + ACTIONS(5399), 1, anon_sym_LPAREN2, - [70286] = 2, + [71355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, + ACTIONS(5401), 1, anon_sym_LPAREN2, - [70293] = 2, + [71362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, - aux_sym_preproc_if_token2, - [70300] = 2, + ACTIONS(5403), 1, + anon_sym_RBRACE, + [71369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(5405), 1, anon_sym_LPAREN2, - [70307] = 2, + [71376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4317), 1, - anon_sym_COMMA, - [70314] = 2, + ACTIONS(5407), 1, + aux_sym_preproc_if_token2, + [71383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 1, + ACTIONS(5409), 1, anon_sym_COLON, - [70321] = 2, + [71390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3398), 1, + ACTIONS(3384), 1, anon_sym_RPAREN, - [70328] = 2, + [71397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5296), 1, + ACTIONS(5411), 1, anon_sym_RPAREN, - [70335] = 2, + [71404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3428), 1, - anon_sym_RPAREN, - [70342] = 2, + ACTIONS(5413), 1, + aux_sym_preproc_if_token2, + [71411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3408), 1, - anon_sym_RPAREN, - [70349] = 2, + ACTIONS(3450), 1, + anon_sym_SEMI, + [71418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, - anon_sym_RBRACK, - [70356] = 2, + ACTIONS(5415), 1, + aux_sym_preproc_if_token2, + [71425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5300), 1, + ACTIONS(5417), 1, anon_sym_while, - [70363] = 2, + [71432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 1, - sym_identifier, - [70370] = 2, + ACTIONS(3436), 1, + anon_sym_SEMI, + [71439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5304), 1, - sym_identifier, - [70377] = 2, + ACTIONS(5419), 1, + anon_sym_RPAREN, + [71446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 1, - anon_sym_LPAREN2, - [70384] = 2, + ACTIONS(5421), 1, + anon_sym_COLON, + [71453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5308), 1, - aux_sym_preproc_if_token2, - [70391] = 2, + ACTIONS(5423), 1, + sym_identifier, + [71460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 1, - anon_sym_RBRACE, - [70398] = 2, + ACTIONS(5425), 1, + anon_sym_RPAREN, + [71467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5312), 1, - aux_sym_preproc_if_token2, - [70405] = 2, + ACTIONS(5427), 1, + anon_sym_LPAREN2, + [71474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(5429), 1, anon_sym_COMMA, - [70412] = 2, + [71481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5316), 1, - anon_sym_RBRACE, - [70419] = 2, + ACTIONS(5431), 1, + anon_sym_RPAREN, + [71488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, + ACTIONS(5433), 1, anon_sym_COLON, - [70426] = 2, + [71495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5320), 1, - anon_sym_RPAREN, - [70433] = 2, + ACTIONS(5435), 1, + anon_sym_SEMI, + [71502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 1, - aux_sym_preproc_if_token2, - [70440] = 2, + ACTIONS(3438), 1, + anon_sym_SEMI, + [71509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 1, + ACTIONS(5437), 1, anon_sym_LPAREN2, - [70447] = 2, + [71516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 1, - aux_sym_preproc_if_token2, - [70454] = 2, - ACTIONS(2408), 1, - aux_sym_preproc_include_token2, - ACTIONS(3597), 1, + ACTIONS(5439), 1, + anon_sym_SEMI, + [71523] = 2, + ACTIONS(3), 1, sym_comment, - [70461] = 2, + ACTIONS(5441), 1, + aux_sym_preproc_if_token2, + [71530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 1, + ACTIONS(5443), 1, anon_sym_while, - [70468] = 2, + [71537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5330), 1, - anon_sym_RBRACE, - [70475] = 2, + ACTIONS(5445), 1, + sym_identifier, + [71544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, - aux_sym_preproc_if_token2, - [70482] = 2, + ACTIONS(5447), 1, + anon_sym_RBRACE, + [71551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 1, - aux_sym_preproc_if_token2, - [70489] = 2, + ACTIONS(4187), 1, + anon_sym_COMMA, + [71558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 1, - anon_sym_RPAREN, - [70496] = 2, + ACTIONS(5449), 1, + aux_sym_preproc_if_token2, + [71565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 1, + ACTIONS(5451), 1, anon_sym_RPAREN, - [70503] = 2, + [71572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5338), 1, - anon_sym_RBRACK, - [70510] = 2, + ACTIONS(5453), 1, + sym_identifier, + [71579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 1, - anon_sym_RPAREN, - [70517] = 2, + ACTIONS(5455), 1, + sym_identifier, + [71586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, + ACTIONS(5457), 1, anon_sym_while, - [70524] = 2, + [71593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 1, + ACTIONS(5459), 1, anon_sym_LPAREN2, - [70531] = 2, + [71600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, - anon_sym_RBRACE, - [70538] = 2, - ACTIONS(2412), 1, - aux_sym_preproc_include_token2, - ACTIONS(3597), 1, - sym_comment, - [70545] = 2, + ACTIONS(5461), 1, + anon_sym_RPAREN, + [71607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 1, - aux_sym_preproc_if_token2, - [70552] = 2, + ACTIONS(5463), 1, + anon_sym_SEMI, + [71614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5350), 1, - aux_sym_preproc_if_token2, - [70559] = 2, + ACTIONS(5465), 1, + anon_sym_RPAREN, + [71621] = 2, + ACTIONS(3352), 1, + aux_sym_preproc_include_token2, + ACTIONS(3619), 1, + sym_comment, + [71628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, + ACTIONS(5467), 1, anon_sym_LPAREN2, - [70566] = 2, + [71635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5354), 1, - aux_sym_preproc_if_token2, - [70573] = 2, + ACTIONS(3408), 1, + anon_sym_SEMI, + [71642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 1, + ACTIONS(5469), 1, anon_sym_while, - [70580] = 2, + [71649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 1, + ACTIONS(5471), 1, aux_sym_preproc_if_token2, - [70587] = 2, + [71656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 1, - aux_sym_preproc_if_token2, - [70594] = 2, + ACTIONS(3946), 1, + anon_sym_RBRACE, + [71663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5362), 1, + ACTIONS(5473), 1, aux_sym_preproc_if_token2, - [70601] = 2, + [71670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5364), 1, - anon_sym_RPAREN, - [70608] = 2, + ACTIONS(5475), 1, + aux_sym_preproc_if_token2, + [71677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(5477), 1, anon_sym_LPAREN2, - [70615] = 2, + [71684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5368), 1, - anon_sym_LPAREN2, - [70622] = 2, + ACTIONS(5479), 1, + aux_sym_preproc_if_token2, + [71691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5370), 1, - sym_identifier, - [70629] = 2, + ACTIONS(3382), 1, + anon_sym_RBRACE, + [71698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5372), 1, - anon_sym_LPAREN2, - [70636] = 2, - ACTIONS(3), 1, + ACTIONS(5481), 1, + anon_sym_SEMI, + [71705] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5374), 1, - sym_identifier, - [70643] = 2, + ACTIONS(5483), 1, + aux_sym_preproc_include_token2, + [71712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5376), 1, + ACTIONS(5485), 1, anon_sym_LPAREN2, - [70650] = 2, + [71719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, - anon_sym_COLON, - [70657] = 2, + ACTIONS(5487), 1, + anon_sym_RBRACE, + [71726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 1, + ACTIONS(5489), 1, sym_identifier, - [70664] = 2, + [71733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5382), 1, + ACTIONS(5491), 1, anon_sym_LPAREN2, - [70671] = 2, + [71740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5384), 1, + ACTIONS(5493), 1, aux_sym_preproc_if_token2, - [70678] = 2, - ACTIONS(3), 1, + [71747] = 2, + ACTIONS(3619), 1, sym_comment, - ACTIONS(5386), 1, - aux_sym_preproc_if_token2, - [70685] = 2, + ACTIONS(5495), 1, + aux_sym_preproc_include_token2, + [71754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, + ACTIONS(5497), 1, anon_sym_LPAREN2, - [70692] = 2, + [71761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5390), 1, + ACTIONS(5499), 1, aux_sym_preproc_if_token2, - [70699] = 2, + [71768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 1, + ACTIONS(5501), 1, sym_identifier, - [70706] = 2, + [71775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5394), 1, + ACTIONS(5503), 1, anon_sym_LPAREN2, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(557)] = 0, - [SMALL_STATE(558)] = 115, - [SMALL_STATE(559)] = 230, - [SMALL_STATE(560)] = 340, - [SMALL_STATE(561)] = 452, - [SMALL_STATE(562)] = 561, - [SMALL_STATE(563)] = 670, - [SMALL_STATE(564)] = 779, - [SMALL_STATE(565)] = 888, - [SMALL_STATE(566)] = 997, - [SMALL_STATE(567)] = 1106, - [SMALL_STATE(568)] = 1215, - [SMALL_STATE(569)] = 1324, - [SMALL_STATE(570)] = 1431, - [SMALL_STATE(571)] = 1540, - [SMALL_STATE(572)] = 1649, - [SMALL_STATE(573)] = 1758, - [SMALL_STATE(574)] = 1867, - [SMALL_STATE(575)] = 1976, - [SMALL_STATE(576)] = 2085, - [SMALL_STATE(577)] = 2192, - [SMALL_STATE(578)] = 2301, - [SMALL_STATE(579)] = 2408, - [SMALL_STATE(580)] = 2517, - [SMALL_STATE(581)] = 2626, - [SMALL_STATE(582)] = 2735, - [SMALL_STATE(583)] = 2844, - [SMALL_STATE(584)] = 2953, - [SMALL_STATE(585)] = 3060, - [SMALL_STATE(586)] = 3169, - [SMALL_STATE(587)] = 3277, - [SMALL_STATE(588)] = 3383, - [SMALL_STATE(589)] = 3489, - [SMALL_STATE(590)] = 3595, - [SMALL_STATE(591)] = 3703, - [SMALL_STATE(592)] = 3807, - [SMALL_STATE(593)] = 3911, - [SMALL_STATE(594)] = 4019, - [SMALL_STATE(595)] = 4123, - [SMALL_STATE(596)] = 4227, - [SMALL_STATE(597)] = 4331, - [SMALL_STATE(598)] = 4437, - [SMALL_STATE(599)] = 4545, - [SMALL_STATE(600)] = 4653, - [SMALL_STATE(601)] = 4759, - [SMALL_STATE(602)] = 4867, - [SMALL_STATE(603)] = 4973, - [SMALL_STATE(604)] = 5077, - [SMALL_STATE(605)] = 5183, - [SMALL_STATE(606)] = 5289, - [SMALL_STATE(607)] = 5393, - [SMALL_STATE(608)] = 5499, - [SMALL_STATE(609)] = 5603, - [SMALL_STATE(610)] = 5709, - [SMALL_STATE(611)] = 5813, - [SMALL_STATE(612)] = 5917, - [SMALL_STATE(613)] = 6023, - [SMALL_STATE(614)] = 6124, - [SMALL_STATE(615)] = 6225, - [SMALL_STATE(616)] = 6326, - [SMALL_STATE(617)] = 6427, - [SMALL_STATE(618)] = 6528, - [SMALL_STATE(619)] = 6631, - [SMALL_STATE(620)] = 6734, - [SMALL_STATE(621)] = 6835, - [SMALL_STATE(622)] = 6936, - [SMALL_STATE(623)] = 7037, - [SMALL_STATE(624)] = 7138, - [SMALL_STATE(625)] = 7241, - [SMALL_STATE(626)] = 7342, - [SMALL_STATE(627)] = 7443, - [SMALL_STATE(628)] = 7546, - [SMALL_STATE(629)] = 7649, - [SMALL_STATE(630)] = 7752, - [SMALL_STATE(631)] = 7855, - [SMALL_STATE(632)] = 7958, - [SMALL_STATE(633)] = 8061, - [SMALL_STATE(634)] = 8164, - [SMALL_STATE(635)] = 8267, - [SMALL_STATE(636)] = 8370, - [SMALL_STATE(637)] = 8473, - [SMALL_STATE(638)] = 8576, - [SMALL_STATE(639)] = 8679, - [SMALL_STATE(640)] = 8780, - [SMALL_STATE(641)] = 8881, - [SMALL_STATE(642)] = 8982, - [SMALL_STATE(643)] = 9083, - [SMALL_STATE(644)] = 9184, - [SMALL_STATE(645)] = 9285, - [SMALL_STATE(646)] = 9386, - [SMALL_STATE(647)] = 9487, - [SMALL_STATE(648)] = 9588, - [SMALL_STATE(649)] = 9691, - [SMALL_STATE(650)] = 9794, - [SMALL_STATE(651)] = 9895, - [SMALL_STATE(652)] = 9998, - [SMALL_STATE(653)] = 10099, - [SMALL_STATE(654)] = 10202, - [SMALL_STATE(655)] = 10305, - [SMALL_STATE(656)] = 10406, - [SMALL_STATE(657)] = 10509, - [SMALL_STATE(658)] = 10612, - [SMALL_STATE(659)] = 10713, - [SMALL_STATE(660)] = 10814, - [SMALL_STATE(661)] = 10915, - [SMALL_STATE(662)] = 11018, - [SMALL_STATE(663)] = 11119, - [SMALL_STATE(664)] = 11222, - [SMALL_STATE(665)] = 11323, - [SMALL_STATE(666)] = 11424, - [SMALL_STATE(667)] = 11525, - [SMALL_STATE(668)] = 11626, - [SMALL_STATE(669)] = 11727, - [SMALL_STATE(670)] = 11828, - [SMALL_STATE(671)] = 11931, - [SMALL_STATE(672)] = 12032, - [SMALL_STATE(673)] = 12133, - [SMALL_STATE(674)] = 12234, - [SMALL_STATE(675)] = 12337, - [SMALL_STATE(676)] = 12440, - [SMALL_STATE(677)] = 12543, - [SMALL_STATE(678)] = 12644, - [SMALL_STATE(679)] = 12747, - [SMALL_STATE(680)] = 12848, - [SMALL_STATE(681)] = 12951, - [SMALL_STATE(682)] = 13052, - [SMALL_STATE(683)] = 13153, - [SMALL_STATE(684)] = 13256, - [SMALL_STATE(685)] = 13357, - [SMALL_STATE(686)] = 13460, - [SMALL_STATE(687)] = 13561, - [SMALL_STATE(688)] = 13662, - [SMALL_STATE(689)] = 13765, - [SMALL_STATE(690)] = 13868, - [SMALL_STATE(691)] = 13971, - [SMALL_STATE(692)] = 14074, - [SMALL_STATE(693)] = 14177, - [SMALL_STATE(694)] = 14280, - [SMALL_STATE(695)] = 14383, - [SMALL_STATE(696)] = 14486, - [SMALL_STATE(697)] = 14587, - [SMALL_STATE(698)] = 14690, - [SMALL_STATE(699)] = 14793, - [SMALL_STATE(700)] = 14896, - [SMALL_STATE(701)] = 14999, - [SMALL_STATE(702)] = 15102, - [SMALL_STATE(703)] = 15205, - [SMALL_STATE(704)] = 15308, - [SMALL_STATE(705)] = 15411, - [SMALL_STATE(706)] = 15514, - [SMALL_STATE(707)] = 15617, - [SMALL_STATE(708)] = 15718, - [SMALL_STATE(709)] = 15819, - [SMALL_STATE(710)] = 15922, - [SMALL_STATE(711)] = 16025, - [SMALL_STATE(712)] = 16128, - [SMALL_STATE(713)] = 16231, - [SMALL_STATE(714)] = 16344, - [SMALL_STATE(715)] = 16447, - [SMALL_STATE(716)] = 16548, - [SMALL_STATE(717)] = 16651, - [SMALL_STATE(718)] = 16754, - [SMALL_STATE(719)] = 16857, - [SMALL_STATE(720)] = 16958, - [SMALL_STATE(721)] = 17059, - [SMALL_STATE(722)] = 17160, - [SMALL_STATE(723)] = 17261, - [SMALL_STATE(724)] = 17362, - [SMALL_STATE(725)] = 17463, - [SMALL_STATE(726)] = 17566, - [SMALL_STATE(727)] = 17667, - [SMALL_STATE(728)] = 17770, - [SMALL_STATE(729)] = 17873, - [SMALL_STATE(730)] = 17976, - [SMALL_STATE(731)] = 18079, - [SMALL_STATE(732)] = 18182, - [SMALL_STATE(733)] = 18285, - [SMALL_STATE(734)] = 18388, - [SMALL_STATE(735)] = 18491, - [SMALL_STATE(736)] = 18594, - [SMALL_STATE(737)] = 18697, - [SMALL_STATE(738)] = 18800, - [SMALL_STATE(739)] = 18901, - [SMALL_STATE(740)] = 19004, - [SMALL_STATE(741)] = 19105, - [SMALL_STATE(742)] = 19206, - [SMALL_STATE(743)] = 19307, - [SMALL_STATE(744)] = 19408, - [SMALL_STATE(745)] = 19509, - [SMALL_STATE(746)] = 19610, - [SMALL_STATE(747)] = 19713, - [SMALL_STATE(748)] = 19816, - [SMALL_STATE(749)] = 19919, - [SMALL_STATE(750)] = 20020, - [SMALL_STATE(751)] = 20123, - [SMALL_STATE(752)] = 20226, - [SMALL_STATE(753)] = 20329, - [SMALL_STATE(754)] = 20432, - [SMALL_STATE(755)] = 20535, - [SMALL_STATE(756)] = 20638, - [SMALL_STATE(757)] = 20741, - [SMALL_STATE(758)] = 20842, - [SMALL_STATE(759)] = 20945, - [SMALL_STATE(760)] = 21046, - [SMALL_STATE(761)] = 21149, - [SMALL_STATE(762)] = 21252, - [SMALL_STATE(763)] = 21355, - [SMALL_STATE(764)] = 21458, - [SMALL_STATE(765)] = 21561, - [SMALL_STATE(766)] = 21664, - [SMALL_STATE(767)] = 21752, - [SMALL_STATE(768)] = 21853, - [SMALL_STATE(769)] = 21924, - [SMALL_STATE(770)] = 22025, - [SMALL_STATE(771)] = 22096, - [SMALL_STATE(772)] = 22197, - [SMALL_STATE(773)] = 22298, - [SMALL_STATE(774)] = 22369, - [SMALL_STATE(775)] = 22470, - [SMALL_STATE(776)] = 22538, - [SMALL_STATE(777)] = 22601, - [SMALL_STATE(778)] = 22664, - [SMALL_STATE(779)] = 22726, - [SMALL_STATE(780)] = 22788, - [SMALL_STATE(781)] = 22850, - [SMALL_STATE(782)] = 22912, - [SMALL_STATE(783)] = 22974, - [SMALL_STATE(784)] = 23036, - [SMALL_STATE(785)] = 23098, - [SMALL_STATE(786)] = 23160, - [SMALL_STATE(787)] = 23222, - [SMALL_STATE(788)] = 23284, - [SMALL_STATE(789)] = 23343, - [SMALL_STATE(790)] = 23402, - [SMALL_STATE(791)] = 23461, - [SMALL_STATE(792)] = 23520, - [SMALL_STATE(793)] = 23585, - [SMALL_STATE(794)] = 23677, - [SMALL_STATE(795)] = 23769, - [SMALL_STATE(796)] = 23863, - [SMALL_STATE(797)] = 23955, - [SMALL_STATE(798)] = 24047, - [SMALL_STATE(799)] = 24105, - [SMALL_STATE(800)] = 24197, - [SMALL_STATE(801)] = 24289, - [SMALL_STATE(802)] = 24381, - [SMALL_STATE(803)] = 24473, - [SMALL_STATE(804)] = 24565, - [SMALL_STATE(805)] = 24657, - [SMALL_STATE(806)] = 24715, - [SMALL_STATE(807)] = 24807, - [SMALL_STATE(808)] = 24865, - [SMALL_STATE(809)] = 24957, - [SMALL_STATE(810)] = 25015, - [SMALL_STATE(811)] = 25107, - [SMALL_STATE(812)] = 25165, - [SMALL_STATE(813)] = 25223, - [SMALL_STATE(814)] = 25281, - [SMALL_STATE(815)] = 25339, - [SMALL_STATE(816)] = 25431, - [SMALL_STATE(817)] = 25523, - [SMALL_STATE(818)] = 25615, - [SMALL_STATE(819)] = 25673, - [SMALL_STATE(820)] = 25731, - [SMALL_STATE(821)] = 25789, - [SMALL_STATE(822)] = 25847, - [SMALL_STATE(823)] = 25939, - [SMALL_STATE(824)] = 25997, - [SMALL_STATE(825)] = 26055, - [SMALL_STATE(826)] = 26147, - [SMALL_STATE(827)] = 26205, - [SMALL_STATE(828)] = 26297, - [SMALL_STATE(829)] = 26389, - [SMALL_STATE(830)] = 26481, - [SMALL_STATE(831)] = 26539, - [SMALL_STATE(832)] = 26604, - [SMALL_STATE(833)] = 26669, - [SMALL_STATE(834)] = 26758, - [SMALL_STATE(835)] = 26825, - [SMALL_STATE(836)] = 26882, - [SMALL_STATE(837)] = 26939, - [SMALL_STATE(838)] = 27006, - [SMALL_STATE(839)] = 27063, - [SMALL_STATE(840)] = 27120, - [SMALL_STATE(841)] = 27181, - [SMALL_STATE(842)] = 27270, - [SMALL_STATE(843)] = 27337, - [SMALL_STATE(844)] = 27428, - [SMALL_STATE(845)] = 27495, - [SMALL_STATE(846)] = 27562, - [SMALL_STATE(847)] = 27624, - [SMALL_STATE(848)] = 27686, - [SMALL_STATE(849)] = 27750, - [SMALL_STATE(850)] = 27812, - [SMALL_STATE(851)] = 27871, - [SMALL_STATE(852)] = 27930, - [SMALL_STATE(853)] = 27989, - [SMALL_STATE(854)] = 28052, - [SMALL_STATE(855)] = 28134, - [SMALL_STATE(856)] = 28216, - [SMALL_STATE(857)] = 28298, - [SMALL_STATE(858)] = 28380, - [SMALL_STATE(859)] = 28434, - [SMALL_STATE(860)] = 28516, - [SMALL_STATE(861)] = 28570, - [SMALL_STATE(862)] = 28652, - [SMALL_STATE(863)] = 28734, - [SMALL_STATE(864)] = 28816, - [SMALL_STATE(865)] = 28898, - [SMALL_STATE(866)] = 28980, - [SMALL_STATE(867)] = 29043, - [SMALL_STATE(868)] = 29106, - [SMALL_STATE(869)] = 29171, - [SMALL_STATE(870)] = 29250, - [SMALL_STATE(871)] = 29313, - [SMALL_STATE(872)] = 29376, - [SMALL_STATE(873)] = 29429, - [SMALL_STATE(874)] = 29492, - [SMALL_STATE(875)] = 29555, - [SMALL_STATE(876)] = 29618, - [SMALL_STATE(877)] = 29690, - [SMALL_STATE(878)] = 29766, - [SMALL_STATE(879)] = 29834, - [SMALL_STATE(880)] = 29894, - [SMALL_STATE(881)] = 29974, - [SMALL_STATE(882)] = 30038, - [SMALL_STATE(883)] = 30124, - [SMALL_STATE(884)] = 30202, - [SMALL_STATE(885)] = 30288, - [SMALL_STATE(886)] = 30374, - [SMALL_STATE(887)] = 30440, - [SMALL_STATE(888)] = 30522, - [SMALL_STATE(889)] = 30596, - [SMALL_STATE(890)] = 30681, - [SMALL_STATE(891)] = 30748, - [SMALL_STATE(892)] = 30833, - [SMALL_STATE(893)] = 30914, - [SMALL_STATE(894)] = 30965, - [SMALL_STATE(895)] = 31020, - [SMALL_STATE(896)] = 31071, - [SMALL_STATE(897)] = 31122, - [SMALL_STATE(898)] = 31173, - [SMALL_STATE(899)] = 31238, - [SMALL_STATE(900)] = 31301, - [SMALL_STATE(901)] = 31352, - [SMALL_STATE(902)] = 31431, - [SMALL_STATE(903)] = 31508, - [SMALL_STATE(904)] = 31583, - [SMALL_STATE(905)] = 31656, - [SMALL_STATE(906)] = 31727, - [SMALL_STATE(907)] = 31812, - [SMALL_STATE(908)] = 31866, - [SMALL_STATE(909)] = 31950, - [SMALL_STATE(910)] = 32024, - [SMALL_STATE(911)] = 32084, - [SMALL_STATE(912)] = 32144, - [SMALL_STATE(913)] = 32204, - [SMALL_STATE(914)] = 32264, - [SMALL_STATE(915)] = 32348, - [SMALL_STATE(916)] = 32408, - [SMALL_STATE(917)] = 32492, - [SMALL_STATE(918)] = 32562, - [SMALL_STATE(919)] = 32628, - [SMALL_STATE(920)] = 32692, - [SMALL_STATE(921)] = 32754, - [SMALL_STATE(922)] = 32834, - [SMALL_STATE(923)] = 32912, - [SMALL_STATE(924)] = 32984, - [SMALL_STATE(925)] = 33042, - [SMALL_STATE(926)] = 33118, - [SMALL_STATE(927)] = 33167, - [SMALL_STATE(928)] = 33216, - [SMALL_STATE(929)] = 33265, - [SMALL_STATE(930)] = 33314, - [SMALL_STATE(931)] = 33363, - [SMALL_STATE(932)] = 33412, - [SMALL_STATE(933)] = 33461, - [SMALL_STATE(934)] = 33510, - [SMALL_STATE(935)] = 33559, - [SMALL_STATE(936)] = 33608, - [SMALL_STATE(937)] = 33657, - [SMALL_STATE(938)] = 33706, - [SMALL_STATE(939)] = 33755, - [SMALL_STATE(940)] = 33804, - [SMALL_STATE(941)] = 33857, - [SMALL_STATE(942)] = 33906, - [SMALL_STATE(943)] = 33955, - [SMALL_STATE(944)] = 34004, - [SMALL_STATE(945)] = 34053, - [SMALL_STATE(946)] = 34102, - [SMALL_STATE(947)] = 34151, - [SMALL_STATE(948)] = 34200, - [SMALL_STATE(949)] = 34249, - [SMALL_STATE(950)] = 34298, - [SMALL_STATE(951)] = 34347, - [SMALL_STATE(952)] = 34396, - [SMALL_STATE(953)] = 34445, - [SMALL_STATE(954)] = 34494, - [SMALL_STATE(955)] = 34543, - [SMALL_STATE(956)] = 34592, - [SMALL_STATE(957)] = 34641, - [SMALL_STATE(958)] = 34690, - [SMALL_STATE(959)] = 34739, - [SMALL_STATE(960)] = 34788, - [SMALL_STATE(961)] = 34837, - [SMALL_STATE(962)] = 34886, - [SMALL_STATE(963)] = 34935, - [SMALL_STATE(964)] = 34984, - [SMALL_STATE(965)] = 35033, - [SMALL_STATE(966)] = 35082, - [SMALL_STATE(967)] = 35131, - [SMALL_STATE(968)] = 35180, - [SMALL_STATE(969)] = 35229, - [SMALL_STATE(970)] = 35278, - [SMALL_STATE(971)] = 35327, - [SMALL_STATE(972)] = 35376, - [SMALL_STATE(973)] = 35431, - [SMALL_STATE(974)] = 35478, - [SMALL_STATE(975)] = 35525, - [SMALL_STATE(976)] = 35572, - [SMALL_STATE(977)] = 35619, - [SMALL_STATE(978)] = 35666, - [SMALL_STATE(979)] = 35713, - [SMALL_STATE(980)] = 35796, - [SMALL_STATE(981)] = 35855, - [SMALL_STATE(982)] = 35914, - [SMALL_STATE(983)] = 35967, - [SMALL_STATE(984)] = 36022, - [SMALL_STATE(985)] = 36081, - [SMALL_STATE(986)] = 36138, - [SMALL_STATE(987)] = 36197, - [SMALL_STATE(988)] = 36276, - [SMALL_STATE(989)] = 36331, - [SMALL_STATE(990)] = 36378, - [SMALL_STATE(991)] = 36433, - [SMALL_STATE(992)] = 36492, - [SMALL_STATE(993)] = 36545, - [SMALL_STATE(994)] = 36592, - [SMALL_STATE(995)] = 36639, - [SMALL_STATE(996)] = 36686, - [SMALL_STATE(997)] = 36733, - [SMALL_STATE(998)] = 36816, - [SMALL_STATE(999)] = 36899, - [SMALL_STATE(1000)] = 36946, - [SMALL_STATE(1001)] = 36993, - [SMALL_STATE(1002)] = 37040, - [SMALL_STATE(1003)] = 37087, - [SMALL_STATE(1004)] = 37134, - [SMALL_STATE(1005)] = 37189, - [SMALL_STATE(1006)] = 37236, - [SMALL_STATE(1007)] = 37283, - [SMALL_STATE(1008)] = 37330, - [SMALL_STATE(1009)] = 37377, - [SMALL_STATE(1010)] = 37440, - [SMALL_STATE(1011)] = 37505, - [SMALL_STATE(1012)] = 37574, - [SMALL_STATE(1013)] = 37645, - [SMALL_STATE(1014)] = 37718, - [SMALL_STATE(1015)] = 37793, - [SMALL_STATE(1016)] = 37870, - [SMALL_STATE(1017)] = 37949, - [SMALL_STATE(1018)] = 38010, - [SMALL_STATE(1019)] = 38056, - [SMALL_STATE(1020)] = 38102, - [SMALL_STATE(1021)] = 38148, - [SMALL_STATE(1022)] = 38198, - [SMALL_STATE(1023)] = 38244, - [SMALL_STATE(1024)] = 38290, - [SMALL_STATE(1025)] = 38339, - [SMALL_STATE(1026)] = 38384, - [SMALL_STATE(1027)] = 38429, - [SMALL_STATE(1028)] = 38474, - [SMALL_STATE(1029)] = 38519, - [SMALL_STATE(1030)] = 38568, - [SMALL_STATE(1031)] = 38613, - [SMALL_STATE(1032)] = 38658, - [SMALL_STATE(1033)] = 38703, - [SMALL_STATE(1034)] = 38748, - [SMALL_STATE(1035)] = 38793, - [SMALL_STATE(1036)] = 38842, - [SMALL_STATE(1037)] = 38887, - [SMALL_STATE(1038)] = 38932, - [SMALL_STATE(1039)] = 38977, - [SMALL_STATE(1040)] = 39022, - [SMALL_STATE(1041)] = 39067, - [SMALL_STATE(1042)] = 39116, - [SMALL_STATE(1043)] = 39161, - [SMALL_STATE(1044)] = 39210, - [SMALL_STATE(1045)] = 39255, - [SMALL_STATE(1046)] = 39300, - [SMALL_STATE(1047)] = 39345, - [SMALL_STATE(1048)] = 39390, - [SMALL_STATE(1049)] = 39439, - [SMALL_STATE(1050)] = 39488, - [SMALL_STATE(1051)] = 39533, - [SMALL_STATE(1052)] = 39578, - [SMALL_STATE(1053)] = 39623, - [SMALL_STATE(1054)] = 39680, - [SMALL_STATE(1055)] = 39737, - [SMALL_STATE(1056)] = 39786, - [SMALL_STATE(1057)] = 39843, - [SMALL_STATE(1058)] = 39888, - [SMALL_STATE(1059)] = 39933, - [SMALL_STATE(1060)] = 39978, - [SMALL_STATE(1061)] = 40023, - [SMALL_STATE(1062)] = 40068, - [SMALL_STATE(1063)] = 40113, - [SMALL_STATE(1064)] = 40162, - [SMALL_STATE(1065)] = 40207, - [SMALL_STATE(1066)] = 40252, - [SMALL_STATE(1067)] = 40301, - [SMALL_STATE(1068)] = 40350, - [SMALL_STATE(1069)] = 40399, - [SMALL_STATE(1070)] = 40444, - [SMALL_STATE(1071)] = 40489, - [SMALL_STATE(1072)] = 40534, - [SMALL_STATE(1073)] = 40591, - [SMALL_STATE(1074)] = 40636, - [SMALL_STATE(1075)] = 40681, - [SMALL_STATE(1076)] = 40730, - [SMALL_STATE(1077)] = 40779, - [SMALL_STATE(1078)] = 40828, - [SMALL_STATE(1079)] = 40873, - [SMALL_STATE(1080)] = 40922, - [SMALL_STATE(1081)] = 40966, - [SMALL_STATE(1082)] = 41010, - [SMALL_STATE(1083)] = 41058, - [SMALL_STATE(1084)] = 41102, - [SMALL_STATE(1085)] = 41146, - [SMALL_STATE(1086)] = 41190, - [SMALL_STATE(1087)] = 41242, - [SMALL_STATE(1088)] = 41290, - [SMALL_STATE(1089)] = 41334, - [SMALL_STATE(1090)] = 41378, - [SMALL_STATE(1091)] = 41426, - [SMALL_STATE(1092)] = 41474, - [SMALL_STATE(1093)] = 41518, - [SMALL_STATE(1094)] = 41562, - [SMALL_STATE(1095)] = 41606, - [SMALL_STATE(1096)] = 41650, - [SMALL_STATE(1097)] = 41694, - [SMALL_STATE(1098)] = 41738, - [SMALL_STATE(1099)] = 41782, - [SMALL_STATE(1100)] = 41826, - [SMALL_STATE(1101)] = 41870, - [SMALL_STATE(1102)] = 41914, - [SMALL_STATE(1103)] = 41958, - [SMALL_STATE(1104)] = 42008, - [SMALL_STATE(1105)] = 42056, - [SMALL_STATE(1106)] = 42100, - [SMALL_STATE(1107)] = 42144, - [SMALL_STATE(1108)] = 42188, - [SMALL_STATE(1109)] = 42236, - [SMALL_STATE(1110)] = 42284, - [SMALL_STATE(1111)] = 42334, - [SMALL_STATE(1112)] = 42378, - [SMALL_STATE(1113)] = 42422, - [SMALL_STATE(1114)] = 42466, - [SMALL_STATE(1115)] = 42510, - [SMALL_STATE(1116)] = 42554, - [SMALL_STATE(1117)] = 42598, - [SMALL_STATE(1118)] = 42642, - [SMALL_STATE(1119)] = 42697, - [SMALL_STATE(1120)] = 42766, - [SMALL_STATE(1121)] = 42835, - [SMALL_STATE(1122)] = 42904, - [SMALL_STATE(1123)] = 42973, - [SMALL_STATE(1124)] = 43029, - [SMALL_STATE(1125)] = 43085, - [SMALL_STATE(1126)] = 43135, - [SMALL_STATE(1127)] = 43191, - [SMALL_STATE(1128)] = 43243, - [SMALL_STATE(1129)] = 43295, - [SMALL_STATE(1130)] = 43351, - [SMALL_STATE(1131)] = 43407, - [SMALL_STATE(1132)] = 43484, - [SMALL_STATE(1133)] = 43557, - [SMALL_STATE(1134)] = 43614, - [SMALL_STATE(1135)] = 43691, - [SMALL_STATE(1136)] = 43768, - [SMALL_STATE(1137)] = 43827, - [SMALL_STATE(1138)] = 43904, - [SMALL_STATE(1139)] = 43953, - [SMALL_STATE(1140)] = 44008, - [SMALL_STATE(1141)] = 44077, - [SMALL_STATE(1142)] = 44144, - [SMALL_STATE(1143)] = 44209, - [SMALL_STATE(1144)] = 44272, - [SMALL_STATE(1145)] = 44343, - [SMALL_STATE(1146)] = 44407, - [SMALL_STATE(1147)] = 44481, - [SMALL_STATE(1148)] = 44549, - [SMALL_STATE(1149)] = 44623, - [SMALL_STATE(1150)] = 44665, - [SMALL_STATE(1151)] = 44727, - [SMALL_STATE(1152)] = 44767, - [SMALL_STATE(1153)] = 44821, - [SMALL_STATE(1154)] = 44895, - [SMALL_STATE(1155)] = 44937, - [SMALL_STATE(1156)] = 45005, - [SMALL_STATE(1157)] = 45047, - [SMALL_STATE(1158)] = 45105, - [SMALL_STATE(1159)] = 45147, - [SMALL_STATE(1160)] = 45213, - [SMALL_STATE(1161)] = 45253, - [SMALL_STATE(1162)] = 45323, - [SMALL_STATE(1163)] = 45363, - [SMALL_STATE(1164)] = 45403, - [SMALL_STATE(1165)] = 45445, - [SMALL_STATE(1166)] = 45501, - [SMALL_STATE(1167)] = 45544, - [SMALL_STATE(1168)] = 45597, - [SMALL_STATE(1169)] = 45652, - [SMALL_STATE(1170)] = 45695, - [SMALL_STATE(1171)] = 45768, - [SMALL_STATE(1172)] = 45835, - [SMALL_STATE(1173)] = 45892, - [SMALL_STATE(1174)] = 45931, - [SMALL_STATE(1175)] = 46000, - [SMALL_STATE(1176)] = 46073, - [SMALL_STATE(1177)] = 46146, - [SMALL_STATE(1178)] = 46219, - [SMALL_STATE(1179)] = 46286, - [SMALL_STATE(1180)] = 46329, - [SMALL_STATE(1181)] = 46392, - [SMALL_STATE(1182)] = 46457, - [SMALL_STATE(1183)] = 46520, - [SMALL_STATE(1184)] = 46581, - [SMALL_STATE(1185)] = 46641, - [SMALL_STATE(1186)] = 46701, - [SMALL_STATE(1187)] = 46761, - [SMALL_STATE(1188)] = 46821, - [SMALL_STATE(1189)] = 46881, - [SMALL_STATE(1190)] = 46941, - [SMALL_STATE(1191)] = 47001, - [SMALL_STATE(1192)] = 47061, - [SMALL_STATE(1193)] = 47136, - [SMALL_STATE(1194)] = 47211, - [SMALL_STATE(1195)] = 47286, - [SMALL_STATE(1196)] = 47357, - [SMALL_STATE(1197)] = 47432, - [SMALL_STATE(1198)] = 47507, - [SMALL_STATE(1199)] = 47582, - [SMALL_STATE(1200)] = 47657, - [SMALL_STATE(1201)] = 47732, - [SMALL_STATE(1202)] = 47805, - [SMALL_STATE(1203)] = 47877, - [SMALL_STATE(1204)] = 47933, - [SMALL_STATE(1205)] = 48005, - [SMALL_STATE(1206)] = 48077, - [SMALL_STATE(1207)] = 48149, - [SMALL_STATE(1208)] = 48205, - [SMALL_STATE(1209)] = 48277, - [SMALL_STATE(1210)] = 48349, - [SMALL_STATE(1211)] = 48403, - [SMALL_STATE(1212)] = 48477, - [SMALL_STATE(1213)] = 48533, - [SMALL_STATE(1214)] = 48605, - [SMALL_STATE(1215)] = 48675, - [SMALL_STATE(1216)] = 48731, - [SMALL_STATE(1217)] = 48783, - [SMALL_STATE(1218)] = 48855, - [SMALL_STATE(1219)] = 48927, - [SMALL_STATE(1220)] = 48983, - [SMALL_STATE(1221)] = 49055, - [SMALL_STATE(1222)] = 49127, - [SMALL_STATE(1223)] = 49199, - [SMALL_STATE(1224)] = 49255, - [SMALL_STATE(1225)] = 49323, - [SMALL_STATE(1226)] = 49395, - [SMALL_STATE(1227)] = 49467, - [SMALL_STATE(1228)] = 49523, - [SMALL_STATE(1229)] = 49579, - [SMALL_STATE(1230)] = 49651, - [SMALL_STATE(1231)] = 49723, - [SMALL_STATE(1232)] = 49793, - [SMALL_STATE(1233)] = 49849, - [SMALL_STATE(1234)] = 49905, - [SMALL_STATE(1235)] = 49961, - [SMALL_STATE(1236)] = 50021, - [SMALL_STATE(1237)] = 50083, - [SMALL_STATE(1238)] = 50139, - [SMALL_STATE(1239)] = 50203, - [SMALL_STATE(1240)] = 50259, - [SMALL_STATE(1241)] = 50325, - [SMALL_STATE(1242)] = 50397, - [SMALL_STATE(1243)] = 50469, - [SMALL_STATE(1244)] = 50525, - [SMALL_STATE(1245)] = 50581, - [SMALL_STATE(1246)] = 50637, - [SMALL_STATE(1247)] = 50707, - [SMALL_STATE(1248)] = 50779, - [SMALL_STATE(1249)] = 50845, - [SMALL_STATE(1250)] = 50917, - [SMALL_STATE(1251)] = 50987, - [SMALL_STATE(1252)] = 51057, - [SMALL_STATE(1253)] = 51129, - [SMALL_STATE(1254)] = 51185, - [SMALL_STATE(1255)] = 51241, - [SMALL_STATE(1256)] = 51313, - [SMALL_STATE(1257)] = 51383, - [SMALL_STATE(1258)] = 51455, - [SMALL_STATE(1259)] = 51527, - [SMALL_STATE(1260)] = 51599, - [SMALL_STATE(1261)] = 51669, - [SMALL_STATE(1262)] = 51725, - [SMALL_STATE(1263)] = 51795, - [SMALL_STATE(1264)] = 51867, - [SMALL_STATE(1265)] = 51936, - [SMALL_STATE(1266)] = 52005, - [SMALL_STATE(1267)] = 52074, - [SMALL_STATE(1268)] = 52143, - [SMALL_STATE(1269)] = 52212, - [SMALL_STATE(1270)] = 52281, - [SMALL_STATE(1271)] = 52350, - [SMALL_STATE(1272)] = 52419, - [SMALL_STATE(1273)] = 52488, - [SMALL_STATE(1274)] = 52541, - [SMALL_STATE(1275)] = 52610, - [SMALL_STATE(1276)] = 52649, - [SMALL_STATE(1277)] = 52702, - [SMALL_STATE(1278)] = 52755, - [SMALL_STATE(1279)] = 52824, - [SMALL_STATE(1280)] = 52893, - [SMALL_STATE(1281)] = 52946, - [SMALL_STATE(1282)] = 53015, - [SMALL_STATE(1283)] = 53084, - [SMALL_STATE(1284)] = 53153, - [SMALL_STATE(1285)] = 53222, - [SMALL_STATE(1286)] = 53291, - [SMALL_STATE(1287)] = 53360, - [SMALL_STATE(1288)] = 53413, - [SMALL_STATE(1289)] = 53482, - [SMALL_STATE(1290)] = 53551, - [SMALL_STATE(1291)] = 53620, - [SMALL_STATE(1292)] = 53689, - [SMALL_STATE(1293)] = 53758, - [SMALL_STATE(1294)] = 53811, - [SMALL_STATE(1295)] = 53880, - [SMALL_STATE(1296)] = 53949, - [SMALL_STATE(1297)] = 54018, - [SMALL_STATE(1298)] = 54087, - [SMALL_STATE(1299)] = 54156, - [SMALL_STATE(1300)] = 54225, - [SMALL_STATE(1301)] = 54294, - [SMALL_STATE(1302)] = 54363, - [SMALL_STATE(1303)] = 54405, - [SMALL_STATE(1304)] = 54441, - [SMALL_STATE(1305)] = 54485, - [SMALL_STATE(1306)] = 54527, - [SMALL_STATE(1307)] = 54593, - [SMALL_STATE(1308)] = 54629, - [SMALL_STATE(1309)] = 54665, - [SMALL_STATE(1310)] = 54701, - [SMALL_STATE(1311)] = 54748, - [SMALL_STATE(1312)] = 54795, - [SMALL_STATE(1313)] = 54842, - [SMALL_STATE(1314)] = 54873, - [SMALL_STATE(1315)] = 54920, - [SMALL_STATE(1316)] = 54967, - [SMALL_STATE(1317)] = 54998, - [SMALL_STATE(1318)] = 55045, - [SMALL_STATE(1319)] = 55089, - [SMALL_STATE(1320)] = 55133, - [SMALL_STATE(1321)] = 55167, - [SMALL_STATE(1322)] = 55203, - [SMALL_STATE(1323)] = 55247, - [SMALL_STATE(1324)] = 55285, - [SMALL_STATE(1325)] = 55329, - [SMALL_STATE(1326)] = 55373, - [SMALL_STATE(1327)] = 55417, - [SMALL_STATE(1328)] = 55472, - [SMALL_STATE(1329)] = 55515, - [SMALL_STATE(1330)] = 55570, - [SMALL_STATE(1331)] = 55613, - [SMALL_STATE(1332)] = 55656, - [SMALL_STATE(1333)] = 55689, - [SMALL_STATE(1334)] = 55744, - [SMALL_STATE(1335)] = 55784, - [SMALL_STATE(1336)] = 55824, - [SMALL_STATE(1337)] = 55852, - [SMALL_STATE(1338)] = 55892, - [SMALL_STATE(1339)] = 55940, - [SMALL_STATE(1340)] = 55980, - [SMALL_STATE(1341)] = 56020, - [SMALL_STATE(1342)] = 56060, - [SMALL_STATE(1343)] = 56100, - [SMALL_STATE(1344)] = 56140, - [SMALL_STATE(1345)] = 56180, - [SMALL_STATE(1346)] = 56208, - [SMALL_STATE(1347)] = 56248, - [SMALL_STATE(1348)] = 56298, - [SMALL_STATE(1349)] = 56338, - [SMALL_STATE(1350)] = 56378, - [SMALL_STATE(1351)] = 56410, - [SMALL_STATE(1352)] = 56438, - [SMALL_STATE(1353)] = 56466, - [SMALL_STATE(1354)] = 56506, - [SMALL_STATE(1355)] = 56546, - [SMALL_STATE(1356)] = 56586, - [SMALL_STATE(1357)] = 56626, - [SMALL_STATE(1358)] = 56658, - [SMALL_STATE(1359)] = 56686, - [SMALL_STATE(1360)] = 56726, - [SMALL_STATE(1361)] = 56766, - [SMALL_STATE(1362)] = 56806, - [SMALL_STATE(1363)] = 56834, - [SMALL_STATE(1364)] = 56874, - [SMALL_STATE(1365)] = 56914, - [SMALL_STATE(1366)] = 56954, - [SMALL_STATE(1367)] = 56994, - [SMALL_STATE(1368)] = 57034, - [SMALL_STATE(1369)] = 57074, - [SMALL_STATE(1370)] = 57114, - [SMALL_STATE(1371)] = 57154, - [SMALL_STATE(1372)] = 57194, - [SMALL_STATE(1373)] = 57234, - [SMALL_STATE(1374)] = 57274, - [SMALL_STATE(1375)] = 57302, - [SMALL_STATE(1376)] = 57330, - [SMALL_STATE(1377)] = 57370, - [SMALL_STATE(1378)] = 57410, - [SMALL_STATE(1379)] = 57438, - [SMALL_STATE(1380)] = 57470, - [SMALL_STATE(1381)] = 57510, - [SMALL_STATE(1382)] = 57538, - [SMALL_STATE(1383)] = 57578, - [SMALL_STATE(1384)] = 57626, - [SMALL_STATE(1385)] = 57666, - [SMALL_STATE(1386)] = 57712, - [SMALL_STATE(1387)] = 57758, - [SMALL_STATE(1388)] = 57802, - [SMALL_STATE(1389)] = 57844, - [SMALL_STATE(1390)] = 57884, - [SMALL_STATE(1391)] = 57924, - [SMALL_STATE(1392)] = 57960, - [SMALL_STATE(1393)] = 57994, - [SMALL_STATE(1394)] = 58034, - [SMALL_STATE(1395)] = 58074, - [SMALL_STATE(1396)] = 58114, - [SMALL_STATE(1397)] = 58146, - [SMALL_STATE(1398)] = 58178, - [SMALL_STATE(1399)] = 58218, - [SMALL_STATE(1400)] = 58258, - [SMALL_STATE(1401)] = 58307, - [SMALL_STATE(1402)] = 58352, - [SMALL_STATE(1403)] = 58389, - [SMALL_STATE(1404)] = 58424, - [SMALL_STATE(1405)] = 58457, - [SMALL_STATE(1406)] = 58502, - [SMALL_STATE(1407)] = 58533, - [SMALL_STATE(1408)] = 58578, - [SMALL_STATE(1409)] = 58605, - [SMALL_STATE(1410)] = 58648, - [SMALL_STATE(1411)] = 58693, - [SMALL_STATE(1412)] = 58720, - [SMALL_STATE(1413)] = 58765, - [SMALL_STATE(1414)] = 58810, - [SMALL_STATE(1415)] = 58855, - [SMALL_STATE(1416)] = 58890, - [SMALL_STATE(1417)] = 58917, - [SMALL_STATE(1418)] = 58962, - [SMALL_STATE(1419)] = 59011, - [SMALL_STATE(1420)] = 59052, - [SMALL_STATE(1421)] = 59097, - [SMALL_STATE(1422)] = 59142, - [SMALL_STATE(1423)] = 59169, - [SMALL_STATE(1424)] = 59214, - [SMALL_STATE(1425)] = 59243, - [SMALL_STATE(1426)] = 59270, - [SMALL_STATE(1427)] = 59315, - [SMALL_STATE(1428)] = 59346, - [SMALL_STATE(1429)] = 59385, - [SMALL_STATE(1430)] = 59418, - [SMALL_STATE(1431)] = 59445, - [SMALL_STATE(1432)] = 59472, - [SMALL_STATE(1433)] = 59517, - [SMALL_STATE(1434)] = 59562, - [SMALL_STATE(1435)] = 59589, - [SMALL_STATE(1436)] = 59620, - [SMALL_STATE(1437)] = 59647, - [SMALL_STATE(1438)] = 59692, - [SMALL_STATE(1439)] = 59723, - [SMALL_STATE(1440)] = 59754, - [SMALL_STATE(1441)] = 59799, - [SMALL_STATE(1442)] = 59830, - [SMALL_STATE(1443)] = 59857, - [SMALL_STATE(1444)] = 59888, - [SMALL_STATE(1445)] = 59919, - [SMALL_STATE(1446)] = 59950, - [SMALL_STATE(1447)] = 59995, - [SMALL_STATE(1448)] = 60036, - [SMALL_STATE(1449)] = 60077, - [SMALL_STATE(1450)] = 60118, - [SMALL_STATE(1451)] = 60159, - [SMALL_STATE(1452)] = 60200, - [SMALL_STATE(1453)] = 60235, - [SMALL_STATE(1454)] = 60276, - [SMALL_STATE(1455)] = 60317, - [SMALL_STATE(1456)] = 60358, - [SMALL_STATE(1457)] = 60399, - [SMALL_STATE(1458)] = 60440, - [SMALL_STATE(1459)] = 60488, - [SMALL_STATE(1460)] = 60536, - [SMALL_STATE(1461)] = 60574, - [SMALL_STATE(1462)] = 60622, - [SMALL_STATE(1463)] = 60670, - [SMALL_STATE(1464)] = 60718, - [SMALL_STATE(1465)] = 60756, - [SMALL_STATE(1466)] = 60797, - [SMALL_STATE(1467)] = 60842, - [SMALL_STATE(1468)] = 60887, - [SMALL_STATE(1469)] = 60928, - [SMALL_STATE(1470)] = 60967, - [SMALL_STATE(1471)] = 61012, - [SMALL_STATE(1472)] = 61053, - [SMALL_STATE(1473)] = 61098, - [SMALL_STATE(1474)] = 61143, - [SMALL_STATE(1475)] = 61184, - [SMALL_STATE(1476)] = 61222, - [SMALL_STATE(1477)] = 61260, - [SMALL_STATE(1478)] = 61298, - [SMALL_STATE(1479)] = 61324, - [SMALL_STATE(1480)] = 61362, - [SMALL_STATE(1481)] = 61392, - [SMALL_STATE(1482)] = 61430, - [SMALL_STATE(1483)] = 61455, - [SMALL_STATE(1484)] = 61484, - [SMALL_STATE(1485)] = 61513, - [SMALL_STATE(1486)] = 61542, - [SMALL_STATE(1487)] = 61577, - [SMALL_STATE(1488)] = 61616, - [SMALL_STATE(1489)] = 61651, - [SMALL_STATE(1490)] = 61676, - [SMALL_STATE(1491)] = 61711, - [SMALL_STATE(1492)] = 61746, - [SMALL_STATE(1493)] = 61781, - [SMALL_STATE(1494)] = 61816, - [SMALL_STATE(1495)] = 61851, - [SMALL_STATE(1496)] = 61886, - [SMALL_STATE(1497)] = 61911, - [SMALL_STATE(1498)] = 61944, - [SMALL_STATE(1499)] = 61979, - [SMALL_STATE(1500)] = 62014, - [SMALL_STATE(1501)] = 62049, - [SMALL_STATE(1502)] = 62074, - [SMALL_STATE(1503)] = 62103, - [SMALL_STATE(1504)] = 62138, - [SMALL_STATE(1505)] = 62171, - [SMALL_STATE(1506)] = 62203, - [SMALL_STATE(1507)] = 62235, - [SMALL_STATE(1508)] = 62259, - [SMALL_STATE(1509)] = 62291, - [SMALL_STATE(1510)] = 62323, - [SMALL_STATE(1511)] = 62343, - [SMALL_STATE(1512)] = 62379, - [SMALL_STATE(1513)] = 62411, - [SMALL_STATE(1514)] = 62445, - [SMALL_STATE(1515)] = 62477, - [SMALL_STATE(1516)] = 62497, - [SMALL_STATE(1517)] = 62517, - [SMALL_STATE(1518)] = 62548, - [SMALL_STATE(1519)] = 62577, - [SMALL_STATE(1520)] = 62606, - [SMALL_STATE(1521)] = 62637, - [SMALL_STATE(1522)] = 62666, - [SMALL_STATE(1523)] = 62693, - [SMALL_STATE(1524)] = 62722, - [SMALL_STATE(1525)] = 62751, - [SMALL_STATE(1526)] = 62780, - [SMALL_STATE(1527)] = 62811, - [SMALL_STATE(1528)] = 62838, - [SMALL_STATE(1529)] = 62867, - [SMALL_STATE(1530)] = 62900, - [SMALL_STATE(1531)] = 62933, - [SMALL_STATE(1532)] = 62962, - [SMALL_STATE(1533)] = 62989, - [SMALL_STATE(1534)] = 63018, - [SMALL_STATE(1535)] = 63045, - [SMALL_STATE(1536)] = 63078, - [SMALL_STATE(1537)] = 63107, - [SMALL_STATE(1538)] = 63131, - [SMALL_STATE(1539)] = 63157, - [SMALL_STATE(1540)] = 63175, - [SMALL_STATE(1541)] = 63201, - [SMALL_STATE(1542)] = 63219, - [SMALL_STATE(1543)] = 63245, - [SMALL_STATE(1544)] = 63263, - [SMALL_STATE(1545)] = 63281, - [SMALL_STATE(1546)] = 63299, - [SMALL_STATE(1547)] = 63317, - [SMALL_STATE(1548)] = 63341, - [SMALL_STATE(1549)] = 63367, - [SMALL_STATE(1550)] = 63397, - [SMALL_STATE(1551)] = 63419, - [SMALL_STATE(1552)] = 63448, - [SMALL_STATE(1553)] = 63469, - [SMALL_STATE(1554)] = 63490, - [SMALL_STATE(1555)] = 63515, - [SMALL_STATE(1556)] = 63544, - [SMALL_STATE(1557)] = 63565, - [SMALL_STATE(1558)] = 63586, - [SMALL_STATE(1559)] = 63607, - [SMALL_STATE(1560)] = 63636, - [SMALL_STATE(1561)] = 63665, - [SMALL_STATE(1562)] = 63686, - [SMALL_STATE(1563)] = 63707, - [SMALL_STATE(1564)] = 63728, - [SMALL_STATE(1565)] = 63757, - [SMALL_STATE(1566)] = 63778, - [SMALL_STATE(1567)] = 63799, - [SMALL_STATE(1568)] = 63823, - [SMALL_STATE(1569)] = 63849, - [SMALL_STATE(1570)] = 63875, - [SMALL_STATE(1571)] = 63893, - [SMALL_STATE(1572)] = 63913, - [SMALL_STATE(1573)] = 63929, - [SMALL_STATE(1574)] = 63947, - [SMALL_STATE(1575)] = 63973, - [SMALL_STATE(1576)] = 63997, - [SMALL_STATE(1577)] = 64013, - [SMALL_STATE(1578)] = 64029, - [SMALL_STATE(1579)] = 64055, - [SMALL_STATE(1580)] = 64075, - [SMALL_STATE(1581)] = 64101, - [SMALL_STATE(1582)] = 64127, - [SMALL_STATE(1583)] = 64153, - [SMALL_STATE(1584)] = 64179, - [SMALL_STATE(1585)] = 64203, - [SMALL_STATE(1586)] = 64227, - [SMALL_STATE(1587)] = 64251, - [SMALL_STATE(1588)] = 64267, - [SMALL_STATE(1589)] = 64283, - [SMALL_STATE(1590)] = 64299, - [SMALL_STATE(1591)] = 64321, - [SMALL_STATE(1592)] = 64347, - [SMALL_STATE(1593)] = 64363, - [SMALL_STATE(1594)] = 64387, - [SMALL_STATE(1595)] = 64403, - [SMALL_STATE(1596)] = 64429, - [SMALL_STATE(1597)] = 64449, - [SMALL_STATE(1598)] = 64475, - [SMALL_STATE(1599)] = 64498, - [SMALL_STATE(1600)] = 64515, - [SMALL_STATE(1601)] = 64540, - [SMALL_STATE(1602)] = 64555, - [SMALL_STATE(1603)] = 64578, - [SMALL_STATE(1604)] = 64593, - [SMALL_STATE(1605)] = 64608, - [SMALL_STATE(1606)] = 64623, - [SMALL_STATE(1607)] = 64638, - [SMALL_STATE(1608)] = 64653, - [SMALL_STATE(1609)] = 64672, - [SMALL_STATE(1610)] = 64687, - [SMALL_STATE(1611)] = 64706, - [SMALL_STATE(1612)] = 64721, - [SMALL_STATE(1613)] = 64736, - [SMALL_STATE(1614)] = 64759, - [SMALL_STATE(1615)] = 64775, - [SMALL_STATE(1616)] = 64789, - [SMALL_STATE(1617)] = 64805, - [SMALL_STATE(1618)] = 64821, - [SMALL_STATE(1619)] = 64835, - [SMALL_STATE(1620)] = 64849, - [SMALL_STATE(1621)] = 64863, - [SMALL_STATE(1622)] = 64877, - [SMALL_STATE(1623)] = 64891, - [SMALL_STATE(1624)] = 64907, - [SMALL_STATE(1625)] = 64925, - [SMALL_STATE(1626)] = 64939, - [SMALL_STATE(1627)] = 64953, - [SMALL_STATE(1628)] = 64967, - [SMALL_STATE(1629)] = 64981, - [SMALL_STATE(1630)] = 64995, - [SMALL_STATE(1631)] = 65009, - [SMALL_STATE(1632)] = 65023, - [SMALL_STATE(1633)] = 65037, - [SMALL_STATE(1634)] = 65051, - [SMALL_STATE(1635)] = 65067, - [SMALL_STATE(1636)] = 65085, - [SMALL_STATE(1637)] = 65099, - [SMALL_STATE(1638)] = 65117, - [SMALL_STATE(1639)] = 65135, - [SMALL_STATE(1640)] = 65153, - [SMALL_STATE(1641)] = 65167, - [SMALL_STATE(1642)] = 65185, - [SMALL_STATE(1643)] = 65201, - [SMALL_STATE(1644)] = 65219, - [SMALL_STATE(1645)] = 65230, - [SMALL_STATE(1646)] = 65241, - [SMALL_STATE(1647)] = 65252, - [SMALL_STATE(1648)] = 65263, - [SMALL_STATE(1649)] = 65274, - [SMALL_STATE(1650)] = 65285, - [SMALL_STATE(1651)] = 65304, - [SMALL_STATE(1652)] = 65321, - [SMALL_STATE(1653)] = 65340, - [SMALL_STATE(1654)] = 65351, - [SMALL_STATE(1655)] = 65362, - [SMALL_STATE(1656)] = 65381, - [SMALL_STATE(1657)] = 65392, - [SMALL_STATE(1658)] = 65403, - [SMALL_STATE(1659)] = 65414, - [SMALL_STATE(1660)] = 65431, - [SMALL_STATE(1661)] = 65442, - [SMALL_STATE(1662)] = 65455, - [SMALL_STATE(1663)] = 65469, - [SMALL_STATE(1664)] = 65483, - [SMALL_STATE(1665)] = 65493, - [SMALL_STATE(1666)] = 65509, - [SMALL_STATE(1667)] = 65523, - [SMALL_STATE(1668)] = 65537, - [SMALL_STATE(1669)] = 65551, - [SMALL_STATE(1670)] = 65565, - [SMALL_STATE(1671)] = 65581, - [SMALL_STATE(1672)] = 65595, - [SMALL_STATE(1673)] = 65609, - [SMALL_STATE(1674)] = 65625, - [SMALL_STATE(1675)] = 65641, - [SMALL_STATE(1676)] = 65657, - [SMALL_STATE(1677)] = 65673, - [SMALL_STATE(1678)] = 65687, - [SMALL_STATE(1679)] = 65701, - [SMALL_STATE(1680)] = 65717, - [SMALL_STATE(1681)] = 65733, - [SMALL_STATE(1682)] = 65747, - [SMALL_STATE(1683)] = 65761, - [SMALL_STATE(1684)] = 65775, - [SMALL_STATE(1685)] = 65789, - [SMALL_STATE(1686)] = 65803, - [SMALL_STATE(1687)] = 65819, - [SMALL_STATE(1688)] = 65833, - [SMALL_STATE(1689)] = 65849, - [SMALL_STATE(1690)] = 65865, - [SMALL_STATE(1691)] = 65881, - [SMALL_STATE(1692)] = 65895, - [SMALL_STATE(1693)] = 65911, - [SMALL_STATE(1694)] = 65925, - [SMALL_STATE(1695)] = 65941, - [SMALL_STATE(1696)] = 65957, - [SMALL_STATE(1697)] = 65973, - [SMALL_STATE(1698)] = 65987, - [SMALL_STATE(1699)] = 66001, - [SMALL_STATE(1700)] = 66017, - [SMALL_STATE(1701)] = 66031, - [SMALL_STATE(1702)] = 66045, - [SMALL_STATE(1703)] = 66059, + [SMALL_STATE(582)] = 0, + [SMALL_STATE(583)] = 115, + [SMALL_STATE(584)] = 230, + [SMALL_STATE(585)] = 342, + [SMALL_STATE(586)] = 452, + [SMALL_STATE(587)] = 561, + [SMALL_STATE(588)] = 670, + [SMALL_STATE(589)] = 779, + [SMALL_STATE(590)] = 888, + [SMALL_STATE(591)] = 997, + [SMALL_STATE(592)] = 1106, + [SMALL_STATE(593)] = 1213, + [SMALL_STATE(594)] = 1322, + [SMALL_STATE(595)] = 1431, + [SMALL_STATE(596)] = 1538, + [SMALL_STATE(597)] = 1645, + [SMALL_STATE(598)] = 1754, + [SMALL_STATE(599)] = 1863, + [SMALL_STATE(600)] = 1972, + [SMALL_STATE(601)] = 2079, + [SMALL_STATE(602)] = 2188, + [SMALL_STATE(603)] = 2297, + [SMALL_STATE(604)] = 2406, + [SMALL_STATE(605)] = 2515, + [SMALL_STATE(606)] = 2624, + [SMALL_STATE(607)] = 2733, + [SMALL_STATE(608)] = 2842, + [SMALL_STATE(609)] = 2951, + [SMALL_STATE(610)] = 3060, + [SMALL_STATE(611)] = 3169, + [SMALL_STATE(612)] = 3275, + [SMALL_STATE(613)] = 3379, + [SMALL_STATE(614)] = 3487, + [SMALL_STATE(615)] = 3593, + [SMALL_STATE(616)] = 3699, + [SMALL_STATE(617)] = 3805, + [SMALL_STATE(618)] = 3911, + [SMALL_STATE(619)] = 4015, + [SMALL_STATE(620)] = 4123, + [SMALL_STATE(621)] = 4227, + [SMALL_STATE(622)] = 4333, + [SMALL_STATE(623)] = 4439, + [SMALL_STATE(624)] = 4543, + [SMALL_STATE(625)] = 4647, + [SMALL_STATE(626)] = 4751, + [SMALL_STATE(627)] = 4859, + [SMALL_STATE(628)] = 4963, + [SMALL_STATE(629)] = 5071, + [SMALL_STATE(630)] = 5177, + [SMALL_STATE(631)] = 5281, + [SMALL_STATE(632)] = 5385, + [SMALL_STATE(633)] = 5493, + [SMALL_STATE(634)] = 5599, + [SMALL_STATE(635)] = 5707, + [SMALL_STATE(636)] = 5811, + [SMALL_STATE(637)] = 5917, + [SMALL_STATE(638)] = 6023, + [SMALL_STATE(639)] = 6126, + [SMALL_STATE(640)] = 6227, + [SMALL_STATE(641)] = 6330, + [SMALL_STATE(642)] = 6433, + [SMALL_STATE(643)] = 6534, + [SMALL_STATE(644)] = 6635, + [SMALL_STATE(645)] = 6738, + [SMALL_STATE(646)] = 6841, + [SMALL_STATE(647)] = 6944, + [SMALL_STATE(648)] = 7045, + [SMALL_STATE(649)] = 7148, + [SMALL_STATE(650)] = 7261, + [SMALL_STATE(651)] = 7364, + [SMALL_STATE(652)] = 7467, + [SMALL_STATE(653)] = 7570, + [SMALL_STATE(654)] = 7673, + [SMALL_STATE(655)] = 7774, + [SMALL_STATE(656)] = 7875, + [SMALL_STATE(657)] = 7976, + [SMALL_STATE(658)] = 8077, + [SMALL_STATE(659)] = 8178, + [SMALL_STATE(660)] = 8279, + [SMALL_STATE(661)] = 8380, + [SMALL_STATE(662)] = 8481, + [SMALL_STATE(663)] = 8582, + [SMALL_STATE(664)] = 8683, + [SMALL_STATE(665)] = 8784, + [SMALL_STATE(666)] = 8887, + [SMALL_STATE(667)] = 8988, + [SMALL_STATE(668)] = 9089, + [SMALL_STATE(669)] = 9190, + [SMALL_STATE(670)] = 9291, + [SMALL_STATE(671)] = 9392, + [SMALL_STATE(672)] = 9495, + [SMALL_STATE(673)] = 9598, + [SMALL_STATE(674)] = 9699, + [SMALL_STATE(675)] = 9800, + [SMALL_STATE(676)] = 9903, + [SMALL_STATE(677)] = 10006, + [SMALL_STATE(678)] = 10109, + [SMALL_STATE(679)] = 10210, + [SMALL_STATE(680)] = 10311, + [SMALL_STATE(681)] = 10412, + [SMALL_STATE(682)] = 10515, + [SMALL_STATE(683)] = 10616, + [SMALL_STATE(684)] = 10717, + [SMALL_STATE(685)] = 10818, + [SMALL_STATE(686)] = 10921, + [SMALL_STATE(687)] = 11024, + [SMALL_STATE(688)] = 11125, + [SMALL_STATE(689)] = 11228, + [SMALL_STATE(690)] = 11329, + [SMALL_STATE(691)] = 11432, + [SMALL_STATE(692)] = 11533, + [SMALL_STATE(693)] = 11634, + [SMALL_STATE(694)] = 11735, + [SMALL_STATE(695)] = 11838, + [SMALL_STATE(696)] = 11941, + [SMALL_STATE(697)] = 12042, + [SMALL_STATE(698)] = 12143, + [SMALL_STATE(699)] = 12244, + [SMALL_STATE(700)] = 12345, + [SMALL_STATE(701)] = 12446, + [SMALL_STATE(702)] = 12547, + [SMALL_STATE(703)] = 12648, + [SMALL_STATE(704)] = 12751, + [SMALL_STATE(705)] = 12852, + [SMALL_STATE(706)] = 12953, + [SMALL_STATE(707)] = 13054, + [SMALL_STATE(708)] = 13155, + [SMALL_STATE(709)] = 13256, + [SMALL_STATE(710)] = 13357, + [SMALL_STATE(711)] = 13460, + [SMALL_STATE(712)] = 13563, + [SMALL_STATE(713)] = 13666, + [SMALL_STATE(714)] = 13769, + [SMALL_STATE(715)] = 13870, + [SMALL_STATE(716)] = 13973, + [SMALL_STATE(717)] = 14074, + [SMALL_STATE(718)] = 14177, + [SMALL_STATE(719)] = 14280, + [SMALL_STATE(720)] = 14381, + [SMALL_STATE(721)] = 14482, + [SMALL_STATE(722)] = 14583, + [SMALL_STATE(723)] = 14684, + [SMALL_STATE(724)] = 14785, + [SMALL_STATE(725)] = 14888, + [SMALL_STATE(726)] = 14991, + [SMALL_STATE(727)] = 15094, + [SMALL_STATE(728)] = 15195, + [SMALL_STATE(729)] = 15296, + [SMALL_STATE(730)] = 15399, + [SMALL_STATE(731)] = 15502, + [SMALL_STATE(732)] = 15603, + [SMALL_STATE(733)] = 15704, + [SMALL_STATE(734)] = 15807, + [SMALL_STATE(735)] = 15910, + [SMALL_STATE(736)] = 16013, + [SMALL_STATE(737)] = 16116, + [SMALL_STATE(738)] = 16219, + [SMALL_STATE(739)] = 16322, + [SMALL_STATE(740)] = 16425, + [SMALL_STATE(741)] = 16528, + [SMALL_STATE(742)] = 16631, + [SMALL_STATE(743)] = 16734, + [SMALL_STATE(744)] = 16837, + [SMALL_STATE(745)] = 16940, + [SMALL_STATE(746)] = 17043, + [SMALL_STATE(747)] = 17146, + [SMALL_STATE(748)] = 17249, + [SMALL_STATE(749)] = 17352, + [SMALL_STATE(750)] = 17455, + [SMALL_STATE(751)] = 17558, + [SMALL_STATE(752)] = 17661, + [SMALL_STATE(753)] = 17764, + [SMALL_STATE(754)] = 17865, + [SMALL_STATE(755)] = 17968, + [SMALL_STATE(756)] = 18071, + [SMALL_STATE(757)] = 18174, + [SMALL_STATE(758)] = 18277, + [SMALL_STATE(759)] = 18380, + [SMALL_STATE(760)] = 18481, + [SMALL_STATE(761)] = 18584, + [SMALL_STATE(762)] = 18687, + [SMALL_STATE(763)] = 18790, + [SMALL_STATE(764)] = 18893, + [SMALL_STATE(765)] = 18996, + [SMALL_STATE(766)] = 19099, + [SMALL_STATE(767)] = 19202, + [SMALL_STATE(768)] = 19305, + [SMALL_STATE(769)] = 19406, + [SMALL_STATE(770)] = 19507, + [SMALL_STATE(771)] = 19610, + [SMALL_STATE(772)] = 19713, + [SMALL_STATE(773)] = 19816, + [SMALL_STATE(774)] = 19919, + [SMALL_STATE(775)] = 20020, + [SMALL_STATE(776)] = 20121, + [SMALL_STATE(777)] = 20222, + [SMALL_STATE(778)] = 20325, + [SMALL_STATE(779)] = 20428, + [SMALL_STATE(780)] = 20531, + [SMALL_STATE(781)] = 20634, + [SMALL_STATE(782)] = 20737, + [SMALL_STATE(783)] = 20840, + [SMALL_STATE(784)] = 20943, + [SMALL_STATE(785)] = 21046, + [SMALL_STATE(786)] = 21149, + [SMALL_STATE(787)] = 21252, + [SMALL_STATE(788)] = 21355, + [SMALL_STATE(789)] = 21458, + [SMALL_STATE(790)] = 21561, + [SMALL_STATE(791)] = 21664, + [SMALL_STATE(792)] = 21752, + [SMALL_STATE(793)] = 21823, + [SMALL_STATE(794)] = 21924, + [SMALL_STATE(795)] = 22025, + [SMALL_STATE(796)] = 22096, + [SMALL_STATE(797)] = 22197, + [SMALL_STATE(798)] = 22298, + [SMALL_STATE(799)] = 22399, + [SMALL_STATE(800)] = 22470, + [SMALL_STATE(801)] = 22538, + [SMALL_STATE(802)] = 22601, + [SMALL_STATE(803)] = 22664, + [SMALL_STATE(804)] = 22726, + [SMALL_STATE(805)] = 22788, + [SMALL_STATE(806)] = 22850, + [SMALL_STATE(807)] = 22912, + [SMALL_STATE(808)] = 22974, + [SMALL_STATE(809)] = 23036, + [SMALL_STATE(810)] = 23098, + [SMALL_STATE(811)] = 23160, + [SMALL_STATE(812)] = 23222, + [SMALL_STATE(813)] = 23284, + [SMALL_STATE(814)] = 23343, + [SMALL_STATE(815)] = 23402, + [SMALL_STATE(816)] = 23461, + [SMALL_STATE(817)] = 23526, + [SMALL_STATE(818)] = 23585, + [SMALL_STATE(819)] = 23677, + [SMALL_STATE(820)] = 23769, + [SMALL_STATE(821)] = 23827, + [SMALL_STATE(822)] = 23885, + [SMALL_STATE(823)] = 23977, + [SMALL_STATE(824)] = 24035, + [SMALL_STATE(825)] = 24127, + [SMALL_STATE(826)] = 24219, + [SMALL_STATE(827)] = 24311, + [SMALL_STATE(828)] = 24369, + [SMALL_STATE(829)] = 24427, + [SMALL_STATE(830)] = 24485, + [SMALL_STATE(831)] = 24577, + [SMALL_STATE(832)] = 24635, + [SMALL_STATE(833)] = 24727, + [SMALL_STATE(834)] = 24785, + [SMALL_STATE(835)] = 24877, + [SMALL_STATE(836)] = 24935, + [SMALL_STATE(837)] = 24993, + [SMALL_STATE(838)] = 25085, + [SMALL_STATE(839)] = 25177, + [SMALL_STATE(840)] = 25235, + [SMALL_STATE(841)] = 25327, + [SMALL_STATE(842)] = 25419, + [SMALL_STATE(843)] = 25477, + [SMALL_STATE(844)] = 25535, + [SMALL_STATE(845)] = 25627, + [SMALL_STATE(846)] = 25719, + [SMALL_STATE(847)] = 25811, + [SMALL_STATE(848)] = 25869, + [SMALL_STATE(849)] = 25961, + [SMALL_STATE(850)] = 26053, + [SMALL_STATE(851)] = 26147, + [SMALL_STATE(852)] = 26239, + [SMALL_STATE(853)] = 26331, + [SMALL_STATE(854)] = 26423, + [SMALL_STATE(855)] = 26481, + [SMALL_STATE(856)] = 26539, + [SMALL_STATE(857)] = 26628, + [SMALL_STATE(858)] = 26719, + [SMALL_STATE(859)] = 26776, + [SMALL_STATE(860)] = 26833, + [SMALL_STATE(861)] = 26900, + [SMALL_STATE(862)] = 26989, + [SMALL_STATE(863)] = 27046, + [SMALL_STATE(864)] = 27111, + [SMALL_STATE(865)] = 27176, + [SMALL_STATE(866)] = 27233, + [SMALL_STATE(867)] = 27300, + [SMALL_STATE(868)] = 27361, + [SMALL_STATE(869)] = 27428, + [SMALL_STATE(870)] = 27495, + [SMALL_STATE(871)] = 27562, + [SMALL_STATE(872)] = 27624, + [SMALL_STATE(873)] = 27686, + [SMALL_STATE(874)] = 27750, + [SMALL_STATE(875)] = 27812, + [SMALL_STATE(876)] = 27875, + [SMALL_STATE(877)] = 27934, + [SMALL_STATE(878)] = 27993, + [SMALL_STATE(879)] = 28052, + [SMALL_STATE(880)] = 28134, + [SMALL_STATE(881)] = 28216, + [SMALL_STATE(882)] = 28270, + [SMALL_STATE(883)] = 28352, + [SMALL_STATE(884)] = 28434, + [SMALL_STATE(885)] = 28516, + [SMALL_STATE(886)] = 28598, + [SMALL_STATE(887)] = 28680, + [SMALL_STATE(888)] = 28734, + [SMALL_STATE(889)] = 28816, + [SMALL_STATE(890)] = 28898, + [SMALL_STATE(891)] = 28980, + [SMALL_STATE(892)] = 29043, + [SMALL_STATE(893)] = 29106, + [SMALL_STATE(894)] = 29185, + [SMALL_STATE(895)] = 29248, + [SMALL_STATE(896)] = 29301, + [SMALL_STATE(897)] = 29364, + [SMALL_STATE(898)] = 29429, + [SMALL_STATE(899)] = 29492, + [SMALL_STATE(900)] = 29555, + [SMALL_STATE(901)] = 29618, + [SMALL_STATE(902)] = 29704, + [SMALL_STATE(903)] = 29780, + [SMALL_STATE(904)] = 29866, + [SMALL_STATE(905)] = 29952, + [SMALL_STATE(906)] = 30016, + [SMALL_STATE(907)] = 30098, + [SMALL_STATE(908)] = 30164, + [SMALL_STATE(909)] = 30224, + [SMALL_STATE(910)] = 30292, + [SMALL_STATE(911)] = 30364, + [SMALL_STATE(912)] = 30438, + [SMALL_STATE(913)] = 30518, + [SMALL_STATE(914)] = 30596, + [SMALL_STATE(915)] = 30681, + [SMALL_STATE(916)] = 30766, + [SMALL_STATE(917)] = 30821, + [SMALL_STATE(918)] = 30872, + [SMALL_STATE(919)] = 30923, + [SMALL_STATE(920)] = 30988, + [SMALL_STATE(921)] = 31055, + [SMALL_STATE(922)] = 31126, + [SMALL_STATE(923)] = 31199, + [SMALL_STATE(924)] = 31274, + [SMALL_STATE(925)] = 31351, + [SMALL_STATE(926)] = 31430, + [SMALL_STATE(927)] = 31515, + [SMALL_STATE(928)] = 31566, + [SMALL_STATE(929)] = 31647, + [SMALL_STATE(930)] = 31698, + [SMALL_STATE(931)] = 31749, + [SMALL_STATE(932)] = 31812, + [SMALL_STATE(933)] = 31870, + [SMALL_STATE(934)] = 31930, + [SMALL_STATE(935)] = 32014, + [SMALL_STATE(936)] = 32074, + [SMALL_STATE(937)] = 32136, + [SMALL_STATE(938)] = 32216, + [SMALL_STATE(939)] = 32294, + [SMALL_STATE(940)] = 32370, + [SMALL_STATE(941)] = 32444, + [SMALL_STATE(942)] = 32516, + [SMALL_STATE(943)] = 32586, + [SMALL_STATE(944)] = 32652, + [SMALL_STATE(945)] = 32716, + [SMALL_STATE(946)] = 32800, + [SMALL_STATE(947)] = 32884, + [SMALL_STATE(948)] = 32938, + [SMALL_STATE(949)] = 32998, + [SMALL_STATE(950)] = 33058, + [SMALL_STATE(951)] = 33118, + [SMALL_STATE(952)] = 33167, + [SMALL_STATE(953)] = 33216, + [SMALL_STATE(954)] = 33265, + [SMALL_STATE(955)] = 33314, + [SMALL_STATE(956)] = 33363, + [SMALL_STATE(957)] = 33412, + [SMALL_STATE(958)] = 33461, + [SMALL_STATE(959)] = 33510, + [SMALL_STATE(960)] = 33559, + [SMALL_STATE(961)] = 33608, + [SMALL_STATE(962)] = 33657, + [SMALL_STATE(963)] = 33706, + [SMALL_STATE(964)] = 33755, + [SMALL_STATE(965)] = 33804, + [SMALL_STATE(966)] = 33853, + [SMALL_STATE(967)] = 33902, + [SMALL_STATE(968)] = 33951, + [SMALL_STATE(969)] = 34000, + [SMALL_STATE(970)] = 34049, + [SMALL_STATE(971)] = 34098, + [SMALL_STATE(972)] = 34147, + [SMALL_STATE(973)] = 34196, + [SMALL_STATE(974)] = 34245, + [SMALL_STATE(975)] = 34294, + [SMALL_STATE(976)] = 34343, + [SMALL_STATE(977)] = 34392, + [SMALL_STATE(978)] = 34441, + [SMALL_STATE(979)] = 34490, + [SMALL_STATE(980)] = 34539, + [SMALL_STATE(981)] = 34588, + [SMALL_STATE(982)] = 34637, + [SMALL_STATE(983)] = 34686, + [SMALL_STATE(984)] = 34735, + [SMALL_STATE(985)] = 34784, + [SMALL_STATE(986)] = 34833, + [SMALL_STATE(987)] = 34882, + [SMALL_STATE(988)] = 34931, + [SMALL_STATE(989)] = 34980, + [SMALL_STATE(990)] = 35029, + [SMALL_STATE(991)] = 35078, + [SMALL_STATE(992)] = 35127, + [SMALL_STATE(993)] = 35176, + [SMALL_STATE(994)] = 35225, + [SMALL_STATE(995)] = 35274, + [SMALL_STATE(996)] = 35327, + [SMALL_STATE(997)] = 35376, + [SMALL_STATE(998)] = 35451, + [SMALL_STATE(999)] = 35510, + [SMALL_STATE(1000)] = 35557, + [SMALL_STATE(1001)] = 35604, + [SMALL_STATE(1002)] = 35651, + [SMALL_STATE(1003)] = 35698, + [SMALL_STATE(1004)] = 35745, + [SMALL_STATE(1005)] = 35792, + [SMALL_STATE(1006)] = 35839, + [SMALL_STATE(1007)] = 35894, + [SMALL_STATE(1008)] = 35941, + [SMALL_STATE(1009)] = 35988, + [SMALL_STATE(1010)] = 36035, + [SMALL_STATE(1011)] = 36082, + [SMALL_STATE(1012)] = 36129, + [SMALL_STATE(1013)] = 36176, + [SMALL_STATE(1014)] = 36235, + [SMALL_STATE(1015)] = 36282, + [SMALL_STATE(1016)] = 36329, + [SMALL_STATE(1017)] = 36382, + [SMALL_STATE(1018)] = 36441, + [SMALL_STATE(1019)] = 36496, + [SMALL_STATE(1020)] = 36579, + [SMALL_STATE(1021)] = 36638, + [SMALL_STATE(1022)] = 36693, + [SMALL_STATE(1023)] = 36740, + [SMALL_STATE(1024)] = 36819, + [SMALL_STATE(1025)] = 36872, + [SMALL_STATE(1026)] = 36931, + [SMALL_STATE(1027)] = 36988, + [SMALL_STATE(1028)] = 37043, + [SMALL_STATE(1029)] = 37090, + [SMALL_STATE(1030)] = 37137, + [SMALL_STATE(1031)] = 37184, + [SMALL_STATE(1032)] = 37231, + [SMALL_STATE(1033)] = 37314, + [SMALL_STATE(1034)] = 37397, + [SMALL_STATE(1035)] = 37460, + [SMALL_STATE(1036)] = 37525, + [SMALL_STATE(1037)] = 37594, + [SMALL_STATE(1038)] = 37665, + [SMALL_STATE(1039)] = 37738, + [SMALL_STATE(1040)] = 37815, + [SMALL_STATE(1041)] = 37894, + [SMALL_STATE(1042)] = 37949, + [SMALL_STATE(1043)] = 38010, + [SMALL_STATE(1044)] = 38056, + [SMALL_STATE(1045)] = 38102, + [SMALL_STATE(1046)] = 38148, + [SMALL_STATE(1047)] = 38198, + [SMALL_STATE(1048)] = 38244, + [SMALL_STATE(1049)] = 38290, + [SMALL_STATE(1050)] = 38339, + [SMALL_STATE(1051)] = 38384, + [SMALL_STATE(1052)] = 38441, + [SMALL_STATE(1053)] = 38498, + [SMALL_STATE(1054)] = 38543, + [SMALL_STATE(1055)] = 38592, + [SMALL_STATE(1056)] = 38637, + [SMALL_STATE(1057)] = 38682, + [SMALL_STATE(1058)] = 38727, + [SMALL_STATE(1059)] = 38772, + [SMALL_STATE(1060)] = 38817, + [SMALL_STATE(1061)] = 38866, + [SMALL_STATE(1062)] = 38911, + [SMALL_STATE(1063)] = 38956, + [SMALL_STATE(1064)] = 39001, + [SMALL_STATE(1065)] = 39046, + [SMALL_STATE(1066)] = 39091, + [SMALL_STATE(1067)] = 39136, + [SMALL_STATE(1068)] = 39181, + [SMALL_STATE(1069)] = 39226, + [SMALL_STATE(1070)] = 39275, + [SMALL_STATE(1071)] = 39320, + [SMALL_STATE(1072)] = 39365, + [SMALL_STATE(1073)] = 39414, + [SMALL_STATE(1074)] = 39471, + [SMALL_STATE(1075)] = 39520, + [SMALL_STATE(1076)] = 39569, + [SMALL_STATE(1077)] = 39618, + [SMALL_STATE(1078)] = 39663, + [SMALL_STATE(1079)] = 39712, + [SMALL_STATE(1080)] = 39757, + [SMALL_STATE(1081)] = 39802, + [SMALL_STATE(1082)] = 39851, + [SMALL_STATE(1083)] = 39900, + [SMALL_STATE(1084)] = 39945, + [SMALL_STATE(1085)] = 39990, + [SMALL_STATE(1086)] = 40035, + [SMALL_STATE(1087)] = 40084, + [SMALL_STATE(1088)] = 40133, + [SMALL_STATE(1089)] = 40178, + [SMALL_STATE(1090)] = 40223, + [SMALL_STATE(1091)] = 40268, + [SMALL_STATE(1092)] = 40317, + [SMALL_STATE(1093)] = 40362, + [SMALL_STATE(1094)] = 40407, + [SMALL_STATE(1095)] = 40452, + [SMALL_STATE(1096)] = 40497, + [SMALL_STATE(1097)] = 40542, + [SMALL_STATE(1098)] = 40587, + [SMALL_STATE(1099)] = 40632, + [SMALL_STATE(1100)] = 40677, + [SMALL_STATE(1101)] = 40722, + [SMALL_STATE(1102)] = 40767, + [SMALL_STATE(1103)] = 40816, + [SMALL_STATE(1104)] = 40865, + [SMALL_STATE(1105)] = 40922, + [SMALL_STATE(1106)] = 40966, + [SMALL_STATE(1107)] = 41014, + [SMALL_STATE(1108)] = 41062, + [SMALL_STATE(1109)] = 41106, + [SMALL_STATE(1110)] = 41154, + [SMALL_STATE(1111)] = 41198, + [SMALL_STATE(1112)] = 41246, + [SMALL_STATE(1113)] = 41290, + [SMALL_STATE(1114)] = 41334, + [SMALL_STATE(1115)] = 41378, + [SMALL_STATE(1116)] = 41426, + [SMALL_STATE(1117)] = 41474, + [SMALL_STATE(1118)] = 41518, + [SMALL_STATE(1119)] = 41570, + [SMALL_STATE(1120)] = 41614, + [SMALL_STATE(1121)] = 41662, + [SMALL_STATE(1122)] = 41706, + [SMALL_STATE(1123)] = 41750, + [SMALL_STATE(1124)] = 41794, + [SMALL_STATE(1125)] = 41838, + [SMALL_STATE(1126)] = 41888, + [SMALL_STATE(1127)] = 41932, + [SMALL_STATE(1128)] = 41976, + [SMALL_STATE(1129)] = 42020, + [SMALL_STATE(1130)] = 42064, + [SMALL_STATE(1131)] = 42108, + [SMALL_STATE(1132)] = 42152, + [SMALL_STATE(1133)] = 42202, + [SMALL_STATE(1134)] = 42246, + [SMALL_STATE(1135)] = 42290, + [SMALL_STATE(1136)] = 42334, + [SMALL_STATE(1137)] = 42378, + [SMALL_STATE(1138)] = 42422, + [SMALL_STATE(1139)] = 42466, + [SMALL_STATE(1140)] = 42510, + [SMALL_STATE(1141)] = 42554, + [SMALL_STATE(1142)] = 42598, + [SMALL_STATE(1143)] = 42642, + [SMALL_STATE(1144)] = 42686, + [SMALL_STATE(1145)] = 42730, + [SMALL_STATE(1146)] = 42774, + [SMALL_STATE(1147)] = 42818, + [SMALL_STATE(1148)] = 42862, + [SMALL_STATE(1149)] = 42931, + [SMALL_STATE(1150)] = 42986, + [SMALL_STATE(1151)] = 43055, + [SMALL_STATE(1152)] = 43124, + [SMALL_STATE(1153)] = 43193, + [SMALL_STATE(1154)] = 43245, + [SMALL_STATE(1155)] = 43301, + [SMALL_STATE(1156)] = 43353, + [SMALL_STATE(1157)] = 43409, + [SMALL_STATE(1158)] = 43465, + [SMALL_STATE(1159)] = 43521, + [SMALL_STATE(1160)] = 43577, + [SMALL_STATE(1161)] = 43627, + [SMALL_STATE(1162)] = 43696, + [SMALL_STATE(1163)] = 43773, + [SMALL_STATE(1164)] = 43828, + [SMALL_STATE(1165)] = 43885, + [SMALL_STATE(1166)] = 43962, + [SMALL_STATE(1167)] = 44021, + [SMALL_STATE(1168)] = 44084, + [SMALL_STATE(1169)] = 44149, + [SMALL_STATE(1170)] = 44198, + [SMALL_STATE(1171)] = 44265, + [SMALL_STATE(1172)] = 44342, + [SMALL_STATE(1173)] = 44413, + [SMALL_STATE(1174)] = 44490, + [SMALL_STATE(1175)] = 44563, + [SMALL_STATE(1176)] = 44603, + [SMALL_STATE(1177)] = 44659, + [SMALL_STATE(1178)] = 44699, + [SMALL_STATE(1179)] = 44773, + [SMALL_STATE(1180)] = 44815, + [SMALL_STATE(1181)] = 44857, + [SMALL_STATE(1182)] = 44897, + [SMALL_STATE(1183)] = 44939, + [SMALL_STATE(1184)] = 44981, + [SMALL_STATE(1185)] = 45021, + [SMALL_STATE(1186)] = 45061, + [SMALL_STATE(1187)] = 45101, + [SMALL_STATE(1188)] = 45175, + [SMALL_STATE(1189)] = 45249, + [SMALL_STATE(1190)] = 45289, + [SMALL_STATE(1191)] = 45329, + [SMALL_STATE(1192)] = 45383, + [SMALL_STATE(1193)] = 45451, + [SMALL_STATE(1194)] = 45509, + [SMALL_STATE(1195)] = 45551, + [SMALL_STATE(1196)] = 45613, + [SMALL_STATE(1197)] = 45677, + [SMALL_STATE(1198)] = 45743, + [SMALL_STATE(1199)] = 45813, + [SMALL_STATE(1200)] = 45881, + [SMALL_STATE(1201)] = 45921, + [SMALL_STATE(1202)] = 45984, + [SMALL_STATE(1203)] = 46037, + [SMALL_STATE(1204)] = 46080, + [SMALL_STATE(1205)] = 46153, + [SMALL_STATE(1206)] = 46216, + [SMALL_STATE(1207)] = 46289, + [SMALL_STATE(1208)] = 46362, + [SMALL_STATE(1209)] = 46405, + [SMALL_STATE(1210)] = 46448, + [SMALL_STATE(1211)] = 46487, + [SMALL_STATE(1212)] = 46542, + [SMALL_STATE(1213)] = 46599, + [SMALL_STATE(1214)] = 46672, + [SMALL_STATE(1215)] = 46733, + [SMALL_STATE(1216)] = 46798, + [SMALL_STATE(1217)] = 46865, + [SMALL_STATE(1218)] = 46932, + [SMALL_STATE(1219)] = 47001, + [SMALL_STATE(1220)] = 47039, + [SMALL_STATE(1221)] = 47077, + [SMALL_STATE(1222)] = 47137, + [SMALL_STATE(1223)] = 47197, + [SMALL_STATE(1224)] = 47257, + [SMALL_STATE(1225)] = 47295, + [SMALL_STATE(1226)] = 47355, + [SMALL_STATE(1227)] = 47415, + [SMALL_STATE(1228)] = 47475, + [SMALL_STATE(1229)] = 47535, + [SMALL_STATE(1230)] = 47595, + [SMALL_STATE(1231)] = 47633, + [SMALL_STATE(1232)] = 47708, + [SMALL_STATE(1233)] = 47779, + [SMALL_STATE(1234)] = 47854, + [SMALL_STATE(1235)] = 47929, + [SMALL_STATE(1236)] = 48002, + [SMALL_STATE(1237)] = 48077, + [SMALL_STATE(1238)] = 48152, + [SMALL_STATE(1239)] = 48227, + [SMALL_STATE(1240)] = 48302, + [SMALL_STATE(1241)] = 48377, + [SMALL_STATE(1242)] = 48449, + [SMALL_STATE(1243)] = 48521, + [SMALL_STATE(1244)] = 48593, + [SMALL_STATE(1245)] = 48665, + [SMALL_STATE(1246)] = 48721, + [SMALL_STATE(1247)] = 48777, + [SMALL_STATE(1248)] = 48833, + [SMALL_STATE(1249)] = 48893, + [SMALL_STATE(1250)] = 48955, + [SMALL_STATE(1251)] = 49027, + [SMALL_STATE(1252)] = 49091, + [SMALL_STATE(1253)] = 49163, + [SMALL_STATE(1254)] = 49235, + [SMALL_STATE(1255)] = 49307, + [SMALL_STATE(1256)] = 49373, + [SMALL_STATE(1257)] = 49439, + [SMALL_STATE(1258)] = 49511, + [SMALL_STATE(1259)] = 49583, + [SMALL_STATE(1260)] = 49657, + [SMALL_STATE(1261)] = 49729, + [SMALL_STATE(1262)] = 49801, + [SMALL_STATE(1263)] = 49873, + [SMALL_STATE(1264)] = 49945, + [SMALL_STATE(1265)] = 50017, + [SMALL_STATE(1266)] = 50085, + [SMALL_STATE(1267)] = 50155, + [SMALL_STATE(1268)] = 50211, + [SMALL_STATE(1269)] = 50283, + [SMALL_STATE(1270)] = 50339, + [SMALL_STATE(1271)] = 50391, + [SMALL_STATE(1272)] = 50463, + [SMALL_STATE(1273)] = 50519, + [SMALL_STATE(1274)] = 50575, + [SMALL_STATE(1275)] = 50631, + [SMALL_STATE(1276)] = 50703, + [SMALL_STATE(1277)] = 50759, + [SMALL_STATE(1278)] = 50815, + [SMALL_STATE(1279)] = 50887, + [SMALL_STATE(1280)] = 50959, + [SMALL_STATE(1281)] = 51013, + [SMALL_STATE(1282)] = 51085, + [SMALL_STATE(1283)] = 51155, + [SMALL_STATE(1284)] = 51211, + [SMALL_STATE(1285)] = 51283, + [SMALL_STATE(1286)] = 51339, + [SMALL_STATE(1287)] = 51395, + [SMALL_STATE(1288)] = 51451, + [SMALL_STATE(1289)] = 51521, + [SMALL_STATE(1290)] = 51591, + [SMALL_STATE(1291)] = 51663, + [SMALL_STATE(1292)] = 51733, + [SMALL_STATE(1293)] = 51805, + [SMALL_STATE(1294)] = 51861, + [SMALL_STATE(1295)] = 51933, + [SMALL_STATE(1296)] = 52003, + [SMALL_STATE(1297)] = 52059, + [SMALL_STATE(1298)] = 52131, + [SMALL_STATE(1299)] = 52187, + [SMALL_STATE(1300)] = 52257, + [SMALL_STATE(1301)] = 52313, + [SMALL_STATE(1302)] = 52383, + [SMALL_STATE(1303)] = 52439, + [SMALL_STATE(1304)] = 52508, + [SMALL_STATE(1305)] = 52577, + [SMALL_STATE(1306)] = 52646, + [SMALL_STATE(1307)] = 52715, + [SMALL_STATE(1308)] = 52784, + [SMALL_STATE(1309)] = 52853, + [SMALL_STATE(1310)] = 52922, + [SMALL_STATE(1311)] = 52991, + [SMALL_STATE(1312)] = 53060, + [SMALL_STATE(1313)] = 53129, + [SMALL_STATE(1314)] = 53198, + [SMALL_STATE(1315)] = 53267, + [SMALL_STATE(1316)] = 53320, + [SMALL_STATE(1317)] = 53373, + [SMALL_STATE(1318)] = 53442, + [SMALL_STATE(1319)] = 53511, + [SMALL_STATE(1320)] = 53580, + [SMALL_STATE(1321)] = 53649, + [SMALL_STATE(1322)] = 53718, + [SMALL_STATE(1323)] = 53787, + [SMALL_STATE(1324)] = 53856, + [SMALL_STATE(1325)] = 53909, + [SMALL_STATE(1326)] = 53978, + [SMALL_STATE(1327)] = 54047, + [SMALL_STATE(1328)] = 54116, + [SMALL_STATE(1329)] = 54185, + [SMALL_STATE(1330)] = 54254, + [SMALL_STATE(1331)] = 54323, + [SMALL_STATE(1332)] = 54392, + [SMALL_STATE(1333)] = 54445, + [SMALL_STATE(1334)] = 54514, + [SMALL_STATE(1335)] = 54583, + [SMALL_STATE(1336)] = 54652, + [SMALL_STATE(1337)] = 54705, + [SMALL_STATE(1338)] = 54774, + [SMALL_STATE(1339)] = 54827, + [SMALL_STATE(1340)] = 54896, + [SMALL_STATE(1341)] = 54935, + [SMALL_STATE(1342)] = 54977, + [SMALL_STATE(1343)] = 55013, + [SMALL_STATE(1344)] = 55057, + [SMALL_STATE(1345)] = 55123, + [SMALL_STATE(1346)] = 55165, + [SMALL_STATE(1347)] = 55201, + [SMALL_STATE(1348)] = 55237, + [SMALL_STATE(1349)] = 55273, + [SMALL_STATE(1350)] = 55320, + [SMALL_STATE(1351)] = 55351, + [SMALL_STATE(1352)] = 55398, + [SMALL_STATE(1353)] = 55445, + [SMALL_STATE(1354)] = 55492, + [SMALL_STATE(1355)] = 55539, + [SMALL_STATE(1356)] = 55586, + [SMALL_STATE(1357)] = 55617, + [SMALL_STATE(1358)] = 55661, + [SMALL_STATE(1359)] = 55705, + [SMALL_STATE(1360)] = 55741, + [SMALL_STATE(1361)] = 55785, + [SMALL_STATE(1362)] = 55819, + [SMALL_STATE(1363)] = 55863, + [SMALL_STATE(1364)] = 55901, + [SMALL_STATE(1365)] = 55945, + [SMALL_STATE(1366)] = 55989, + [SMALL_STATE(1367)] = 56032, + [SMALL_STATE(1368)] = 56087, + [SMALL_STATE(1369)] = 56142, + [SMALL_STATE(1370)] = 56197, + [SMALL_STATE(1371)] = 56230, + [SMALL_STATE(1372)] = 56273, + [SMALL_STATE(1373)] = 56316, + [SMALL_STATE(1374)] = 56356, + [SMALL_STATE(1375)] = 56396, + [SMALL_STATE(1376)] = 56428, + [SMALL_STATE(1377)] = 56468, + [SMALL_STATE(1378)] = 56508, + [SMALL_STATE(1379)] = 56548, + [SMALL_STATE(1380)] = 56588, + [SMALL_STATE(1381)] = 56628, + [SMALL_STATE(1382)] = 56668, + [SMALL_STATE(1383)] = 56708, + [SMALL_STATE(1384)] = 56748, + [SMALL_STATE(1385)] = 56788, + [SMALL_STATE(1386)] = 56828, + [SMALL_STATE(1387)] = 56868, + [SMALL_STATE(1388)] = 56908, + [SMALL_STATE(1389)] = 56948, + [SMALL_STATE(1390)] = 56996, + [SMALL_STATE(1391)] = 57036, + [SMALL_STATE(1392)] = 57076, + [SMALL_STATE(1393)] = 57116, + [SMALL_STATE(1394)] = 57156, + [SMALL_STATE(1395)] = 57188, + [SMALL_STATE(1396)] = 57228, + [SMALL_STATE(1397)] = 57268, + [SMALL_STATE(1398)] = 57304, + [SMALL_STATE(1399)] = 57332, + [SMALL_STATE(1400)] = 57372, + [SMALL_STATE(1401)] = 57412, + [SMALL_STATE(1402)] = 57444, + [SMALL_STATE(1403)] = 57494, + [SMALL_STATE(1404)] = 57540, + [SMALL_STATE(1405)] = 57572, + [SMALL_STATE(1406)] = 57612, + [SMALL_STATE(1407)] = 57640, + [SMALL_STATE(1408)] = 57680, + [SMALL_STATE(1409)] = 57708, + [SMALL_STATE(1410)] = 57736, + [SMALL_STATE(1411)] = 57768, + [SMALL_STATE(1412)] = 57808, + [SMALL_STATE(1413)] = 57848, + [SMALL_STATE(1414)] = 57876, + [SMALL_STATE(1415)] = 57924, + [SMALL_STATE(1416)] = 57964, + [SMALL_STATE(1417)] = 58004, + [SMALL_STATE(1418)] = 58044, + [SMALL_STATE(1419)] = 58084, + [SMALL_STATE(1420)] = 58124, + [SMALL_STATE(1421)] = 58164, + [SMALL_STATE(1422)] = 58204, + [SMALL_STATE(1423)] = 58244, + [SMALL_STATE(1424)] = 58284, + [SMALL_STATE(1425)] = 58318, + [SMALL_STATE(1426)] = 58358, + [SMALL_STATE(1427)] = 58402, + [SMALL_STATE(1428)] = 58430, + [SMALL_STATE(1429)] = 58470, + [SMALL_STATE(1430)] = 58510, + [SMALL_STATE(1431)] = 58552, + [SMALL_STATE(1432)] = 58592, + [SMALL_STATE(1433)] = 58638, + [SMALL_STATE(1434)] = 58678, + [SMALL_STATE(1435)] = 58718, + [SMALL_STATE(1436)] = 58753, + [SMALL_STATE(1437)] = 58798, + [SMALL_STATE(1438)] = 58825, + [SMALL_STATE(1439)] = 58874, + [SMALL_STATE(1440)] = 58919, + [SMALL_STATE(1441)] = 58946, + [SMALL_STATE(1442)] = 58991, + [SMALL_STATE(1443)] = 59018, + [SMALL_STATE(1444)] = 59063, + [SMALL_STATE(1445)] = 59106, + [SMALL_STATE(1446)] = 59135, + [SMALL_STATE(1447)] = 59180, + [SMALL_STATE(1448)] = 59225, + [SMALL_STATE(1449)] = 59266, + [SMALL_STATE(1450)] = 59293, + [SMALL_STATE(1451)] = 59332, + [SMALL_STATE(1452)] = 59367, + [SMALL_STATE(1453)] = 59394, + [SMALL_STATE(1454)] = 59439, + [SMALL_STATE(1455)] = 59466, + [SMALL_STATE(1456)] = 59503, + [SMALL_STATE(1457)] = 59530, + [SMALL_STATE(1458)] = 59557, + [SMALL_STATE(1459)] = 59602, + [SMALL_STATE(1460)] = 59647, + [SMALL_STATE(1461)] = 59674, + [SMALL_STATE(1462)] = 59705, + [SMALL_STATE(1463)] = 59738, + [SMALL_STATE(1464)] = 59769, + [SMALL_STATE(1465)] = 59802, + [SMALL_STATE(1466)] = 59833, + [SMALL_STATE(1467)] = 59864, + [SMALL_STATE(1468)] = 59895, + [SMALL_STATE(1469)] = 59940, + [SMALL_STATE(1470)] = 59971, + [SMALL_STATE(1471)] = 60016, + [SMALL_STATE(1472)] = 60061, + [SMALL_STATE(1473)] = 60110, + [SMALL_STATE(1474)] = 60141, + [SMALL_STATE(1475)] = 60186, + [SMALL_STATE(1476)] = 60217, + [SMALL_STATE(1477)] = 60248, + [SMALL_STATE(1478)] = 60293, + [SMALL_STATE(1479)] = 60338, + [SMALL_STATE(1480)] = 60383, + [SMALL_STATE(1481)] = 60428, + [SMALL_STATE(1482)] = 60455, + [SMALL_STATE(1483)] = 60496, + [SMALL_STATE(1484)] = 60537, + [SMALL_STATE(1485)] = 60578, + [SMALL_STATE(1486)] = 60619, + [SMALL_STATE(1487)] = 60660, + [SMALL_STATE(1488)] = 60701, + [SMALL_STATE(1489)] = 60742, + [SMALL_STATE(1490)] = 60777, + [SMALL_STATE(1491)] = 60818, + [SMALL_STATE(1492)] = 60859, + [SMALL_STATE(1493)] = 60900, + [SMALL_STATE(1494)] = 60938, + [SMALL_STATE(1495)] = 60978, + [SMALL_STATE(1496)] = 61012, + [SMALL_STATE(1497)] = 61050, + [SMALL_STATE(1498)] = 61079, + [SMALL_STATE(1499)] = 61116, + [SMALL_STATE(1500)] = 61157, + [SMALL_STATE(1501)] = 61200, + [SMALL_STATE(1502)] = 61239, + [SMALL_STATE(1503)] = 61282, + [SMALL_STATE(1504)] = 61323, + [SMALL_STATE(1505)] = 61366, + [SMALL_STATE(1506)] = 61407, + [SMALL_STATE(1507)] = 61450, + [SMALL_STATE(1508)] = 61491, + [SMALL_STATE(1509)] = 61520, + [SMALL_STATE(1510)] = 61563, + [SMALL_STATE(1511)] = 61592, + [SMALL_STATE(1512)] = 61621, + [SMALL_STATE(1513)] = 61661, + [SMALL_STATE(1514)] = 61701, + [SMALL_STATE(1515)] = 61741, + [SMALL_STATE(1516)] = 61767, + [SMALL_STATE(1517)] = 61807, + [SMALL_STATE(1518)] = 61847, + [SMALL_STATE(1519)] = 61887, + [SMALL_STATE(1520)] = 61927, + [SMALL_STATE(1521)] = 61967, + [SMALL_STATE(1522)] = 62007, + [SMALL_STATE(1523)] = 62047, + [SMALL_STATE(1524)] = 62087, + [SMALL_STATE(1525)] = 62127, + [SMALL_STATE(1526)] = 62167, + [SMALL_STATE(1527)] = 62188, + [SMALL_STATE(1528)] = 62209, + [SMALL_STATE(1529)] = 62238, + [SMALL_STATE(1530)] = 62271, + [SMALL_STATE(1531)] = 62292, + [SMALL_STATE(1532)] = 62321, + [SMALL_STATE(1533)] = 62346, + [SMALL_STATE(1534)] = 62375, + [SMALL_STATE(1535)] = 62404, + [SMALL_STATE(1536)] = 62437, + [SMALL_STATE(1537)] = 62469, + [SMALL_STATE(1538)] = 62501, + [SMALL_STATE(1539)] = 62525, + [SMALL_STATE(1540)] = 62557, + [SMALL_STATE(1541)] = 62593, + [SMALL_STATE(1542)] = 62625, + [SMALL_STATE(1543)] = 62657, + [SMALL_STATE(1544)] = 62686, + [SMALL_STATE(1545)] = 62713, + [SMALL_STATE(1546)] = 62742, + [SMALL_STATE(1547)] = 62767, + [SMALL_STATE(1548)] = 62800, + [SMALL_STATE(1549)] = 62833, + [SMALL_STATE(1550)] = 62860, + [SMALL_STATE(1551)] = 62889, + [SMALL_STATE(1552)] = 62920, + [SMALL_STATE(1553)] = 62947, + [SMALL_STATE(1554)] = 62976, + [SMALL_STATE(1555)] = 63005, + [SMALL_STATE(1556)] = 63034, + [SMALL_STATE(1557)] = 63065, + [SMALL_STATE(1558)] = 63094, + [SMALL_STATE(1559)] = 63125, + [SMALL_STATE(1560)] = 63154, + [SMALL_STATE(1561)] = 63183, + [SMALL_STATE(1562)] = 63210, + [SMALL_STATE(1563)] = 63243, + [SMALL_STATE(1564)] = 63272, + [SMALL_STATE(1565)] = 63294, + [SMALL_STATE(1566)] = 63324, + [SMALL_STATE(1567)] = 63348, + [SMALL_STATE(1568)] = 63374, + [SMALL_STATE(1569)] = 63392, + [SMALL_STATE(1570)] = 63410, + [SMALL_STATE(1571)] = 63436, + [SMALL_STATE(1572)] = 63468, + [SMALL_STATE(1573)] = 63500, + [SMALL_STATE(1574)] = 63532, + [SMALL_STATE(1575)] = 63550, + [SMALL_STATE(1576)] = 63568, + [SMALL_STATE(1577)] = 63600, + [SMALL_STATE(1578)] = 63618, + [SMALL_STATE(1579)] = 63636, + [SMALL_STATE(1580)] = 63662, + [SMALL_STATE(1581)] = 63694, + [SMALL_STATE(1582)] = 63718, + [SMALL_STATE(1583)] = 63744, + [SMALL_STATE(1584)] = 63765, + [SMALL_STATE(1585)] = 63784, + [SMALL_STATE(1586)] = 63805, + [SMALL_STATE(1587)] = 63834, + [SMALL_STATE(1588)] = 63863, + [SMALL_STATE(1589)] = 63888, + [SMALL_STATE(1590)] = 63909, + [SMALL_STATE(1591)] = 63930, + [SMALL_STATE(1592)] = 63959, + [SMALL_STATE(1593)] = 63988, + [SMALL_STATE(1594)] = 64017, + [SMALL_STATE(1595)] = 64038, + [SMALL_STATE(1596)] = 64059, + [SMALL_STATE(1597)] = 64088, + [SMALL_STATE(1598)] = 64117, + [SMALL_STATE(1599)] = 64146, + [SMALL_STATE(1600)] = 64167, + [SMALL_STATE(1601)] = 64196, + [SMALL_STATE(1602)] = 64225, + [SMALL_STATE(1603)] = 64246, + [SMALL_STATE(1604)] = 64267, + [SMALL_STATE(1605)] = 64288, + [SMALL_STATE(1606)] = 64312, + [SMALL_STATE(1607)] = 64336, + [SMALL_STATE(1608)] = 64360, + [SMALL_STATE(1609)] = 64386, + [SMALL_STATE(1610)] = 64412, + [SMALL_STATE(1611)] = 64434, + [SMALL_STATE(1612)] = 64454, + [SMALL_STATE(1613)] = 64470, + [SMALL_STATE(1614)] = 64486, + [SMALL_STATE(1615)] = 64502, + [SMALL_STATE(1616)] = 64528, + [SMALL_STATE(1617)] = 64548, + [SMALL_STATE(1618)] = 64574, + [SMALL_STATE(1619)] = 64590, + [SMALL_STATE(1620)] = 64608, + [SMALL_STATE(1621)] = 64632, + [SMALL_STATE(1622)] = 64658, + [SMALL_STATE(1623)] = 64682, + [SMALL_STATE(1624)] = 64708, + [SMALL_STATE(1625)] = 64734, + [SMALL_STATE(1626)] = 64752, + [SMALL_STATE(1627)] = 64768, + [SMALL_STATE(1628)] = 64784, + [SMALL_STATE(1629)] = 64810, + [SMALL_STATE(1630)] = 64834, + [SMALL_STATE(1631)] = 64860, + [SMALL_STATE(1632)] = 64886, + [SMALL_STATE(1633)] = 64912, + [SMALL_STATE(1634)] = 64928, + [SMALL_STATE(1635)] = 64944, + [SMALL_STATE(1636)] = 64964, + [SMALL_STATE(1637)] = 64987, + [SMALL_STATE(1638)] = 65004, + [SMALL_STATE(1639)] = 65021, + [SMALL_STATE(1640)] = 65036, + [SMALL_STATE(1641)] = 65059, + [SMALL_STATE(1642)] = 65078, + [SMALL_STATE(1643)] = 65093, + [SMALL_STATE(1644)] = 65108, + [SMALL_STATE(1645)] = 65127, + [SMALL_STATE(1646)] = 65142, + [SMALL_STATE(1647)] = 65159, + [SMALL_STATE(1648)] = 65174, + [SMALL_STATE(1649)] = 65189, + [SMALL_STATE(1650)] = 65206, + [SMALL_STATE(1651)] = 65231, + [SMALL_STATE(1652)] = 65246, + [SMALL_STATE(1653)] = 65261, + [SMALL_STATE(1654)] = 65276, + [SMALL_STATE(1655)] = 65299, + [SMALL_STATE(1656)] = 65322, + [SMALL_STATE(1657)] = 65342, + [SMALL_STATE(1658)] = 65356, + [SMALL_STATE(1659)] = 65370, + [SMALL_STATE(1660)] = 65384, + [SMALL_STATE(1661)] = 65400, + [SMALL_STATE(1662)] = 65414, + [SMALL_STATE(1663)] = 65430, + [SMALL_STATE(1664)] = 65444, + [SMALL_STATE(1665)] = 65464, + [SMALL_STATE(1666)] = 65482, + [SMALL_STATE(1667)] = 65496, + [SMALL_STATE(1668)] = 65512, + [SMALL_STATE(1669)] = 65532, + [SMALL_STATE(1670)] = 65548, + [SMALL_STATE(1671)] = 65568, + [SMALL_STATE(1672)] = 65586, + [SMALL_STATE(1673)] = 65600, + [SMALL_STATE(1674)] = 65614, + [SMALL_STATE(1675)] = 65628, + [SMALL_STATE(1676)] = 65648, + [SMALL_STATE(1677)] = 65662, + [SMALL_STATE(1678)] = 65676, + [SMALL_STATE(1679)] = 65692, + [SMALL_STATE(1680)] = 65710, + [SMALL_STATE(1681)] = 65728, + [SMALL_STATE(1682)] = 65748, + [SMALL_STATE(1683)] = 65764, + [SMALL_STATE(1684)] = 65778, + [SMALL_STATE(1685)] = 65796, + [SMALL_STATE(1686)] = 65810, + [SMALL_STATE(1687)] = 65824, + [SMALL_STATE(1688)] = 65838, + [SMALL_STATE(1689)] = 65852, + [SMALL_STATE(1690)] = 65866, + [SMALL_STATE(1691)] = 65886, + [SMALL_STATE(1692)] = 65904, + [SMALL_STATE(1693)] = 65922, + [SMALL_STATE(1694)] = 65935, + [SMALL_STATE(1695)] = 65954, + [SMALL_STATE(1696)] = 65965, + [SMALL_STATE(1697)] = 65980, + [SMALL_STATE(1698)] = 65991, + [SMALL_STATE(1699)] = 66002, + [SMALL_STATE(1700)] = 66013, + [SMALL_STATE(1701)] = 66024, + [SMALL_STATE(1702)] = 66043, + [SMALL_STATE(1703)] = 66062, [SMALL_STATE(1704)] = 66073, - [SMALL_STATE(1705)] = 66087, + [SMALL_STATE(1705)] = 66090, [SMALL_STATE(1706)] = 66101, - [SMALL_STATE(1707)] = 66115, - [SMALL_STATE(1708)] = 66131, - [SMALL_STATE(1709)] = 66145, - [SMALL_STATE(1710)] = 66159, - [SMALL_STATE(1711)] = 66175, - [SMALL_STATE(1712)] = 66189, - [SMALL_STATE(1713)] = 66205, - [SMALL_STATE(1714)] = 66219, - [SMALL_STATE(1715)] = 66235, - [SMALL_STATE(1716)] = 66249, - [SMALL_STATE(1717)] = 66263, - [SMALL_STATE(1718)] = 66277, - [SMALL_STATE(1719)] = 66291, - [SMALL_STATE(1720)] = 66305, - [SMALL_STATE(1721)] = 66319, - [SMALL_STATE(1722)] = 66333, - [SMALL_STATE(1723)] = 66343, - [SMALL_STATE(1724)] = 66357, - [SMALL_STATE(1725)] = 66371, - [SMALL_STATE(1726)] = 66385, - [SMALL_STATE(1727)] = 66399, - [SMALL_STATE(1728)] = 66413, - [SMALL_STATE(1729)] = 66427, - [SMALL_STATE(1730)] = 66441, - [SMALL_STATE(1731)] = 66455, - [SMALL_STATE(1732)] = 66469, - [SMALL_STATE(1733)] = 66483, - [SMALL_STATE(1734)] = 66497, - [SMALL_STATE(1735)] = 66513, - [SMALL_STATE(1736)] = 66526, - [SMALL_STATE(1737)] = 66539, - [SMALL_STATE(1738)] = 66552, - [SMALL_STATE(1739)] = 66563, - [SMALL_STATE(1740)] = 66576, - [SMALL_STATE(1741)] = 66589, - [SMALL_STATE(1742)] = 66602, + [SMALL_STATE(1707)] = 66112, + [SMALL_STATE(1708)] = 66123, + [SMALL_STATE(1709)] = 66140, + [SMALL_STATE(1710)] = 66151, + [SMALL_STATE(1711)] = 66162, + [SMALL_STATE(1712)] = 66173, + [SMALL_STATE(1713)] = 66187, + [SMALL_STATE(1714)] = 66197, + [SMALL_STATE(1715)] = 66211, + [SMALL_STATE(1716)] = 66227, + [SMALL_STATE(1717)] = 66241, + [SMALL_STATE(1718)] = 66255, + [SMALL_STATE(1719)] = 66271, + [SMALL_STATE(1720)] = 66285, + [SMALL_STATE(1721)] = 66295, + [SMALL_STATE(1722)] = 66309, + [SMALL_STATE(1723)] = 66325, + [SMALL_STATE(1724)] = 66339, + [SMALL_STATE(1725)] = 66353, + [SMALL_STATE(1726)] = 66369, + [SMALL_STATE(1727)] = 66383, + [SMALL_STATE(1728)] = 66397, + [SMALL_STATE(1729)] = 66411, + [SMALL_STATE(1730)] = 66425, + [SMALL_STATE(1731)] = 66439, + [SMALL_STATE(1732)] = 66453, + [SMALL_STATE(1733)] = 66467, + [SMALL_STATE(1734)] = 66481, + [SMALL_STATE(1735)] = 66495, + [SMALL_STATE(1736)] = 66509, + [SMALL_STATE(1737)] = 66523, + [SMALL_STATE(1738)] = 66539, + [SMALL_STATE(1739)] = 66555, + [SMALL_STATE(1740)] = 66569, + [SMALL_STATE(1741)] = 66583, + [SMALL_STATE(1742)] = 66597, [SMALL_STATE(1743)] = 66611, - [SMALL_STATE(1744)] = 66624, - [SMALL_STATE(1745)] = 66637, - [SMALL_STATE(1746)] = 66650, - [SMALL_STATE(1747)] = 66661, - [SMALL_STATE(1748)] = 66674, - [SMALL_STATE(1749)] = 66687, - [SMALL_STATE(1750)] = 66700, - [SMALL_STATE(1751)] = 66713, - [SMALL_STATE(1752)] = 66726, - [SMALL_STATE(1753)] = 66739, - [SMALL_STATE(1754)] = 66752, - [SMALL_STATE(1755)] = 66761, - [SMALL_STATE(1756)] = 66770, - [SMALL_STATE(1757)] = 66781, - [SMALL_STATE(1758)] = 66794, - [SMALL_STATE(1759)] = 66807, - [SMALL_STATE(1760)] = 66820, - [SMALL_STATE(1761)] = 66829, - [SMALL_STATE(1762)] = 66842, - [SMALL_STATE(1763)] = 66855, - [SMALL_STATE(1764)] = 66868, - [SMALL_STATE(1765)] = 66881, - [SMALL_STATE(1766)] = 66894, - [SMALL_STATE(1767)] = 66907, - [SMALL_STATE(1768)] = 66920, - [SMALL_STATE(1769)] = 66933, - [SMALL_STATE(1770)] = 66942, - [SMALL_STATE(1771)] = 66951, - [SMALL_STATE(1772)] = 66964, - [SMALL_STATE(1773)] = 66977, - [SMALL_STATE(1774)] = 66990, - [SMALL_STATE(1775)] = 66999, - [SMALL_STATE(1776)] = 67012, - [SMALL_STATE(1777)] = 67025, - [SMALL_STATE(1778)] = 67038, - [SMALL_STATE(1779)] = 67049, - [SMALL_STATE(1780)] = 67062, - [SMALL_STATE(1781)] = 67075, - [SMALL_STATE(1782)] = 67088, - [SMALL_STATE(1783)] = 67101, - [SMALL_STATE(1784)] = 67114, - [SMALL_STATE(1785)] = 67127, - [SMALL_STATE(1786)] = 67140, - [SMALL_STATE(1787)] = 67153, - [SMALL_STATE(1788)] = 67166, - [SMALL_STATE(1789)] = 67179, - [SMALL_STATE(1790)] = 67192, - [SMALL_STATE(1791)] = 67205, - [SMALL_STATE(1792)] = 67218, - [SMALL_STATE(1793)] = 67231, - [SMALL_STATE(1794)] = 67244, - [SMALL_STATE(1795)] = 67253, - [SMALL_STATE(1796)] = 67266, - [SMALL_STATE(1797)] = 67279, - [SMALL_STATE(1798)] = 67292, - [SMALL_STATE(1799)] = 67301, - [SMALL_STATE(1800)] = 67314, - [SMALL_STATE(1801)] = 67325, - [SMALL_STATE(1802)] = 67338, - [SMALL_STATE(1803)] = 67351, - [SMALL_STATE(1804)] = 67364, - [SMALL_STATE(1805)] = 67377, - [SMALL_STATE(1806)] = 67390, - [SMALL_STATE(1807)] = 67399, - [SMALL_STATE(1808)] = 67412, - [SMALL_STATE(1809)] = 67425, - [SMALL_STATE(1810)] = 67438, - [SMALL_STATE(1811)] = 67449, - [SMALL_STATE(1812)] = 67462, - [SMALL_STATE(1813)] = 67475, - [SMALL_STATE(1814)] = 67488, - [SMALL_STATE(1815)] = 67501, - [SMALL_STATE(1816)] = 67514, - [SMALL_STATE(1817)] = 67527, - [SMALL_STATE(1818)] = 67540, - [SMALL_STATE(1819)] = 67553, - [SMALL_STATE(1820)] = 67562, - [SMALL_STATE(1821)] = 67575, - [SMALL_STATE(1822)] = 67588, - [SMALL_STATE(1823)] = 67601, - [SMALL_STATE(1824)] = 67614, - [SMALL_STATE(1825)] = 67627, - [SMALL_STATE(1826)] = 67640, - [SMALL_STATE(1827)] = 67653, - [SMALL_STATE(1828)] = 67663, - [SMALL_STATE(1829)] = 67673, - [SMALL_STATE(1830)] = 67683, - [SMALL_STATE(1831)] = 67693, - [SMALL_STATE(1832)] = 67703, - [SMALL_STATE(1833)] = 67713, - [SMALL_STATE(1834)] = 67723, - [SMALL_STATE(1835)] = 67733, - [SMALL_STATE(1836)] = 67743, - [SMALL_STATE(1837)] = 67753, - [SMALL_STATE(1838)] = 67763, - [SMALL_STATE(1839)] = 67771, - [SMALL_STATE(1840)] = 67781, - [SMALL_STATE(1841)] = 67791, - [SMALL_STATE(1842)] = 67801, - [SMALL_STATE(1843)] = 67809, - [SMALL_STATE(1844)] = 67817, - [SMALL_STATE(1845)] = 67825, - [SMALL_STATE(1846)] = 67835, - [SMALL_STATE(1847)] = 67845, - [SMALL_STATE(1848)] = 67855, - [SMALL_STATE(1849)] = 67865, - [SMALL_STATE(1850)] = 67875, - [SMALL_STATE(1851)] = 67885, - [SMALL_STATE(1852)] = 67893, - [SMALL_STATE(1853)] = 67901, - [SMALL_STATE(1854)] = 67909, - [SMALL_STATE(1855)] = 67917, - [SMALL_STATE(1856)] = 67925, - [SMALL_STATE(1857)] = 67935, - [SMALL_STATE(1858)] = 67943, - [SMALL_STATE(1859)] = 67953, - [SMALL_STATE(1860)] = 67963, - [SMALL_STATE(1861)] = 67973, - [SMALL_STATE(1862)] = 67983, - [SMALL_STATE(1863)] = 67993, - [SMALL_STATE(1864)] = 68003, - [SMALL_STATE(1865)] = 68013, - [SMALL_STATE(1866)] = 68023, - [SMALL_STATE(1867)] = 68033, - [SMALL_STATE(1868)] = 68043, - [SMALL_STATE(1869)] = 68053, - [SMALL_STATE(1870)] = 68063, - [SMALL_STATE(1871)] = 68073, - [SMALL_STATE(1872)] = 68083, - [SMALL_STATE(1873)] = 68093, - [SMALL_STATE(1874)] = 68103, - [SMALL_STATE(1875)] = 68113, - [SMALL_STATE(1876)] = 68123, - [SMALL_STATE(1877)] = 68133, - [SMALL_STATE(1878)] = 68143, - [SMALL_STATE(1879)] = 68153, - [SMALL_STATE(1880)] = 68163, - [SMALL_STATE(1881)] = 68171, - [SMALL_STATE(1882)] = 68179, - [SMALL_STATE(1883)] = 68189, - [SMALL_STATE(1884)] = 68199, - [SMALL_STATE(1885)] = 68209, - [SMALL_STATE(1886)] = 68219, - [SMALL_STATE(1887)] = 68229, - [SMALL_STATE(1888)] = 68237, - [SMALL_STATE(1889)] = 68247, - [SMALL_STATE(1890)] = 68257, - [SMALL_STATE(1891)] = 68267, - [SMALL_STATE(1892)] = 68277, - [SMALL_STATE(1893)] = 68287, - [SMALL_STATE(1894)] = 68297, - [SMALL_STATE(1895)] = 68307, - [SMALL_STATE(1896)] = 68317, - [SMALL_STATE(1897)] = 68327, - [SMALL_STATE(1898)] = 68337, - [SMALL_STATE(1899)] = 68345, - [SMALL_STATE(1900)] = 68355, - [SMALL_STATE(1901)] = 68363, - [SMALL_STATE(1902)] = 68373, - [SMALL_STATE(1903)] = 68383, - [SMALL_STATE(1904)] = 68391, - [SMALL_STATE(1905)] = 68401, - [SMALL_STATE(1906)] = 68411, - [SMALL_STATE(1907)] = 68421, - [SMALL_STATE(1908)] = 68431, - [SMALL_STATE(1909)] = 68441, - [SMALL_STATE(1910)] = 68449, - [SMALL_STATE(1911)] = 68459, - [SMALL_STATE(1912)] = 68469, - [SMALL_STATE(1913)] = 68479, - [SMALL_STATE(1914)] = 68489, - [SMALL_STATE(1915)] = 68499, - [SMALL_STATE(1916)] = 68509, - [SMALL_STATE(1917)] = 68519, - [SMALL_STATE(1918)] = 68529, - [SMALL_STATE(1919)] = 68539, - [SMALL_STATE(1920)] = 68549, - [SMALL_STATE(1921)] = 68559, - [SMALL_STATE(1922)] = 68569, - [SMALL_STATE(1923)] = 68579, - [SMALL_STATE(1924)] = 68589, - [SMALL_STATE(1925)] = 68599, - [SMALL_STATE(1926)] = 68609, - [SMALL_STATE(1927)] = 68619, - [SMALL_STATE(1928)] = 68627, - [SMALL_STATE(1929)] = 68634, - [SMALL_STATE(1930)] = 68641, - [SMALL_STATE(1931)] = 68648, - [SMALL_STATE(1932)] = 68655, - [SMALL_STATE(1933)] = 68662, - [SMALL_STATE(1934)] = 68669, - [SMALL_STATE(1935)] = 68676, - [SMALL_STATE(1936)] = 68683, - [SMALL_STATE(1937)] = 68690, - [SMALL_STATE(1938)] = 68697, - [SMALL_STATE(1939)] = 68704, - [SMALL_STATE(1940)] = 68711, - [SMALL_STATE(1941)] = 68718, - [SMALL_STATE(1942)] = 68725, - [SMALL_STATE(1943)] = 68732, - [SMALL_STATE(1944)] = 68739, - [SMALL_STATE(1945)] = 68746, - [SMALL_STATE(1946)] = 68753, - [SMALL_STATE(1947)] = 68760, - [SMALL_STATE(1948)] = 68767, - [SMALL_STATE(1949)] = 68774, - [SMALL_STATE(1950)] = 68781, - [SMALL_STATE(1951)] = 68788, - [SMALL_STATE(1952)] = 68795, - [SMALL_STATE(1953)] = 68802, - [SMALL_STATE(1954)] = 68809, - [SMALL_STATE(1955)] = 68816, - [SMALL_STATE(1956)] = 68823, - [SMALL_STATE(1957)] = 68830, - [SMALL_STATE(1958)] = 68837, - [SMALL_STATE(1959)] = 68844, - [SMALL_STATE(1960)] = 68851, - [SMALL_STATE(1961)] = 68858, - [SMALL_STATE(1962)] = 68865, - [SMALL_STATE(1963)] = 68872, - [SMALL_STATE(1964)] = 68879, - [SMALL_STATE(1965)] = 68886, - [SMALL_STATE(1966)] = 68893, - [SMALL_STATE(1967)] = 68900, - [SMALL_STATE(1968)] = 68907, - [SMALL_STATE(1969)] = 68914, - [SMALL_STATE(1970)] = 68921, - [SMALL_STATE(1971)] = 68928, - [SMALL_STATE(1972)] = 68935, - [SMALL_STATE(1973)] = 68942, - [SMALL_STATE(1974)] = 68949, - [SMALL_STATE(1975)] = 68956, - [SMALL_STATE(1976)] = 68963, - [SMALL_STATE(1977)] = 68970, - [SMALL_STATE(1978)] = 68977, - [SMALL_STATE(1979)] = 68984, - [SMALL_STATE(1980)] = 68991, - [SMALL_STATE(1981)] = 68998, - [SMALL_STATE(1982)] = 69005, - [SMALL_STATE(1983)] = 69012, - [SMALL_STATE(1984)] = 69019, - [SMALL_STATE(1985)] = 69026, - [SMALL_STATE(1986)] = 69033, - [SMALL_STATE(1987)] = 69040, - [SMALL_STATE(1988)] = 69047, - [SMALL_STATE(1989)] = 69054, - [SMALL_STATE(1990)] = 69061, - [SMALL_STATE(1991)] = 69068, - [SMALL_STATE(1992)] = 69075, - [SMALL_STATE(1993)] = 69082, - [SMALL_STATE(1994)] = 69089, - [SMALL_STATE(1995)] = 69096, - [SMALL_STATE(1996)] = 69103, - [SMALL_STATE(1997)] = 69110, - [SMALL_STATE(1998)] = 69117, - [SMALL_STATE(1999)] = 69124, - [SMALL_STATE(2000)] = 69131, - [SMALL_STATE(2001)] = 69138, - [SMALL_STATE(2002)] = 69145, - [SMALL_STATE(2003)] = 69152, - [SMALL_STATE(2004)] = 69159, - [SMALL_STATE(2005)] = 69166, - [SMALL_STATE(2006)] = 69173, - [SMALL_STATE(2007)] = 69180, - [SMALL_STATE(2008)] = 69187, - [SMALL_STATE(2009)] = 69194, - [SMALL_STATE(2010)] = 69201, - [SMALL_STATE(2011)] = 69208, - [SMALL_STATE(2012)] = 69215, - [SMALL_STATE(2013)] = 69222, - [SMALL_STATE(2014)] = 69229, - [SMALL_STATE(2015)] = 69236, - [SMALL_STATE(2016)] = 69243, - [SMALL_STATE(2017)] = 69250, - [SMALL_STATE(2018)] = 69257, - [SMALL_STATE(2019)] = 69264, - [SMALL_STATE(2020)] = 69271, - [SMALL_STATE(2021)] = 69278, - [SMALL_STATE(2022)] = 69285, - [SMALL_STATE(2023)] = 69292, - [SMALL_STATE(2024)] = 69299, - [SMALL_STATE(2025)] = 69306, - [SMALL_STATE(2026)] = 69313, - [SMALL_STATE(2027)] = 69320, - [SMALL_STATE(2028)] = 69327, - [SMALL_STATE(2029)] = 69334, - [SMALL_STATE(2030)] = 69341, - [SMALL_STATE(2031)] = 69348, - [SMALL_STATE(2032)] = 69355, - [SMALL_STATE(2033)] = 69362, - [SMALL_STATE(2034)] = 69369, - [SMALL_STATE(2035)] = 69376, - [SMALL_STATE(2036)] = 69383, - [SMALL_STATE(2037)] = 69390, - [SMALL_STATE(2038)] = 69397, - [SMALL_STATE(2039)] = 69404, - [SMALL_STATE(2040)] = 69411, - [SMALL_STATE(2041)] = 69418, - [SMALL_STATE(2042)] = 69425, - [SMALL_STATE(2043)] = 69432, - [SMALL_STATE(2044)] = 69439, - [SMALL_STATE(2045)] = 69446, - [SMALL_STATE(2046)] = 69453, - [SMALL_STATE(2047)] = 69460, - [SMALL_STATE(2048)] = 69467, - [SMALL_STATE(2049)] = 69474, - [SMALL_STATE(2050)] = 69481, - [SMALL_STATE(2051)] = 69488, - [SMALL_STATE(2052)] = 69495, - [SMALL_STATE(2053)] = 69502, - [SMALL_STATE(2054)] = 69509, - [SMALL_STATE(2055)] = 69516, - [SMALL_STATE(2056)] = 69523, - [SMALL_STATE(2057)] = 69530, - [SMALL_STATE(2058)] = 69537, - [SMALL_STATE(2059)] = 69544, - [SMALL_STATE(2060)] = 69551, - [SMALL_STATE(2061)] = 69558, - [SMALL_STATE(2062)] = 69565, - [SMALL_STATE(2063)] = 69572, - [SMALL_STATE(2064)] = 69579, - [SMALL_STATE(2065)] = 69586, - [SMALL_STATE(2066)] = 69593, - [SMALL_STATE(2067)] = 69600, - [SMALL_STATE(2068)] = 69607, - [SMALL_STATE(2069)] = 69614, - [SMALL_STATE(2070)] = 69621, - [SMALL_STATE(2071)] = 69628, - [SMALL_STATE(2072)] = 69635, - [SMALL_STATE(2073)] = 69642, - [SMALL_STATE(2074)] = 69649, - [SMALL_STATE(2075)] = 69656, - [SMALL_STATE(2076)] = 69663, - [SMALL_STATE(2077)] = 69670, - [SMALL_STATE(2078)] = 69677, - [SMALL_STATE(2079)] = 69684, - [SMALL_STATE(2080)] = 69691, - [SMALL_STATE(2081)] = 69698, - [SMALL_STATE(2082)] = 69705, - [SMALL_STATE(2083)] = 69712, - [SMALL_STATE(2084)] = 69719, - [SMALL_STATE(2085)] = 69726, - [SMALL_STATE(2086)] = 69733, - [SMALL_STATE(2087)] = 69740, - [SMALL_STATE(2088)] = 69747, - [SMALL_STATE(2089)] = 69754, - [SMALL_STATE(2090)] = 69761, - [SMALL_STATE(2091)] = 69768, - [SMALL_STATE(2092)] = 69775, - [SMALL_STATE(2093)] = 69782, - [SMALL_STATE(2094)] = 69789, - [SMALL_STATE(2095)] = 69796, - [SMALL_STATE(2096)] = 69803, - [SMALL_STATE(2097)] = 69810, - [SMALL_STATE(2098)] = 69817, - [SMALL_STATE(2099)] = 69824, - [SMALL_STATE(2100)] = 69831, - [SMALL_STATE(2101)] = 69838, - [SMALL_STATE(2102)] = 69845, - [SMALL_STATE(2103)] = 69852, - [SMALL_STATE(2104)] = 69859, - [SMALL_STATE(2105)] = 69866, - [SMALL_STATE(2106)] = 69873, - [SMALL_STATE(2107)] = 69880, - [SMALL_STATE(2108)] = 69887, - [SMALL_STATE(2109)] = 69894, - [SMALL_STATE(2110)] = 69901, - [SMALL_STATE(2111)] = 69908, - [SMALL_STATE(2112)] = 69915, - [SMALL_STATE(2113)] = 69922, - [SMALL_STATE(2114)] = 69929, - [SMALL_STATE(2115)] = 69936, - [SMALL_STATE(2116)] = 69943, - [SMALL_STATE(2117)] = 69950, - [SMALL_STATE(2118)] = 69957, - [SMALL_STATE(2119)] = 69964, - [SMALL_STATE(2120)] = 69971, - [SMALL_STATE(2121)] = 69978, - [SMALL_STATE(2122)] = 69985, - [SMALL_STATE(2123)] = 69992, - [SMALL_STATE(2124)] = 69999, - [SMALL_STATE(2125)] = 70006, - [SMALL_STATE(2126)] = 70013, - [SMALL_STATE(2127)] = 70020, - [SMALL_STATE(2128)] = 70027, - [SMALL_STATE(2129)] = 70034, - [SMALL_STATE(2130)] = 70041, - [SMALL_STATE(2131)] = 70048, - [SMALL_STATE(2132)] = 70055, - [SMALL_STATE(2133)] = 70062, - [SMALL_STATE(2134)] = 70069, - [SMALL_STATE(2135)] = 70076, - [SMALL_STATE(2136)] = 70083, - [SMALL_STATE(2137)] = 70090, - [SMALL_STATE(2138)] = 70097, - [SMALL_STATE(2139)] = 70104, - [SMALL_STATE(2140)] = 70111, - [SMALL_STATE(2141)] = 70118, - [SMALL_STATE(2142)] = 70125, - [SMALL_STATE(2143)] = 70132, - [SMALL_STATE(2144)] = 70139, - [SMALL_STATE(2145)] = 70146, - [SMALL_STATE(2146)] = 70153, - [SMALL_STATE(2147)] = 70160, - [SMALL_STATE(2148)] = 70167, - [SMALL_STATE(2149)] = 70174, - [SMALL_STATE(2150)] = 70181, - [SMALL_STATE(2151)] = 70188, - [SMALL_STATE(2152)] = 70195, - [SMALL_STATE(2153)] = 70202, - [SMALL_STATE(2154)] = 70209, - [SMALL_STATE(2155)] = 70216, - [SMALL_STATE(2156)] = 70223, - [SMALL_STATE(2157)] = 70230, - [SMALL_STATE(2158)] = 70237, - [SMALL_STATE(2159)] = 70244, - [SMALL_STATE(2160)] = 70251, - [SMALL_STATE(2161)] = 70258, - [SMALL_STATE(2162)] = 70265, - [SMALL_STATE(2163)] = 70272, - [SMALL_STATE(2164)] = 70279, - [SMALL_STATE(2165)] = 70286, - [SMALL_STATE(2166)] = 70293, - [SMALL_STATE(2167)] = 70300, - [SMALL_STATE(2168)] = 70307, - [SMALL_STATE(2169)] = 70314, - [SMALL_STATE(2170)] = 70321, - [SMALL_STATE(2171)] = 70328, - [SMALL_STATE(2172)] = 70335, - [SMALL_STATE(2173)] = 70342, - [SMALL_STATE(2174)] = 70349, - [SMALL_STATE(2175)] = 70356, - [SMALL_STATE(2176)] = 70363, - [SMALL_STATE(2177)] = 70370, - [SMALL_STATE(2178)] = 70377, - [SMALL_STATE(2179)] = 70384, - [SMALL_STATE(2180)] = 70391, - [SMALL_STATE(2181)] = 70398, - [SMALL_STATE(2182)] = 70405, - [SMALL_STATE(2183)] = 70412, - [SMALL_STATE(2184)] = 70419, - [SMALL_STATE(2185)] = 70426, - [SMALL_STATE(2186)] = 70433, - [SMALL_STATE(2187)] = 70440, - [SMALL_STATE(2188)] = 70447, - [SMALL_STATE(2189)] = 70454, - [SMALL_STATE(2190)] = 70461, - [SMALL_STATE(2191)] = 70468, - [SMALL_STATE(2192)] = 70475, - [SMALL_STATE(2193)] = 70482, - [SMALL_STATE(2194)] = 70489, - [SMALL_STATE(2195)] = 70496, - [SMALL_STATE(2196)] = 70503, - [SMALL_STATE(2197)] = 70510, - [SMALL_STATE(2198)] = 70517, - [SMALL_STATE(2199)] = 70524, - [SMALL_STATE(2200)] = 70531, - [SMALL_STATE(2201)] = 70538, - [SMALL_STATE(2202)] = 70545, - [SMALL_STATE(2203)] = 70552, - [SMALL_STATE(2204)] = 70559, - [SMALL_STATE(2205)] = 70566, - [SMALL_STATE(2206)] = 70573, - [SMALL_STATE(2207)] = 70580, - [SMALL_STATE(2208)] = 70587, - [SMALL_STATE(2209)] = 70594, - [SMALL_STATE(2210)] = 70601, - [SMALL_STATE(2211)] = 70608, - [SMALL_STATE(2212)] = 70615, - [SMALL_STATE(2213)] = 70622, - [SMALL_STATE(2214)] = 70629, - [SMALL_STATE(2215)] = 70636, - [SMALL_STATE(2216)] = 70643, - [SMALL_STATE(2217)] = 70650, - [SMALL_STATE(2218)] = 70657, - [SMALL_STATE(2219)] = 70664, - [SMALL_STATE(2220)] = 70671, - [SMALL_STATE(2221)] = 70678, - [SMALL_STATE(2222)] = 70685, - [SMALL_STATE(2223)] = 70692, - [SMALL_STATE(2224)] = 70699, - [SMALL_STATE(2225)] = 70706, + [SMALL_STATE(1744)] = 66625, + [SMALL_STATE(1745)] = 66639, + [SMALL_STATE(1746)] = 66653, + [SMALL_STATE(1747)] = 66667, + [SMALL_STATE(1748)] = 66681, + [SMALL_STATE(1749)] = 66695, + [SMALL_STATE(1750)] = 66711, + [SMALL_STATE(1751)] = 66725, + [SMALL_STATE(1752)] = 66739, + [SMALL_STATE(1753)] = 66753, + [SMALL_STATE(1754)] = 66767, + [SMALL_STATE(1755)] = 66781, + [SMALL_STATE(1756)] = 66797, + [SMALL_STATE(1757)] = 66813, + [SMALL_STATE(1758)] = 66827, + [SMALL_STATE(1759)] = 66843, + [SMALL_STATE(1760)] = 66857, + [SMALL_STATE(1761)] = 66871, + [SMALL_STATE(1762)] = 66887, + [SMALL_STATE(1763)] = 66903, + [SMALL_STATE(1764)] = 66917, + [SMALL_STATE(1765)] = 66931, + [SMALL_STATE(1766)] = 66945, + [SMALL_STATE(1767)] = 66959, + [SMALL_STATE(1768)] = 66975, + [SMALL_STATE(1769)] = 66989, + [SMALL_STATE(1770)] = 67005, + [SMALL_STATE(1771)] = 67021, + [SMALL_STATE(1772)] = 67035, + [SMALL_STATE(1773)] = 67049, + [SMALL_STATE(1774)] = 67063, + [SMALL_STATE(1775)] = 67077, + [SMALL_STATE(1776)] = 67091, + [SMALL_STATE(1777)] = 67105, + [SMALL_STATE(1778)] = 67121, + [SMALL_STATE(1779)] = 67131, + [SMALL_STATE(1780)] = 67147, + [SMALL_STATE(1781)] = 67163, + [SMALL_STATE(1782)] = 67177, + [SMALL_STATE(1783)] = 67193, + [SMALL_STATE(1784)] = 67209, + [SMALL_STATE(1785)] = 67225, + [SMALL_STATE(1786)] = 67241, + [SMALL_STATE(1787)] = 67254, + [SMALL_STATE(1788)] = 67267, + [SMALL_STATE(1789)] = 67280, + [SMALL_STATE(1790)] = 67293, + [SMALL_STATE(1791)] = 67302, + [SMALL_STATE(1792)] = 67311, + [SMALL_STATE(1793)] = 67324, + [SMALL_STATE(1794)] = 67337, + [SMALL_STATE(1795)] = 67350, + [SMALL_STATE(1796)] = 67363, + [SMALL_STATE(1797)] = 67376, + [SMALL_STATE(1798)] = 67389, + [SMALL_STATE(1799)] = 67402, + [SMALL_STATE(1800)] = 67415, + [SMALL_STATE(1801)] = 67428, + [SMALL_STATE(1802)] = 67441, + [SMALL_STATE(1803)] = 67454, + [SMALL_STATE(1804)] = 67467, + [SMALL_STATE(1805)] = 67478, + [SMALL_STATE(1806)] = 67491, + [SMALL_STATE(1807)] = 67504, + [SMALL_STATE(1808)] = 67517, + [SMALL_STATE(1809)] = 67528, + [SMALL_STATE(1810)] = 67541, + [SMALL_STATE(1811)] = 67554, + [SMALL_STATE(1812)] = 67565, + [SMALL_STATE(1813)] = 67578, + [SMALL_STATE(1814)] = 67591, + [SMALL_STATE(1815)] = 67604, + [SMALL_STATE(1816)] = 67617, + [SMALL_STATE(1817)] = 67630, + [SMALL_STATE(1818)] = 67643, + [SMALL_STATE(1819)] = 67654, + [SMALL_STATE(1820)] = 67663, + [SMALL_STATE(1821)] = 67676, + [SMALL_STATE(1822)] = 67689, + [SMALL_STATE(1823)] = 67698, + [SMALL_STATE(1824)] = 67711, + [SMALL_STATE(1825)] = 67724, + [SMALL_STATE(1826)] = 67737, + [SMALL_STATE(1827)] = 67750, + [SMALL_STATE(1828)] = 67763, + [SMALL_STATE(1829)] = 67776, + [SMALL_STATE(1830)] = 67789, + [SMALL_STATE(1831)] = 67802, + [SMALL_STATE(1832)] = 67815, + [SMALL_STATE(1833)] = 67828, + [SMALL_STATE(1834)] = 67841, + [SMALL_STATE(1835)] = 67854, + [SMALL_STATE(1836)] = 67867, + [SMALL_STATE(1837)] = 67880, + [SMALL_STATE(1838)] = 67889, + [SMALL_STATE(1839)] = 67902, + [SMALL_STATE(1840)] = 67915, + [SMALL_STATE(1841)] = 67928, + [SMALL_STATE(1842)] = 67941, + [SMALL_STATE(1843)] = 67954, + [SMALL_STATE(1844)] = 67967, + [SMALL_STATE(1845)] = 67976, + [SMALL_STATE(1846)] = 67989, + [SMALL_STATE(1847)] = 68000, + [SMALL_STATE(1848)] = 68009, + [SMALL_STATE(1849)] = 68022, + [SMALL_STATE(1850)] = 68035, + [SMALL_STATE(1851)] = 68048, + [SMALL_STATE(1852)] = 68061, + [SMALL_STATE(1853)] = 68074, + [SMALL_STATE(1854)] = 68087, + [SMALL_STATE(1855)] = 68100, + [SMALL_STATE(1856)] = 68113, + [SMALL_STATE(1857)] = 68126, + [SMALL_STATE(1858)] = 68139, + [SMALL_STATE(1859)] = 68152, + [SMALL_STATE(1860)] = 68161, + [SMALL_STATE(1861)] = 68174, + [SMALL_STATE(1862)] = 68187, + [SMALL_STATE(1863)] = 68200, + [SMALL_STATE(1864)] = 68209, + [SMALL_STATE(1865)] = 68222, + [SMALL_STATE(1866)] = 68235, + [SMALL_STATE(1867)] = 68248, + [SMALL_STATE(1868)] = 68261, + [SMALL_STATE(1869)] = 68274, + [SMALL_STATE(1870)] = 68283, + [SMALL_STATE(1871)] = 68296, + [SMALL_STATE(1872)] = 68309, + [SMALL_STATE(1873)] = 68322, + [SMALL_STATE(1874)] = 68335, + [SMALL_STATE(1875)] = 68348, + [SMALL_STATE(1876)] = 68361, + [SMALL_STATE(1877)] = 68374, + [SMALL_STATE(1878)] = 68387, + [SMALL_STATE(1879)] = 68400, + [SMALL_STATE(1880)] = 68413, + [SMALL_STATE(1881)] = 68422, + [SMALL_STATE(1882)] = 68435, + [SMALL_STATE(1883)] = 68448, + [SMALL_STATE(1884)] = 68461, + [SMALL_STATE(1885)] = 68474, + [SMALL_STATE(1886)] = 68487, + [SMALL_STATE(1887)] = 68498, + [SMALL_STATE(1888)] = 68511, + [SMALL_STATE(1889)] = 68524, + [SMALL_STATE(1890)] = 68537, + [SMALL_STATE(1891)] = 68550, + [SMALL_STATE(1892)] = 68563, + [SMALL_STATE(1893)] = 68576, + [SMALL_STATE(1894)] = 68589, + [SMALL_STATE(1895)] = 68602, + [SMALL_STATE(1896)] = 68615, + [SMALL_STATE(1897)] = 68628, + [SMALL_STATE(1898)] = 68641, + [SMALL_STATE(1899)] = 68654, + [SMALL_STATE(1900)] = 68667, + [SMALL_STATE(1901)] = 68680, + [SMALL_STATE(1902)] = 68693, + [SMALL_STATE(1903)] = 68706, + [SMALL_STATE(1904)] = 68719, + [SMALL_STATE(1905)] = 68732, + [SMALL_STATE(1906)] = 68745, + [SMALL_STATE(1907)] = 68758, + [SMALL_STATE(1908)] = 68771, + [SMALL_STATE(1909)] = 68779, + [SMALL_STATE(1910)] = 68787, + [SMALL_STATE(1911)] = 68797, + [SMALL_STATE(1912)] = 68807, + [SMALL_STATE(1913)] = 68817, + [SMALL_STATE(1914)] = 68827, + [SMALL_STATE(1915)] = 68835, + [SMALL_STATE(1916)] = 68843, + [SMALL_STATE(1917)] = 68853, + [SMALL_STATE(1918)] = 68861, + [SMALL_STATE(1919)] = 68871, + [SMALL_STATE(1920)] = 68879, + [SMALL_STATE(1921)] = 68889, + [SMALL_STATE(1922)] = 68899, + [SMALL_STATE(1923)] = 68909, + [SMALL_STATE(1924)] = 68919, + [SMALL_STATE(1925)] = 68929, + [SMALL_STATE(1926)] = 68939, + [SMALL_STATE(1927)] = 68949, + [SMALL_STATE(1928)] = 68959, + [SMALL_STATE(1929)] = 68969, + [SMALL_STATE(1930)] = 68979, + [SMALL_STATE(1931)] = 68989, + [SMALL_STATE(1932)] = 68999, + [SMALL_STATE(1933)] = 69009, + [SMALL_STATE(1934)] = 69019, + [SMALL_STATE(1935)] = 69029, + [SMALL_STATE(1936)] = 69039, + [SMALL_STATE(1937)] = 69049, + [SMALL_STATE(1938)] = 69057, + [SMALL_STATE(1939)] = 69067, + [SMALL_STATE(1940)] = 69077, + [SMALL_STATE(1941)] = 69087, + [SMALL_STATE(1942)] = 69097, + [SMALL_STATE(1943)] = 69107, + [SMALL_STATE(1944)] = 69117, + [SMALL_STATE(1945)] = 69127, + [SMALL_STATE(1946)] = 69137, + [SMALL_STATE(1947)] = 69145, + [SMALL_STATE(1948)] = 69155, + [SMALL_STATE(1949)] = 69165, + [SMALL_STATE(1950)] = 69175, + [SMALL_STATE(1951)] = 69185, + [SMALL_STATE(1952)] = 69195, + [SMALL_STATE(1953)] = 69205, + [SMALL_STATE(1954)] = 69215, + [SMALL_STATE(1955)] = 69223, + [SMALL_STATE(1956)] = 69231, + [SMALL_STATE(1957)] = 69239, + [SMALL_STATE(1958)] = 69249, + [SMALL_STATE(1959)] = 69259, + [SMALL_STATE(1960)] = 69267, + [SMALL_STATE(1961)] = 69275, + [SMALL_STATE(1962)] = 69285, + [SMALL_STATE(1963)] = 69293, + [SMALL_STATE(1964)] = 69303, + [SMALL_STATE(1965)] = 69313, + [SMALL_STATE(1966)] = 69323, + [SMALL_STATE(1967)] = 69333, + [SMALL_STATE(1968)] = 69343, + [SMALL_STATE(1969)] = 69353, + [SMALL_STATE(1970)] = 69363, + [SMALL_STATE(1971)] = 69373, + [SMALL_STATE(1972)] = 69383, + [SMALL_STATE(1973)] = 69391, + [SMALL_STATE(1974)] = 69401, + [SMALL_STATE(1975)] = 69409, + [SMALL_STATE(1976)] = 69419, + [SMALL_STATE(1977)] = 69429, + [SMALL_STATE(1978)] = 69439, + [SMALL_STATE(1979)] = 69449, + [SMALL_STATE(1980)] = 69459, + [SMALL_STATE(1981)] = 69469, + [SMALL_STATE(1982)] = 69479, + [SMALL_STATE(1983)] = 69489, + [SMALL_STATE(1984)] = 69499, + [SMALL_STATE(1985)] = 69509, + [SMALL_STATE(1986)] = 69519, + [SMALL_STATE(1987)] = 69529, + [SMALL_STATE(1988)] = 69539, + [SMALL_STATE(1989)] = 69547, + [SMALL_STATE(1990)] = 69557, + [SMALL_STATE(1991)] = 69567, + [SMALL_STATE(1992)] = 69577, + [SMALL_STATE(1993)] = 69587, + [SMALL_STATE(1994)] = 69597, + [SMALL_STATE(1995)] = 69607, + [SMALL_STATE(1996)] = 69617, + [SMALL_STATE(1997)] = 69625, + [SMALL_STATE(1998)] = 69635, + [SMALL_STATE(1999)] = 69645, + [SMALL_STATE(2000)] = 69655, + [SMALL_STATE(2001)] = 69665, + [SMALL_STATE(2002)] = 69675, + [SMALL_STATE(2003)] = 69685, + [SMALL_STATE(2004)] = 69695, + [SMALL_STATE(2005)] = 69705, + [SMALL_STATE(2006)] = 69715, + [SMALL_STATE(2007)] = 69725, + [SMALL_STATE(2008)] = 69735, + [SMALL_STATE(2009)] = 69745, + [SMALL_STATE(2010)] = 69752, + [SMALL_STATE(2011)] = 69759, + [SMALL_STATE(2012)] = 69766, + [SMALL_STATE(2013)] = 69773, + [SMALL_STATE(2014)] = 69780, + [SMALL_STATE(2015)] = 69787, + [SMALL_STATE(2016)] = 69794, + [SMALL_STATE(2017)] = 69801, + [SMALL_STATE(2018)] = 69808, + [SMALL_STATE(2019)] = 69815, + [SMALL_STATE(2020)] = 69822, + [SMALL_STATE(2021)] = 69829, + [SMALL_STATE(2022)] = 69836, + [SMALL_STATE(2023)] = 69843, + [SMALL_STATE(2024)] = 69850, + [SMALL_STATE(2025)] = 69857, + [SMALL_STATE(2026)] = 69864, + [SMALL_STATE(2027)] = 69871, + [SMALL_STATE(2028)] = 69878, + [SMALL_STATE(2029)] = 69885, + [SMALL_STATE(2030)] = 69892, + [SMALL_STATE(2031)] = 69899, + [SMALL_STATE(2032)] = 69906, + [SMALL_STATE(2033)] = 69913, + [SMALL_STATE(2034)] = 69920, + [SMALL_STATE(2035)] = 69927, + [SMALL_STATE(2036)] = 69934, + [SMALL_STATE(2037)] = 69941, + [SMALL_STATE(2038)] = 69948, + [SMALL_STATE(2039)] = 69955, + [SMALL_STATE(2040)] = 69962, + [SMALL_STATE(2041)] = 69969, + [SMALL_STATE(2042)] = 69976, + [SMALL_STATE(2043)] = 69983, + [SMALL_STATE(2044)] = 69990, + [SMALL_STATE(2045)] = 69997, + [SMALL_STATE(2046)] = 70004, + [SMALL_STATE(2047)] = 70011, + [SMALL_STATE(2048)] = 70018, + [SMALL_STATE(2049)] = 70025, + [SMALL_STATE(2050)] = 70032, + [SMALL_STATE(2051)] = 70039, + [SMALL_STATE(2052)] = 70046, + [SMALL_STATE(2053)] = 70053, + [SMALL_STATE(2054)] = 70060, + [SMALL_STATE(2055)] = 70067, + [SMALL_STATE(2056)] = 70074, + [SMALL_STATE(2057)] = 70081, + [SMALL_STATE(2058)] = 70088, + [SMALL_STATE(2059)] = 70095, + [SMALL_STATE(2060)] = 70102, + [SMALL_STATE(2061)] = 70109, + [SMALL_STATE(2062)] = 70116, + [SMALL_STATE(2063)] = 70123, + [SMALL_STATE(2064)] = 70130, + [SMALL_STATE(2065)] = 70137, + [SMALL_STATE(2066)] = 70144, + [SMALL_STATE(2067)] = 70151, + [SMALL_STATE(2068)] = 70158, + [SMALL_STATE(2069)] = 70165, + [SMALL_STATE(2070)] = 70172, + [SMALL_STATE(2071)] = 70179, + [SMALL_STATE(2072)] = 70186, + [SMALL_STATE(2073)] = 70193, + [SMALL_STATE(2074)] = 70200, + [SMALL_STATE(2075)] = 70207, + [SMALL_STATE(2076)] = 70214, + [SMALL_STATE(2077)] = 70221, + [SMALL_STATE(2078)] = 70228, + [SMALL_STATE(2079)] = 70235, + [SMALL_STATE(2080)] = 70242, + [SMALL_STATE(2081)] = 70249, + [SMALL_STATE(2082)] = 70256, + [SMALL_STATE(2083)] = 70263, + [SMALL_STATE(2084)] = 70270, + [SMALL_STATE(2085)] = 70277, + [SMALL_STATE(2086)] = 70284, + [SMALL_STATE(2087)] = 70291, + [SMALL_STATE(2088)] = 70298, + [SMALL_STATE(2089)] = 70305, + [SMALL_STATE(2090)] = 70312, + [SMALL_STATE(2091)] = 70319, + [SMALL_STATE(2092)] = 70326, + [SMALL_STATE(2093)] = 70333, + [SMALL_STATE(2094)] = 70340, + [SMALL_STATE(2095)] = 70347, + [SMALL_STATE(2096)] = 70354, + [SMALL_STATE(2097)] = 70361, + [SMALL_STATE(2098)] = 70368, + [SMALL_STATE(2099)] = 70375, + [SMALL_STATE(2100)] = 70382, + [SMALL_STATE(2101)] = 70389, + [SMALL_STATE(2102)] = 70396, + [SMALL_STATE(2103)] = 70403, + [SMALL_STATE(2104)] = 70410, + [SMALL_STATE(2105)] = 70417, + [SMALL_STATE(2106)] = 70424, + [SMALL_STATE(2107)] = 70431, + [SMALL_STATE(2108)] = 70438, + [SMALL_STATE(2109)] = 70445, + [SMALL_STATE(2110)] = 70452, + [SMALL_STATE(2111)] = 70459, + [SMALL_STATE(2112)] = 70466, + [SMALL_STATE(2113)] = 70473, + [SMALL_STATE(2114)] = 70480, + [SMALL_STATE(2115)] = 70487, + [SMALL_STATE(2116)] = 70494, + [SMALL_STATE(2117)] = 70501, + [SMALL_STATE(2118)] = 70508, + [SMALL_STATE(2119)] = 70515, + [SMALL_STATE(2120)] = 70522, + [SMALL_STATE(2121)] = 70529, + [SMALL_STATE(2122)] = 70536, + [SMALL_STATE(2123)] = 70543, + [SMALL_STATE(2124)] = 70550, + [SMALL_STATE(2125)] = 70557, + [SMALL_STATE(2126)] = 70564, + [SMALL_STATE(2127)] = 70571, + [SMALL_STATE(2128)] = 70578, + [SMALL_STATE(2129)] = 70585, + [SMALL_STATE(2130)] = 70592, + [SMALL_STATE(2131)] = 70599, + [SMALL_STATE(2132)] = 70606, + [SMALL_STATE(2133)] = 70613, + [SMALL_STATE(2134)] = 70620, + [SMALL_STATE(2135)] = 70627, + [SMALL_STATE(2136)] = 70634, + [SMALL_STATE(2137)] = 70641, + [SMALL_STATE(2138)] = 70648, + [SMALL_STATE(2139)] = 70655, + [SMALL_STATE(2140)] = 70662, + [SMALL_STATE(2141)] = 70669, + [SMALL_STATE(2142)] = 70676, + [SMALL_STATE(2143)] = 70683, + [SMALL_STATE(2144)] = 70690, + [SMALL_STATE(2145)] = 70697, + [SMALL_STATE(2146)] = 70704, + [SMALL_STATE(2147)] = 70711, + [SMALL_STATE(2148)] = 70718, + [SMALL_STATE(2149)] = 70725, + [SMALL_STATE(2150)] = 70732, + [SMALL_STATE(2151)] = 70739, + [SMALL_STATE(2152)] = 70746, + [SMALL_STATE(2153)] = 70753, + [SMALL_STATE(2154)] = 70760, + [SMALL_STATE(2155)] = 70767, + [SMALL_STATE(2156)] = 70774, + [SMALL_STATE(2157)] = 70781, + [SMALL_STATE(2158)] = 70788, + [SMALL_STATE(2159)] = 70795, + [SMALL_STATE(2160)] = 70802, + [SMALL_STATE(2161)] = 70809, + [SMALL_STATE(2162)] = 70816, + [SMALL_STATE(2163)] = 70823, + [SMALL_STATE(2164)] = 70830, + [SMALL_STATE(2165)] = 70837, + [SMALL_STATE(2166)] = 70844, + [SMALL_STATE(2167)] = 70851, + [SMALL_STATE(2168)] = 70858, + [SMALL_STATE(2169)] = 70865, + [SMALL_STATE(2170)] = 70872, + [SMALL_STATE(2171)] = 70879, + [SMALL_STATE(2172)] = 70886, + [SMALL_STATE(2173)] = 70893, + [SMALL_STATE(2174)] = 70900, + [SMALL_STATE(2175)] = 70907, + [SMALL_STATE(2176)] = 70914, + [SMALL_STATE(2177)] = 70921, + [SMALL_STATE(2178)] = 70928, + [SMALL_STATE(2179)] = 70935, + [SMALL_STATE(2180)] = 70942, + [SMALL_STATE(2181)] = 70949, + [SMALL_STATE(2182)] = 70956, + [SMALL_STATE(2183)] = 70963, + [SMALL_STATE(2184)] = 70970, + [SMALL_STATE(2185)] = 70977, + [SMALL_STATE(2186)] = 70984, + [SMALL_STATE(2187)] = 70991, + [SMALL_STATE(2188)] = 70998, + [SMALL_STATE(2189)] = 71005, + [SMALL_STATE(2190)] = 71012, + [SMALL_STATE(2191)] = 71019, + [SMALL_STATE(2192)] = 71026, + [SMALL_STATE(2193)] = 71033, + [SMALL_STATE(2194)] = 71040, + [SMALL_STATE(2195)] = 71047, + [SMALL_STATE(2196)] = 71054, + [SMALL_STATE(2197)] = 71061, + [SMALL_STATE(2198)] = 71068, + [SMALL_STATE(2199)] = 71075, + [SMALL_STATE(2200)] = 71082, + [SMALL_STATE(2201)] = 71089, + [SMALL_STATE(2202)] = 71096, + [SMALL_STATE(2203)] = 71103, + [SMALL_STATE(2204)] = 71110, + [SMALL_STATE(2205)] = 71117, + [SMALL_STATE(2206)] = 71124, + [SMALL_STATE(2207)] = 71131, + [SMALL_STATE(2208)] = 71138, + [SMALL_STATE(2209)] = 71145, + [SMALL_STATE(2210)] = 71152, + [SMALL_STATE(2211)] = 71159, + [SMALL_STATE(2212)] = 71166, + [SMALL_STATE(2213)] = 71173, + [SMALL_STATE(2214)] = 71180, + [SMALL_STATE(2215)] = 71187, + [SMALL_STATE(2216)] = 71194, + [SMALL_STATE(2217)] = 71201, + [SMALL_STATE(2218)] = 71208, + [SMALL_STATE(2219)] = 71215, + [SMALL_STATE(2220)] = 71222, + [SMALL_STATE(2221)] = 71229, + [SMALL_STATE(2222)] = 71236, + [SMALL_STATE(2223)] = 71243, + [SMALL_STATE(2224)] = 71250, + [SMALL_STATE(2225)] = 71257, + [SMALL_STATE(2226)] = 71264, + [SMALL_STATE(2227)] = 71271, + [SMALL_STATE(2228)] = 71278, + [SMALL_STATE(2229)] = 71285, + [SMALL_STATE(2230)] = 71292, + [SMALL_STATE(2231)] = 71299, + [SMALL_STATE(2232)] = 71306, + [SMALL_STATE(2233)] = 71313, + [SMALL_STATE(2234)] = 71320, + [SMALL_STATE(2235)] = 71327, + [SMALL_STATE(2236)] = 71334, + [SMALL_STATE(2237)] = 71341, + [SMALL_STATE(2238)] = 71348, + [SMALL_STATE(2239)] = 71355, + [SMALL_STATE(2240)] = 71362, + [SMALL_STATE(2241)] = 71369, + [SMALL_STATE(2242)] = 71376, + [SMALL_STATE(2243)] = 71383, + [SMALL_STATE(2244)] = 71390, + [SMALL_STATE(2245)] = 71397, + [SMALL_STATE(2246)] = 71404, + [SMALL_STATE(2247)] = 71411, + [SMALL_STATE(2248)] = 71418, + [SMALL_STATE(2249)] = 71425, + [SMALL_STATE(2250)] = 71432, + [SMALL_STATE(2251)] = 71439, + [SMALL_STATE(2252)] = 71446, + [SMALL_STATE(2253)] = 71453, + [SMALL_STATE(2254)] = 71460, + [SMALL_STATE(2255)] = 71467, + [SMALL_STATE(2256)] = 71474, + [SMALL_STATE(2257)] = 71481, + [SMALL_STATE(2258)] = 71488, + [SMALL_STATE(2259)] = 71495, + [SMALL_STATE(2260)] = 71502, + [SMALL_STATE(2261)] = 71509, + [SMALL_STATE(2262)] = 71516, + [SMALL_STATE(2263)] = 71523, + [SMALL_STATE(2264)] = 71530, + [SMALL_STATE(2265)] = 71537, + [SMALL_STATE(2266)] = 71544, + [SMALL_STATE(2267)] = 71551, + [SMALL_STATE(2268)] = 71558, + [SMALL_STATE(2269)] = 71565, + [SMALL_STATE(2270)] = 71572, + [SMALL_STATE(2271)] = 71579, + [SMALL_STATE(2272)] = 71586, + [SMALL_STATE(2273)] = 71593, + [SMALL_STATE(2274)] = 71600, + [SMALL_STATE(2275)] = 71607, + [SMALL_STATE(2276)] = 71614, + [SMALL_STATE(2277)] = 71621, + [SMALL_STATE(2278)] = 71628, + [SMALL_STATE(2279)] = 71635, + [SMALL_STATE(2280)] = 71642, + [SMALL_STATE(2281)] = 71649, + [SMALL_STATE(2282)] = 71656, + [SMALL_STATE(2283)] = 71663, + [SMALL_STATE(2284)] = 71670, + [SMALL_STATE(2285)] = 71677, + [SMALL_STATE(2286)] = 71684, + [SMALL_STATE(2287)] = 71691, + [SMALL_STATE(2288)] = 71698, + [SMALL_STATE(2289)] = 71705, + [SMALL_STATE(2290)] = 71712, + [SMALL_STATE(2291)] = 71719, + [SMALL_STATE(2292)] = 71726, + [SMALL_STATE(2293)] = 71733, + [SMALL_STATE(2294)] = 71740, + [SMALL_STATE(2295)] = 71747, + [SMALL_STATE(2296)] = 71754, + [SMALL_STATE(2297)] = 71761, + [SMALL_STATE(2298)] = 71768, + [SMALL_STATE(2299)] = 71775, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -132493,2448 +136057,2501 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 41), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(510), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1566), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2080), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1373), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2081), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1894), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(497), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(747), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(747), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(749), - [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(94), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1149), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1207), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1075), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2204), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1871), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2199), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1173), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(42), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1086), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1018), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(995), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1091), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1802), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1600), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1652), - [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1829), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1918), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(765), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2004), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1848), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(360), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2211), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(572), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2044), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2043), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2089), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1912), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2034), - [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(748), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(754), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2154), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2153), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2145), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1614), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(814), - [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1746), - [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1675), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(814), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(830), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 41), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(511), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1562), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2134), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1335), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2109), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1899), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(172), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1164), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1243), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1067), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(51), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1916), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1841), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(758), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1948), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1847), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(359), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2216), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(567), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2003), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2002), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2116), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1872), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1991), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(515), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1561), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2152), - [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1342), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2135), - [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1883), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(269), - [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1158), - [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1228), - [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1063), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(28), - [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1862), - [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1907), - [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(725), - [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1961), - [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1831), - [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(358), - [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2219), - [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(571), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1946), - [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1943), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2140), - [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1836), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1936), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(513), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1558), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1997), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1394), - [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1998), - [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1886), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(236), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1156), - [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1234), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1035), - [711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(29), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1891), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1878), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(675), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2104), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1896), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(364), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2164), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(579), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2103), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2101), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2006), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1911), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2037), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, .production_id = 17), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, .production_id = 40), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, .production_id = 40), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 17), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(534), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1594), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2010), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1420), + [267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2155), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1975), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(521), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(741), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(741), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(776), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(107), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1180), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1302), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1091), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2278), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1918), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2273), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1210), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(44), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1118), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1047), + [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1007), + [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1120), + [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1803), + [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1650), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1701), + [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1986), + [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1950), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(710), + [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2077), + [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1983), + [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(400), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2285), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(594), + [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2144), + [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2161), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2163), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1944), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2259), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(739), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(737), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2228), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2227), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2219), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1660), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(843), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1804), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1738), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(843), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(835), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(532), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1590), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2208), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1412), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2183), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1958), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(207), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1179), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1286), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1087), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(32), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1952), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1940), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(733), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2143), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1949), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(381), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2290), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(605), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2089), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2091), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2190), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1938), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2201), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(531), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1589), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2071), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1400), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2072), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1973), + [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(253), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1183), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1293), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1069), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(38), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1978), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1985), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(665), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2090), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1981), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(407), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2238), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(597), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2086), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2085), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2080), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1968), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2112), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(538), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1585), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2226), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1399), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2209), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2003), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(256), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1194), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1277), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1086), + [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(46), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1941), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1931), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(645), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2028), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1939), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(405), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2293), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(598), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2141), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2129), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2214), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(1930), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2), SHIFT_REPEAT(2095), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1), [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(517), - [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1553), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2224), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1337), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2218), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1919), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(497), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(747), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(749), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1154), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1233), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1079), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2204), - [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1871), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2199), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1173), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(40), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1086), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1018), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(995), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1091), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1802), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1600), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1652), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1827), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1888), - [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(656), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2169), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1901), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(393), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2165), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(583), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2162), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2161), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2160), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(748), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(754), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2154), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2153), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2145), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1614), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1746), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1675), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1303), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(830), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(507), - [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(497), - [918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(747), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(747), - [924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(749), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(94), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1149), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1207), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1018), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2204), - [942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1871), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2199), - [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(42), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1086), - [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(995), - [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1091), - [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1802), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1600), - [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1652), - [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1829), - [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), - [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1848), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(360), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2211), - [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(572), - [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2044), - [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2043), - [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2089), - [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1912), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2034), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(748), - [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(754), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2154), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2153), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2145), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1614), - [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(814), - [1023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1746), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1675), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(814), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(830), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(509), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(172), - [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1164), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1243), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1916), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1841), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1847), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(359), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2216), - [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(567), - [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2003), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2002), - [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2116), - [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1872), - [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1991), - [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(514), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(269), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1158), - [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1228), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(28), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1862), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1907), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1831), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(358), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2219), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(571), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1946), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1943), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2140), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1836), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1936), - [1159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), - [1161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(508), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(247), - [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1154), - [1170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1233), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(40), - [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1827), - [1179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1888), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1901), - [1185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(393), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2165), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(583), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2162), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2161), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2160), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1892), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2095), - [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), - [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), - [1213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(506), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(236), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1156), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1234), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(29), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1891), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1878), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1896), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(364), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2164), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(579), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2103), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2101), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2006), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1911), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2037), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(512), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1879), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1869), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2187), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1882), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 26), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 83), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 79), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 28), - [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), - [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(541), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1603), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2298), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1377), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2292), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1913), + [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(521), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(741), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(741), + [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(776), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1182), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1273), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1072), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2278), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1918), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2273), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1210), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(51), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1118), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1047), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1007), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1120), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1803), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1650), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1701), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1921), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1923), + [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(757), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2243), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1924), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(409), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2239), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(602), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2236), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2235), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2234), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(739), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(737), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2228), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2227), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(2219), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1660), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1342), + [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1804), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1738), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(1342), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(835), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(539), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(521), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(741), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(741), + [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(776), + [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(107), + [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1180), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1302), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1047), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2278), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1918), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2273), + [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(44), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1118), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1007), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1120), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1803), + [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1650), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1701), + [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1986), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1950), + [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1983), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(400), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2285), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(594), + [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2144), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2161), + [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2163), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1944), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2259), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(739), + [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(737), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2228), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2227), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2219), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1660), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(843), + [1033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1804), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1738), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(843), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(835), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(535), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(207), + [1053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1179), + [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1286), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(32), + [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1952), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1940), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1949), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(381), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2290), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(605), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2089), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2091), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2190), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1938), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2201), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(533), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(253), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1183), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1293), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(38), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1978), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1985), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1981), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(407), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2238), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(597), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2086), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2085), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2080), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1968), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2112), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(540), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(342), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1182), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1273), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(51), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1921), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1923), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1924), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(409), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2239), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(602), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2236), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2235), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2234), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1976), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2107), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(536), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(256), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1194), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1277), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(46), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1941), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1931), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1939), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(405), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2293), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(598), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2141), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2129), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2214), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1930), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2095), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, .production_id = 9), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, .production_id = 9), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(537), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1967), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1961), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2261), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1922), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 27), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 27), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 62), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 62), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, .production_id = 84), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, .production_id = 84), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 80), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 80), + [1318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 97), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 97), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), + [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 47), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, .production_id = 63), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, .production_id = 63), [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 55), [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 55), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 30), - [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 32), - [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, .production_id = 95), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), - [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 27), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 75), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, .production_id = 48), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 27), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, .production_id = 8), - [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 48), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 41), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 39), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 42), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 69), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 71), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 41), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 66), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 70), - [1456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 22), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 65), - [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 90), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 92), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 64), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 40), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 37), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(867), - [1537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(497), - [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(747), - [1543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(747), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(749), - [1549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(94), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1830), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(42), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1829), - [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1918), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(765), - [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2004), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1848), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(360), - [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2211), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(572), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2044), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2043), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2089), - [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1912), - [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2034), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(748), - [1600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(754), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2154), - [1606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2153), - [1609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2145), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1614), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(814), - [1618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1746), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1675), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(814), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(830), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(874), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(172), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1916), - [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1841), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(758), - [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1948), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1847), - [1664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(359), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2216), - [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(567), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2003), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2002), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2116), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1872), - [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1991), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(875), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(236), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(29), - [1699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1891), - [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1878), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(675), - [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2104), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1896), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(364), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2164), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(579), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2103), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2101), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2006), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1911), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2037), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(873), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(40), - [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1879), - [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1888), - [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(761), - [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2045), - [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1869), - [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(393), - [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2187), - [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(583), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2162), - [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2161), - [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2160), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1882), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(870), - [1815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(269), - [1818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(28), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1862), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1907), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(725), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1831), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(358), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2219), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(571), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1946), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1943), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1836), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1936), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(871), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(247), - [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1827), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(656), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2169), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1901), - [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2165), - [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1892), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2095), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), - [1955] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1223), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 41), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), - [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 41), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1110), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2156), - [2139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1376), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2046), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1858), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(995), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1018), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2204), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1913), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2199), - [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1086), - [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1091), - [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1802), - [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1600), - [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1652), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2157), - [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1334), - [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2100), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1846), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 41), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2158), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1343), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2126), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1835), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2108), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1359), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2032), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1839), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(773), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1675), - [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 112), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 103), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 104), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 118), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 122), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 113), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 85), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 117), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), - [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 38), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), - [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), - [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 46), - [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 67), - [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 101), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1110), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(995), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1018), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2204), - [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1913), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2199), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), - [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1086), - [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1091), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1802), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1600), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1652), - [2581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 46), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), - [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 29), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(846), - [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1673), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), - [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(872), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(995), - [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1018), - [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2204), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1913), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2199), - [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 29), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 68), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 91), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 43), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 43), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 32), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 92), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 71), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 41), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 70), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 32), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 42), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 41), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 23), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 78), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [2931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1049), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), - [2938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), - [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 = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 23), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), - [2988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), - [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1104), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), - [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), - [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 23), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 23), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 78), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, .production_id = 8), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [1354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, .production_id = 47), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, .production_id = 35), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, .production_id = 35), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .production_id = 31), + [1366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, .production_id = 29), + [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, .production_id = 29), + [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 28), + [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 28), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 28), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, .production_id = 91), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, .production_id = 91), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2), + [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, .production_id = 75), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, .production_id = 75), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, .production_id = 38), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 1, .production_id = 2), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 66), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 66), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 67), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 67), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, .production_id = 70), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, .production_id = 70), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 17), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, .production_id = 41), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 40), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 94), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 94), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 92), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 5, .production_id = 92), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 4, .production_id = 65), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, .production_id = 39), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 71), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 71), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, .production_id = 4), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, .production_id = 23), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, .production_id = 18), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_definition, 3, .production_id = 36), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, .production_id = 17), + [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, .production_id = 17), + [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 33), + [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 40), + [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 72), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, .production_id = 72), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, .production_id = 16), + [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 57), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(891), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(521), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(741), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(741), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(776), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(207), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1987), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(32), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1952), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1940), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(733), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2143), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1949), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(381), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2290), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(605), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2089), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2091), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2190), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1938), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2201), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(739), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(737), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2228), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2227), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2219), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1660), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(843), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1804), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1738), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(843), + [1653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(835), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(898), + [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(253), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(38), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1978), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1985), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(665), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2090), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1981), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(407), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2238), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(597), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2086), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2085), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2080), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1968), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2112), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(899), + [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(342), + [1738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(51), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1921), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1923), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(757), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2243), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1924), + [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(409), + [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2239), + [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(602), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2236), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2235), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2234), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1976), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2107), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(900), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(107), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(44), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1986), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1950), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(710), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2077), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1983), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(400), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2285), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(594), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2144), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2161), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2163), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1944), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2259), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(894), + [1833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(256), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(46), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1941), + [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1931), + [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(645), + [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2028), + [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1939), + [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(405), + [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2293), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(598), + [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2141), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2129), + [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2214), + [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1930), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2095), + [1878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(892), + [1881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1967), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(703), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2140), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1961), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(2261), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT(1922), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 1, .production_id = 2), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1), REDUCE(aux_sym_attributed_declarator_repeat1, 1), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_not_binary, 1), + [1967] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), SHIFT(1245), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_not_binary, 1), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(sym__expression_not_binary, 1), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1132), + [2130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2230), + [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1416), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2120), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1998), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1007), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1047), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2278), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2273), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1118), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1120), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1803), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1650), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1701), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 40), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, .production_id = 17), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .production_id = 40), + [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 17), + [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [2204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2231), + [2207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1415), + [2210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2174), + [2213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1994), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 83), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 56), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 40), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 102), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, .production_id = 56), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2182), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1387), + [2304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2271), + [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1997), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2232), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1374), + [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2200), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(1991), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(792), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1738), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 106), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 106), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 86), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, .production_id = 87), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 115), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 115), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 114), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, .production_id = 114), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 124), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, .production_id = 124), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 105), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, .production_id = 105), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 119), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 119), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, .production_id = 58), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 120), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, .production_id = 120), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 68), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 68), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, .production_id = 45), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 12), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 13), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, .production_id = 57), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 37), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, .production_id = 103), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, .production_id = 103), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8), + [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 5), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1132), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1007), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1047), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2278), + [2578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1953), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(2273), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1118), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1120), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1803), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1650), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__old_style_function_definition_repeat1, 2), SHIFT_REPEAT(1701), + [2601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 5), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, .production_id = 9), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .production_id = 45), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 30), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, .production_id = 5), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(874), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1749), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(895), + [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1), + [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), + [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1007), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1047), + [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2278), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(1953), + [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(2273), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 93), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, .production_id = 69), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, .production_id = 69), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 30), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 17), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 78), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 78), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 71), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 71), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .production_id = 40), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 72), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .production_id = 72), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 94), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, .production_id = 94), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .production_id = 41), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .production_id = 40), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 78), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 78), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 42), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .production_id = 17), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 42), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 25), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 3), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 3), REDUCE(sym__old_style_parameter_list, 3), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 7), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 7), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, .dynamic_precedence = 1), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 2), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2), REDUCE(sym__old_style_parameter_list, 2), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 53), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 25), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 24), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 3), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, .production_id = 14), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, .production_id = 8), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), + [2937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1060), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, .production_id = 3), + [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 52), + [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 54), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 52), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 26), + [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 24), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 26), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 79), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 79), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, .production_id = 8), + [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, .production_id = 14), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [2984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 26), + [2986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [2992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [2994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), + [2996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 5, .production_id = 52), + [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4), + [3022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), + [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1115), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_specifier, 1), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_specifier, 1), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 8), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 3, .production_id = 7), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), - [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 54), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1223), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 50), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 24), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 8), + [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1245), + [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), + [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 24), + [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), + [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2), [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 25), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 53), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, .production_id = 77), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 23), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 4, .production_id = 25), - [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1737), - [3133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1163), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), - [3159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2204), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3169] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1223), - [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [3190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), - [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2204), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2204), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), - [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2204), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 23), SHIFT(2204), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 45), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 97), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 108), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 98), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 109), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 107), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 80), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(995), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), - [3503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1316), - [3506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1313), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 43), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 29), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), - [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), - [3725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 3, .production_id = 7), + [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 5, .production_id = 52), + [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 6, .production_id = 79), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 6, .production_id = 79), + [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 7), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 26), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 8), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 4, .production_id = 24), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_type_specifier, 4, .dynamic_precedence = -1, .production_id = 59), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1800), + [3155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1200), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3161] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1245), + [3165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1), REDUCE(sym__type_specifier, 1, .production_id = 1), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2278), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type_specifier, 1, .production_id = 1), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), + [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 4, .production_id = 50), SHIFT(2278), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, .production_id = 76), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_parameter_list, 4), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 4), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_function_declarator, 2, .production_id = 34), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__old_style_parameter_list, 3), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), + [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 5, .production_id = 77), SHIFT(2278), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 2, .production_id = 8), SHIFT(2278), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_enum_specifier, 3, .production_id = 24), SHIFT(2278), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, .production_id = 13), + [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, .production_id = 44), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 82), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 101), + [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 100), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, .production_id = 99), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 110), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, .production_id = 81), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, .production_id = 61), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, .production_id = 111), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, .production_id = 109), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 3), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2), SHIFT_REPEAT(1007), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), + [3531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1356), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2), SHIFT_REPEAT(1350), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 14), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 14), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, .production_id = 3), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 3), + [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 3), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, .production_id = 42), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, .production_id = 3), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), + [3693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 30), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, .production_id = 14), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, .production_id = 14), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 5), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1445), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1439), - [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1441), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1438), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1435), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1049), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1049), - [3824] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1049), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1444), - [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1049), - [3836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1049), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1443), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2082), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1871), - [3886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), - [3896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2204), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 11), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 31), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 31), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), - [3975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1756), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1340), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2124), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1919), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 41), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [4005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 106), - [4007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 11), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 87), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 11), - [4027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), - [4031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 105), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 11), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 31), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), - [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 41), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 11), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 11), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 106), - [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 41), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 41), - [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 72), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), - [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), - [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), - [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1756), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1573), - [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), - [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 11), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 106), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(764), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2120), - [4197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 11), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 70), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), - [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 71), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 41), - [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 92), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 42), - [4255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 41), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), - [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1664), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 44), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 31), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 47), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1618), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), - [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), - [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 11), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), - [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 106), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 93), - [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 11), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1571), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 110), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), - [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [4330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1665), - [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1665), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1666), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), SHIFT_REPEAT(1633), - [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 120), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 36), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 11), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), SHIFT_REPEAT(1579), - [4387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 110), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1460), - [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 63), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 84), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 102), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 111), - [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 115), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), - [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 36), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 96), - [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1524), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 63), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 102), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 84), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 36), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 116), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 119), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1254), - [4578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 114), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 111), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(560), - [4611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 121), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 114), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1377), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1838), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), SHIFT_REPEAT(2213), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 123), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(841), - [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 124), - [4643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 124), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 94), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1859), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1737), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 84), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 31), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 3, .production_id = 62), - [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1512), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 2, .production_id = 63), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(534), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 2, .production_id = 35), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 84), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), - [4771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [4797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_declarator_repeat1, 3, .production_id = 88), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 116), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), - [4858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), - [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 42), - [5208] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 70), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 71), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 42), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 92), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 70), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 41), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 42), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 42), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 71), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 42), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 92), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 70), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 70), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 71), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 71), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 70), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 71), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 92), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 92), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 92), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1463), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1473), + [3801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1), SHIFT(1466), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .dynamic_precedence = -1, .production_id = 15), SHIFT(1060), + [3813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1, .production_id = 1), SHIFT(1469), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 15), SHIFT(1461), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 14), SHIFT(1475), + [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .production_id = 3), SHIFT(1060), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, .dynamic_precedence = -1, .production_id = 10), SHIFT(1060), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3836] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2), REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT(1060), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, .production_id = 14), SHIFT(1060), + [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_specifier, 1), SHIFT(1467), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_enum_specifier, 2, .production_id = 7), SHIFT(2051), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 2, .production_id = 34), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, .production_id = 34), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 3, .production_id = 34), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_declarator, 3, .production_id = 34), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1532), + [3900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2278), + [3905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 4, .production_id = 34), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), SHIFT_REPEAT(1918), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, .dynamic_precedence = 1, .production_id = 107), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, .dynamic_precedence = 1, .production_id = 88), + [3938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declarator_repeat1, 1), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2), + [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 1, .production_id = 22), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), REDUCE(aux_sym_function_declarator_repeat1, 1), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 1), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [3971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, .production_id = 40), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, .dynamic_precedence = 1, .production_id = 107), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 32), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, .dynamic_precedence = 1, .production_id = 88), + [4003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, .production_id = 17), + [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1808), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1384), + [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(2215), + [4014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1913), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2), + [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, .production_id = 22), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, .dynamic_precedence = 1, .production_id = 88), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, .dynamic_precedence = -10), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [4041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, .production_id = 22), + [4043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 22), + [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1), + [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, .production_id = 108), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, .production_id = 108), + [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, .production_id = 89), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, .production_id = 89), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, .dynamic_precedence = 1, .production_id = 107), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 32), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, .production_id = 17), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 40), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), SHIFT_REPEAT(1808), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1625), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, .dynamic_precedence = -10), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, .production_id = 34), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, .production_id = 22), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, .production_id = 108), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, .production_id = 108), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, .production_id = 40), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 35), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 40), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, .production_id = 6), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, .production_id = 51), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 17), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 17), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 89), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, .production_id = 22), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, .production_id = 108), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, .production_id = 108), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 22), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, .production_id = 89), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(675), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(2185), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, .dynamic_precedence = -10), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), + [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(2278), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 21), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, .production_id = 22), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_declarator, 4, .production_id = 34), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, .production_id = 34), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1), + [4242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, .production_id = 1), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, .production_id = 40), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 94), + [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, .production_id = 94), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 43), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, .production_id = 17), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, .dynamic_precedence = 1, .production_id = 32), + [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), + [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 41), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), + [4304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2), SHIFT_REPEAT(1713), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, .production_id = 46), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2), SHIFT_REPEAT(1659), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 40), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, .production_id = 74), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, .production_id = 17), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 71), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, .production_id = 71), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 72), + [4330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, .production_id = 72), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, .production_id = 19), + [4336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, .dynamic_precedence = 1, .production_id = 60), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 32), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 22), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, .production_id = 108), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 89), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, .production_id = 95), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1), + [4360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, .production_id = 20), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3), + [4364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 73), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 6), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3), + [4372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, .production_id = 22), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, .production_id = 34), + [4376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, .production_id = 48), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1616), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 112), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1718), + [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(1718), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), + [4407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2), SHIFT_REPEAT(1719), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, .production_id = 85), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1496), + [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, .production_id = 64), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, .production_id = 104), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 49), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 112), SHIFT_REPEAT(1635), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 112), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, .production_id = 117), + [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1557), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 2, .production_id = 64), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 3, .production_id = 98), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 22), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_declarator, 2, .production_id = 48), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, .production_id = 85), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, .production_id = 113), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 122), SHIFT_REPEAT(1658), + [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 122), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, .production_id = 104), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_declarator, 1, .production_id = 11), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, .production_id = 113), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, .production_id = 96), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(856), + [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(1946), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2), SHIFT_REPEAT(1425), + [4635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(584), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 64), SHIFT_REPEAT(1525), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, .production_id = 64), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), SHIFT_REPEAT(1800), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [4698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, .production_id = 121), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(559), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, .production_id = 118), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), SHIFT_REPEAT(1982), + [4730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__field_declaration_declarator_repeat1, 3, .production_id = 32), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), SHIFT_REPEAT(1246), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, .production_id = 85), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, .production_id = 126), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, .production_id = 85), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, .production_id = 116), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, .production_id = 126), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 125), SHIFT_REPEAT(2158), + [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 125), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, .production_id = 116), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, .production_id = 123), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, .production_id = 90), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, .production_id = 49), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, .production_id = 118), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), REDUCE(aux_sym__old_style_parameter_list_repeat1, 2), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 6), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, .production_id = 72), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, .production_id = 94), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, .production_id = 72), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .production_id = 71), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, .production_id = 72), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, .production_id = 72), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, .production_id = 41), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, .production_id = 41), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, .production_id = 41), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 40), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, .production_id = 71), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 94), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, .production_id = 94), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, .production_id = 41), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, .production_id = 94), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, .production_id = 71), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5321] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, .production_id = 94), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, .production_id = 71), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [5447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 17), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 71), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, .production_id = 72), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, .production_id = 41), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), }; #ifdef __cplusplus diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index f8e9f2f..1d182ff 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -629,6 +629,38 @@ int static inline do_stuff(int arg1) { (return_statement (number_literal))))) +================================================================================ +Function definitions with macro attributes +================================================================================ + +void * do_stuff(int arg1) + SOME_ATTR + SOME_ATTR(1) +{ + return 5; +} + +-------------------------------------------------------------------------------- + +(translation_unit + (function_definition + type: (primitive_type) + declarator: (pointer_declarator + declarator: (function_declarator + declarator: (identifier) + parameters: (parameter_list + (parameter_declaration + type: (primitive_type) + declarator: (identifier))) + (identifier) + (call_expression + function: (identifier) + arguments: (argument_list + (number_literal))))) + body: (compound_statement + (return_statement + (number_literal))))) + ================================================================================ Linkage specifications ================================================================================